0byt3m1n1
Path:
/
data
/
26
/
2
/
7
/
103
/
2496918
/
meta
/
2734652
/
mysql.backup
/
[
Home
]
File: bdgruposuadi.mysqlcluster23.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster23 Database: bdgruposuadi -- ------------------------------------------------------ -- Server version 5.6.51-91.0-56-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `grpsd_actionscheduler_actions` -- DROP TABLE IF EXISTS `grpsd_actionscheduler_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_actionscheduler_actions` ( `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_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_ci DEFAULT NULL, `schedule` longtext COLLATE utf8mb4_unicode_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_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_actionscheduler_actions` -- LOCK TABLES `grpsd_actionscheduler_actions` WRITE; /*!40000 ALTER TABLE `grpsd_actionscheduler_actions` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_actionscheduler_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_actionscheduler_claims` -- DROP TABLE IF EXISTS `grpsd_actionscheduler_claims`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_actionscheduler_claims` -- LOCK TABLES `grpsd_actionscheduler_claims` WRITE; /*!40000 ALTER TABLE `grpsd_actionscheduler_claims` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_actionscheduler_claims` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_actionscheduler_groups` -- DROP TABLE IF EXISTS `grpsd_actionscheduler_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_actionscheduler_groups` ( `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`group_id`), KEY `slug` (`slug`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_actionscheduler_groups` -- LOCK TABLES `grpsd_actionscheduler_groups` WRITE; /*!40000 ALTER TABLE `grpsd_actionscheduler_groups` DISABLE KEYS */; INSERT INTO `grpsd_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wc-admin-data'); /*!40000 ALTER TABLE `grpsd_actionscheduler_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_actionscheduler_logs` -- DROP TABLE IF EXISTS `grpsd_actionscheduler_logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_actionscheduler_logs` ( `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `action_id` bigint(20) unsigned NOT NULL, `message` text COLLATE utf8mb4_unicode_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_actionscheduler_logs` -- LOCK TABLES `grpsd_actionscheduler_logs` WRITE; /*!40000 ALTER TABLE `grpsd_actionscheduler_logs` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_actionscheduler_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_commentmeta` -- DROP TABLE IF EXISTS `grpsd_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_commentmeta` -- LOCK TABLES `grpsd_commentmeta` WRITE; /*!40000 ALTER TABLE `grpsd_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_comments` -- DROP TABLE IF EXISTS `grpsd_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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', `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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_comments` -- LOCK TABLES `grpsd_comments` WRITE; /*!40000 ALTER TABLE `grpsd_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_links` -- DROP TABLE IF EXISTS `grpsd_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_links` -- LOCK TABLES `grpsd_links` WRITE; /*!40000 ALTER TABLE `grpsd_links` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_options` -- DROP TABLE IF EXISTS `grpsd_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB AUTO_INCREMENT=4904 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_options` -- LOCK TABLES `grpsd_options` WRITE; /*!40000 ALTER TABLE `grpsd_options` DISABLE KEYS */; INSERT INTO `grpsd_options` VALUES (1,'siteurl','http://gruposuadi.com/demo','yes'),(2,'home','http://gruposuadi.com/demo','yes'),(3,'blogname','Grupo Suadi','yes'),(4,'blogdescription','Otro sitio realizado con WordPress','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','hferreto@zews.co.cr','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','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','j \\d\\e F \\d\\e Y','yes'),(24,'time_format','H:i','yes'),(25,'links_updated_date_format','j \\d\\e F \\d\\e Y H:i','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%category%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:10:{i:0;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:1;s:69:\"construction_theme_functionality/construction_theme_functionality.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:31:\"creame-whatsapp-me/joinchat.php\";i:4;s:33:\"duplicate-post/duplicate-post.php\";i:5;s:27:\"js_composer/js_composer.php\";i:6;s:27:\"maintenance/maintenance.php\";i:7;s:23:\"revslider/revslider.php\";i:8;s:27:\"woocommerce/woocommerce.php\";i:9;s:24:\"wordpress-seo/wp-seo.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:84:\"/home/zewsdemo/public_html/gruposuadi/wp-content/themes/construction-child/style.css\";i:2;s:78:\"/home/zewsdemo/public_html/gruposuadi/wp-content/themes/construction/style.css\";i:3;s:88:\"/home/zewsdemo/public_html/gruposuadi/wp-content/themes/construction-child/functions.php\";i:4;s:79:\"/home/zewsdemo/public_html/gruposuadi/wp-content/themes/construction/header.php\";i:5;s:82:\"/home/zewsdemo/public_html/gruposuadi/wp-content/themes/construction/functions.php\";}','no'),(40,'template','construction','yes'),(41,'stylesheet','construction-child','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','48748','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','112','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1616870951','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'initial_db_version','48748','yes'),(96,'grpsd_user_roles','a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:117:{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:18:\"bcn_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:10:\"copy_posts\";b:1;s:15:\"wpseo_bulk_edit\";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;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:39:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:10:\"copy_posts\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:37:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:10:\"copy_posts\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(97,'fresh_site','0','yes'),(98,'WPLANG','es_ES','yes'),(99,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:18:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"blog-sidebar\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:16:\"blogpage-sidebar\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:15:\"archive-sidebar\";a:0:{}s:19:\"woo-archive-sidebar\";a:0:{}s:12:\"footer-col-1\";a:1:{i:0;s:13:\"custom_html-2\";}s:12:\"footer-col-2\";a:1:{i:0;s:10:\"nav_menu-2\";}s:12:\"footer-col-3\";a:1:{i:0;s:13:\"custom_html-3\";}s:12:\"footer-col-4\";a:0:{}s:12:\"footer-col-5\";a:0:{}s:12:\"footer-col-6\";a:0:{}s:15:\"topfooter-col-1\";a:0:{}s:15:\"topfooter-col-2\";a:0:{}s:15:\"topfooter-col-3\";a:0:{}s:15:\"topfooter-col-4\";a:0:{}s:15:\"topfooter-col-5\";a:0:{}s:15:\"topfooter-col-6\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:16:{i:1605728952;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:1605729316;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:1605729331;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:1605736132;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1605736508;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:1605744000;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:1605747308;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:1605768552;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:1605811751;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:1605811765;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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:1605812116;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:1605812118;a:2:{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;}}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:1605822532;a:1:{s:16:\"wpseo_ryte_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1606243751;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;}}}i:1606503368;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;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_nav_menu','a:2:{i:2;a:2:{s:5:\"title\";s:5:\"Links\";s:8:\"nav_menu\";i:19;}s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_custom_html','a:3:{i:2;a:2:{s:5:\"title\";s:11:\"Grupo Suadi\";s:7:\"content\";s:422:\"<p>Empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.</p>\r\n\r\n<p><i class=\"fa fa-phone\"></i> +507 6612-2640</p>\r\n<p><i class=\"fa fa-envelope\"></i> info@gruposuadi.com</p>\r\n<p><i class=\"fa fa-globe\"></i> Vía Interamericana, San Pablo Viejo, David, Chiriquí, Panamá.</p>\r\n\";}i:3;a:2:{s:5:\"title\";s:27:\"Síguenos en redes sociales\";s:7:\"content\";s:385:\"<iframe src=\"https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fgruposuadi&tabs&width=340&height=180&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId=492463504675399\" width=\"340\" height=\"180\" style=\"border:none;overflow:hidden\" scrolling=\"no\" frameborder=\"0\" allowtransparency=\"true\" allow=\"encrypted-media\"></iframe>\";}s:12:\"_multiwidget\";i:1;}','yes'),(116,'recovery_keys','a:0:{}','yes'),(123,'theme_mods_twentytwenty','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1601319268;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(138,'can_compress_scripts','0','no'),(149,'finished_updating_comment_type','1','yes'),(150,'current_theme','Construction Child','yes'),(151,'theme_mods_construction','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1601319768;s:4:\"data\";a:17:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"blog-sidebar\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:16:\"blogpage-sidebar\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:15:\"archive-sidebar\";a:0:{}s:19:\"woo-archive-sidebar\";a:0:{}s:12:\"footer-col-1\";a:0:{}s:12:\"footer-col-2\";a:0:{}s:12:\"footer-col-3\";a:0:{}s:12:\"footer-col-4\";a:0:{}s:12:\"footer-col-5\";a:0:{}s:12:\"footer-col-6\";a:0:{}s:15:\"topfooter-col-1\";a:0:{}s:15:\"topfooter-col-2\";a:0:{}s:15:\"topfooter-col-3\";a:0:{}s:15:\"topfooter-col-4\";a:0:{}s:15:\"topfooter-col-5\";a:0:{}s:15:\"topfooter-col-6\";a:0:{}}}}','yes'),(152,'theme_switched','','yes'),(157,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.2.2\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1601319305;s:7:\"version\";s:5:\"5.2.2\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(158,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-b.tools\";i:3;s:22:\"themepunch-ext-b.tools\";i:4;s:16:\"themepunch.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-a.tools\";}','yes'),(159,'revslider_server_refresh','1605205217','yes'),(160,'revslider-update-check-short','1605631734','yes'),(161,'revslider-connection','1','yes'),(162,'revslider-update-hash','8ecf71ebdc237abb302371142408c976','yes'),(163,'revslider-latest-version','6.2.23','yes'),(164,'revslider-stable-version','4.2','yes'),(165,'revslider-notices','a:2:{i:0;O:8:\"stdClass\":8:{s:7:\"version\";s:6:\"6.2.17\";s:4:\"text\";s:283:\"<div style=\"display: block; background-color: #150A33;\"><a href=\"//www.themepunch.com/faq/wordpress-5-5-important-update-information/\" target=\"_blank\"><img alt=\"Important Notice\" src=\"//updates.themepunch-ext-a.tools/banners/important_banner.jpg\" width=\"1400\" height=\"250\"></a></div>\";s:4:\"code\";s:10:\"TPRS630-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":8:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:304:\"<div style=\"display: block; background-color: #F3F2F6;\"><a href=\"//www.sliderrevolution.com/get-on-board-the-slider-revolution-dashboard/?ref=iwantaccess\" target=\"_blank\"><img alt=\"Important Notice\" src=\"//updates.themepunch-ext-a.tools/banners/onboarding_banner.jpg\" width=\"1400\" height=\"250\"></a></div>\";s:4:\"code\";s:10:\"TPRS999-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"additional\";a:0:{}}}','yes'),(166,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(167,'rs-addons-counter','28','yes'),(168,'revslider-addons','O:8:\"stdClass\":28:{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:\"2.2.0\";s:10:\"background\";s:81:\"//updates.themepunch-ext-a.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-a.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:\"2.0.1\";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-a.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:\"2.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:76:\"//updates.themepunch-ext-a.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:\"2.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:76:\"//updates.themepunch-ext-a.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:\"2.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-a.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:\"2.0.5\";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-a.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:\"2.1.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:84:\"//updates.themepunch-ext-a.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:\"2.0.0\";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-a.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:\"2.2.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-a.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:\"2.0.0\";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-a.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:\"2.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:70:\"//updates.themepunch-ext-a.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:\"2.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:77:\"//updates.themepunch-ext-a.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:\"2.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:76:\"//updates.themepunch-ext-a.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:\"2.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:72:\"//updates.themepunch-ext-a.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:\"2.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:77:\"//updates.themepunch-ext-a.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:\"2.0.6\";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-a.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:\"2.0.8\";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-a.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:\"2.0.1\";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-a.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:\"2.1.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:75:\"//updates.themepunch-ext-a.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:\"2.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:74:\"//updates.themepunch-ext-a.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:\"2.1.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:73:\"//updates.themepunch-ext-a.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:\"2.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:73:\"//updates.themepunch-ext-a.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:\"2.2.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:78:\"//updates.themepunch-ext-a.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:\"2.0.4\";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-a.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:\"2.1.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:76:\"//updates.themepunch-ext-a.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:\"2.1.9\";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-a.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";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:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:6:\"6.2.23\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"2.0.8\";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-a.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}}','yes'),(169,'revslider-library-check','1605631734','yes'),(170,'revslider-library-hash','9a8d15443c31c42ad2fd2f43b4e89027','yes'),(171,'rs-library','a:3:{s:4:\"hash\";s:32:\"9a8d15443c31c42ad2fd2f43b4e89027\";s:7:\"objects\";a:417:{i:0;a:14:{s:2:\"id\";s:3:\"529\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";}i:1;a:14:{s:2:\"id\";s:3:\"528\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";}i:2;a:14:{s:2:\"id\";s:3:\"527\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";}i:3;a:14:{s:2:\"id\";s:3:\"526\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";}i:4;a:14:{s:2:\"id\";s:3:\"525\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";}i:5;a:14:{s:2:\"id\";s:3:\"524\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";}i:6;a:14:{s:2:\"id\";s:3:\"523\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";}i:7;a:14:{s:2:\"id\";s:3:\"522\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";}i:8;a:14:{s:2:\"id\";s:3:\"521\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";}i:9;a:14:{s:2:\"id\";s:3:\"520\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"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:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";}i:10;a:14:{s:2:\"id\";s:3:\"519\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Walking \";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:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";}i:11;a:14:{s:2:\"id\";s:3:\"518\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Double Exposure \";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:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";}i:12;a:14:{s:2:\"id\";s:3:\"517\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Girl \";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:\"1088\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";}i:13;a:14:{s:2:\"id\";s:3:\"516\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Bengal Lights \";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:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";}i:14;a:14:{s:2:\"id\";s:3:\"515\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Swiping 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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:15;a:14:{s:2:\"id\";s:3:\"514\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Mock Up \";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:16;a:14:{s:2:\"id\";s:3:\"513\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Countdown \";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:17;a:14:{s:2:\"id\";s:3:\"512\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Wall Sketching \";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:18;a:14:{s:2:\"id\";s:3:\"511\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:23:\"Typing on the 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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:19;a:14:{s:2:\"id\";s:3:\"510\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Meeting \";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:20;a:14:{s:2:\"id\";s:3:\"509\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Swiping \";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:21;a:14:{s:2:\"id\";s:3:\"508\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Alarm \";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:\"1013\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:22;a:14:{s:2:\"id\";s:3:\"507\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Hey World \";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:23;a:14:{s:2:\"id\";s:3:\"506\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:25:\"Typing on the keyboard 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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";}i:24;a:14:{s:2:\"id\";s:3:\"505\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Valley \";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";}i:25;a:14:{s:2:\"id\";s:3:\"504\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Stars \";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";}i:26;a:14:{s:2:\"id\";s:3:\"503\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Car in the forest \";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:\"1012\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";}i:27;a:14:{s:2:\"id\";s:3:\"502\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Aerial Shot \";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";}i:28;a:14:{s:2:\"id\";s:3:\"501\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Disco Ball \";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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";}i:29;a:14:{s:2:\"id\";s:3:\"500\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Man Playing 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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";}i:30;a:14:{s:2:\"id\";s:3:\"499\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Live Music \";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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";}i:31;a:14:{s:2:\"id\";s:3:\"498\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Cheer Up \";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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";}i:32;a:14:{s:2:\"id\";s:3:\"497\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Night club \";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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";}i:33;a:14:{s:2:\"id\";s:3:\"496\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Cup Of Coffee \";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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";}i:34;a:14:{s:2:\"id\";s:3:\"495\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:4:\"Pot \";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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";}i:35;a:14:{s:2:\"id\";s:3:\"494\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Grill 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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";}i:36;a:14:{s:2:\"id\";s:3:\"493\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Rice Bowl \";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:\"1920\";s:6:\"height\";s:4:\"1010\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";}i:37;a:14:{s:2:\"id\";s:3:\"492\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Grill \";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:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";}i:38;a:14:{s:2:\"id\";s:3:\"491\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";}i:39;a:14:{s:2:\"id\";s:3:\"490\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";}i:40;a:14:{s:2:\"id\";s:3:\"489\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";}i:41;a:14:{s:2:\"id\";s:3:\"488\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";}i:42;a:14:{s:2:\"id\";s:3:\"487\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:43;a:14:{s:2:\"id\";s:3:\"486\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:44;a:14:{s:2:\"id\";s:3:\"485\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:45;a:14:{s:2:\"id\";s:3:\"484\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:46;a:14:{s:2:\"id\";s:3:\"483\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:47;a:14:{s:2:\"id\";s:3:\"482\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:48;a:14:{s:2:\"id\";s:3:\"481\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:49;a:14:{s:2:\"id\";s:3:\"480\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";}i:50;a:13:{s:2:\"id\";s:3:\"479\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:27:\"Tram beside waiting station\";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:\"1450\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";}i:51;a:13:{s:2:\"id\";s:3:\"478\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";}i:52;a:13:{s:2:\"id\";s:3:\"477\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";}i:53;a:13:{s:2:\"id\";s:3:\"476\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";}i:54;a:13:{s:2:\"id\";s:3:\"475\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";}i:55;a:13:{s:2:\"id\";s:3:\"474\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";}i:56;a:13:{s:2:\"id\";s:3:\"473\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";}i:57;a:13:{s:2:\"id\";s:3:\"472\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";}i:58;a:13:{s:2:\"id\";s:3:\"471\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:59;a:13:{s:2:\"id\";s:3:\"470\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:60;a:13:{s:2:\"id\";s:3:\"469\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:61;a:13:{s:2:\"id\";s:3:\"468\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:62;a:13:{s:2:\"id\";s:3:\"467\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:63;a:13:{s:2:\"id\";s:3:\"466\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:64;a:13:{s:2:\"id\";s:3:\"465\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:65;a:13:{s:2:\"id\";s:3:\"464\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:66;a:13:{s:2:\"id\";s:3:\"463\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:67;a:13:{s:2:\"id\";s:3:\"462\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:68;a:13:{s:2:\"id\";s:3:\"461\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:69;a:13:{s:2:\"id\";s:3:\"460\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:70;a:13:{s:2:\"id\";s:3:\"459\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:71;a:13:{s:2:\"id\";s:3:\"458\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:72;a:13:{s:2:\"id\";s:3:\"457\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:73;a:13:{s:2:\"id\";s:3:\"456\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:74;a:13:{s:2:\"id\";s:3:\"455\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:75;a:13:{s:2:\"id\";s:3:\"454\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:76;a:13:{s:2:\"id\";s:3:\"453\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:77;a:13:{s:2:\"id\";s:3:\"452\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:78;a:13:{s:2:\"id\";s:3:\"451\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:79;a:13:{s:2:\"id\";s:3:\"450\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:80;a:13:{s:2:\"id\";s:3:\"449\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:81;a:13:{s:2:\"id\";s:3:\"448\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";}i:82;a:13:{s:2:\"id\";s:3:\"447\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Friends\";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:\"1282\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:83;a:13:{s:2:\"id\";s:3:\"446\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:24:\"Sneakers on the railroad\";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:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:84;a:13:{s:2:\"id\";s:3:\"445\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Family on the ocean\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:85;a:13:{s:2:\"id\";s:3:\"444\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Sunset\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:86;a:13:{s:2:\"id\";s:3:\"443\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Books\";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:\"1275\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:87;a:13:{s:2:\"id\";s:3:\"442\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:21:\"Looking at the window\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:88;a:13:{s:2:\"id\";s:3:\"441\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";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:\"1278\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:89;a:13:{s:2:\"id\";s:3:\"440\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Lollipop\";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:\"1395\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:90;a:13:{s:2:\"id\";s:3:\"439\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:22:\"People crossing street\";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:\"1278\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:91;a:13:{s:2:\"id\";s:3:\"438\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Friends on the shore\";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:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:92;a:13:{s:2:\"id\";s:3:\"437\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Coworkers\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:93;a:13:{s:2:\"id\";s:3:\"436\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:94;a:13:{s:2:\"id\";s:3:\"435\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Successful man\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:95;a:13:{s:2:\"id\";s:3:\"434\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Beautiful sunny day\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:96;a:13:{s:2:\"id\";s:3:\"433\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:4:\"Guys\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:97;a:13:{s:2:\"id\";s:3:\"432\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Confetti Shower\";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:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:98;a:13:{s:2:\"id\";s:3:\"431\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Sun was setting down\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:99;a:13:{s:2:\"id\";s:3:\"430\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Jumps\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:100;a:13:{s:2:\"id\";s:3:\"429\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Friends by the fire\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:101;a:13:{s:2:\"id\";s:3:\"428\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Under the blanket\";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:\"1413\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:102;a:13:{s:2:\"id\";s:3:\"427\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Pretty in Pink\";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:\"1394\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:103;a:13:{s:2:\"id\";s:3:\"426\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:27:\"Discussions at a long table\";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:\"1268\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:104;a:13:{s:2:\"id\";s:3:\"425\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Lost in Lemons\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:105;a:13:{s:2:\"id\";s:3:\"424\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Team work\";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:\"1281\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:106;a:13:{s:2:\"id\";s:3:\"423\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Romantic evening\";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:\"1263\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";}i:107;a:13:{s:2:\"id\";s:3:\"422\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Crew collective\";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:\"1278\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:108;a:13:{s:2:\"id\";s:3:\"421\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:4:\"Code\";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:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:109;a:13:{s:2:\"id\";s:3:\"420\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:110;a:13:{s:2:\"id\";s:3:\"419\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"My desk\";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:\"1315\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:111;a:13:{s:2:\"id\";s:3:\"418\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Cooperation 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:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:112;a:13:{s:2:\"id\";s:3:\"417\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:29:\"MacBook on top of brown table\";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:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:113;a:13:{s:2:\"id\";s:3:\"416\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:23:\"Beautiful working place\";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:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:114;a:13:{s:2:\"id\";s:3:\"415\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"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:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:115;a:13:{s:2:\"id\";s:3:\"414\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"White 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:\"1920\";s:6:\"height\";s:4:\"1282\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:116;a:13:{s:2:\"id\";s:3:\"413\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Office working\";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:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:117;a:13:{s:2:\"id\";s:3:\"412\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";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:\"1240\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:118;a:13:{s:2:\"id\";s:3:\"411\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Working in progress\";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:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:119;a:13:{s:2:\"id\";s:3:\"410\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Cooperation\";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:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:120;a:13:{s:2:\"id\";s:3:\"409\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Working place\";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:\"1281\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:121;a:13:{s:2:\"id\";s:3:\"408\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Working desk\";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:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";}i:122;a:13:{s:2:\"id\";s:3:\"407\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"low angle of forest\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:123;a:13:{s:2:\"id\";s:3:\"406\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Lake under blue sky\";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:\"1351\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:124;a:13:{s:2:\"id\";s:3:\"405\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Blue starry night\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:125;a:13:{s:2:\"id\";s:3:\"404\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Aerial photography\";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:\"1440\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:126;a:13:{s:2:\"id\";s:3:\"403\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Red clouds\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:127;a:13:{s:2:\"id\";s:3:\"402\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Snow field\";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:\"1227\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:128;a:13:{s:2:\"id\";s:3:\"401\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"White sky\";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:\"1281\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:129;a:13:{s:2:\"id\";s:3:\"400\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Trees covered by fog\";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:\"1277\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:130;a:13:{s:2:\"id\";s:3:\"399\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:22:\"Red and white mushroom\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:131;a:13:{s:2:\"id\";s:3:\"398\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Lake near pine trees\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:132;a:13:{s:2:\"id\";s:3:\"397\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:31:\"After a long day of backpacking\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:133;a:13:{s:2:\"id\";s:3:\"396\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:28:\"Mountains during golden hour\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:134;a:13:{s:2:\"id\";s:3:\"395\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:23:\"Man looking on mountain\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:135;a:13:{s:2:\"id\";s:3:\"394\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Body of water 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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:136;a:13:{s:2:\"id\";s:3:\"393\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Brown cliff\";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:\"1440\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:137;a:13:{s:2:\"id\";s:3:\"392\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Green foggy tree\";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:\"1417\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:138;a:13:{s:2:\"id\";s:3:\"391\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:139;a:13:{s:2:\"id\";s:3:\"390\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Under sunny sky\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";}i:140;a:13:{s:2:\"id\";s:3:\"389\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Rock concert\";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:\"1920\";s:6:\"height\";s:4:\"1443\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:141;a:13:{s:2:\"id\";s:3:\"388\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:26:\"Group of people in concert\";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:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:142;a:13:{s:2:\"id\";s:3:\"387\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:2:\"DJ\";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:\"1920\";s:6:\"height\";s:4:\"1282\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:143;a:13:{s:2:\"id\";s:3:\"386\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";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:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:144;a:13:{s:2:\"id\";s:3:\"385\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Concert hall\";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:\"1920\";s:6:\"height\";s:4:\"1282\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:145;a:13:{s:2:\"id\";s:3:\"384\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Concert hall 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:\"1920\";s:6:\"height\";s:4:\"1282\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:146;a:13:{s:2:\"id\";s:3:\"383\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:25:\"man playing upright piano\";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:\"1920\";s:6:\"height\";s:4:\"1340\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:147;a:13:{s:2:\"id\";s:3:\"382\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:26:\"person performing on stage\";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:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:148;a:13:{s:2:\"id\";s:3:\"381\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:23:\"Brown string instrument\";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:\"1920\";s:6:\"height\";s:4:\"1272\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:149;a:13:{s:2:\"id\";s:3:\"380\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:32:\"silhouette of person with 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:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:150;a:13:{s:2:\"id\";s:3:\"379\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Party fans\";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:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:151;a:13:{s:2:\"id\";s:3:\"378\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Condenser microphone\";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:\"1920\";s:6:\"height\";s:4:\"1440\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";}i:152;a:13:{s:2:\"id\";s:3:\"377\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:153;a:13:{s:2:\"id\";s:3:\"376\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"High rise buildings\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:154;a:13:{s:2:\"id\";s:3:\"375\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Cable bridge\";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:\"1272\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:155;a:13:{s:2:\"id\";s:3:\"374\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:156;a:13:{s:2:\"id\";s:3:\"373\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Low angle view\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:157;a:13:{s:2:\"id\";s:3:\"372\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Double decker bus\";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:\"1373\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:158;a:13:{s:2:\"id\";s:3:\"371\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:28:\"Buildings near body of water\";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:\"1370\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:159;a:13:{s:2:\"id\";s:3:\"370\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Satellite view\";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:\"1278\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:160;a:13:{s:2:\"id\";s:3:\"369\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Twin Tower\";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:\"1440\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:161;a:13:{s:2:\"id\";s:3:\"368\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Two person walking\";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:\"1345\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:162;a:13:{s:2:\"id\";s:3:\"367\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Sears Tower\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:163;a:13:{s:2:\"id\";s:3:\"366\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Night cityscape\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:164;a:13:{s:2:\"id\";s:3:\"365\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:21:\"Empire State Building\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:165;a:13:{s:2:\"id\";s:3:\"364\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Paris\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:166;a:13:{s:2:\"id\";s:3:\"363\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:27:\"Building during golden hour\";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:\"1288\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:167;a:13:{s:2:\"id\";s:3:\"362\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Afternoon 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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:168;a:13:{s:2:\"id\";s:3:\"361\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Concrete buildings\";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:\"1440\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:169;a:13:{s:2:\"id\";s:3:\"360\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:22:\"Architectural building\";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:\"1382\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:170;a:13:{s:2:\"id\";s:3:\"359\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Skyline photography\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:171;a:13:{s:2:\"id\";s:3:\"358\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";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:\"1154\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:172;a:13:{s:2:\"id\";s:3:\"357\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Burj Khalifa\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:173;a:13:{s:2:\"id\";s:3:\"356\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Skycraper\";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:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:174;a:13:{s:2:\"id\";s:3:\"355\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Gray tower\";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:\"1433\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";}i:175;a:13:{s:2:\"id\";s:3:\"354\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:176;a:13:{s:2:\"id\";s:3:\"353\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:177;a:13:{s:2:\"id\";s:3:\"352\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:178;a:13:{s:2:\"id\";s:3:\"351\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:179;a:13:{s:2:\"id\";s:3:\"350\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:180;a:13:{s:2:\"id\";s:3:\"349\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:181;a:13:{s:2:\"id\";s:3:\"348\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:182;a:13:{s:2:\"id\";s:3:\"347\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:183;a:13:{s:2:\"id\";s:3:\"346\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:184;a:13:{s:2:\"id\";s:3:\"345\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:185;a:13:{s:2:\"id\";s:3:\"344\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:186;a:13:{s:2:\"id\";s:3:\"343\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:187;a:13:{s:2:\"id\";s:3:\"342\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:188;a:13:{s:2:\"id\";s:3:\"341\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:189;a:13:{s:2:\"id\";s:3:\"340\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";}i:190;a:13:{s:2:\"id\";s:3:\"339\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";}i:191;a:13:{s:2:\"id\";s:3:\"337\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";}i:192;a:13:{s:2:\"id\";s:3:\"336\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";}i:193;a:13:{s:2:\"id\";s:3:\"335\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";}i:194;a:13:{s:2:\"id\";s:3:\"334\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:195;a:13:{s:2:\"id\";s:3:\"333\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:196;a:13:{s:2:\"id\";s:3:\"332\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:197;a:13:{s:2:\"id\";s:3:\"331\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:198;a:13:{s:2:\"id\";s:3:\"330\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:199;a:13:{s:2:\"id\";s:3:\"329\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";}i:200;a:13:{s:2:\"id\";s:3:\"328\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";}i:201;a:13:{s:2:\"id\";s:3:\"327\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:202;a:13:{s:2:\"id\";s:3:\"326\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:203;a:13:{s:2:\"id\";s:3:\"325\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:204;a:13:{s:2:\"id\";s:3:\"324\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:205;a:13:{s:2:\"id\";s:3:\"322\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:206;a:13:{s:2:\"id\";s:3:\"321\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";}i:207;a:13:{s:2:\"id\";s:3:\"320\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:208;a:13:{s:2:\"id\";s:3:\"319\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:209;a:13:{s:2:\"id\";s:3:\"318\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:210;a:13:{s:2:\"id\";s:3:\"317\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:211;a:13:{s:2:\"id\";s:3:\"316\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:212;a:13:{s:2:\"id\";s:3:\"315\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:213;a:13:{s:2:\"id\";s:3:\"314\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:214;a:13:{s:2:\"id\";s:3:\"313\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";}i:215;a:13:{s:2:\"id\";s:3:\"312\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";}i:216;a:13:{s:2:\"id\";s:3:\"311\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:217;a:13:{s:2:\"id\";s:3:\"310\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:218;a:13:{s:2:\"id\";s:3:\"309\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:219;a:13:{s:2:\"id\";s:3:\"308\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:220;a:13:{s:2:\"id\";s:3:\"307\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:221;a:13:{s:2:\"id\";s:3:\"306\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:222;a:13:{s:2:\"id\";s:3:\"305\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:223;a:13:{s:2:\"id\";s:3:\"304\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:224;a:13:{s:2:\"id\";s:3:\"303\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:225;a:13:{s:2:\"id\";s:3:\"302\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:226;a:13:{s:2:\"id\";s:3:\"301\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:227;a:13:{s:2:\"id\";s:3:\"300\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:228;a:13:{s:2:\"id\";s:3:\"299\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:229;a:13:{s:2:\"id\";s:3:\"298\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:230;a:13:{s:2:\"id\";s:3:\"297\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:231;a:13:{s:2:\"id\";s:3:\"296\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:232;a:13:{s:2:\"id\";s:3:\"295\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:233;a:13:{s:2:\"id\";s:3:\"294\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:234;a:13:{s:2:\"id\";s:3:\"293\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:235;a:13:{s:2:\"id\";s:3:\"292\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:236;a:13:{s:2:\"id\";s:3:\"291\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}i:237;a:13:{s:2:\"id\";s:3:\"290\";s:4:\"type\";s:1:\"4\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";}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:239;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:240;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:241;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:242;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:243;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:244;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:245;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:246;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:247;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:248;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:249;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:250;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:251;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:252;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:253;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:254;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:255;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:256;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:257;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:258;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:259;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:260;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:261;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:262;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:263;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:264;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:265;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:266;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:267;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:268;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:269;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:270;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:271;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:272;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:273;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:274;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:275;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:276;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:277;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:278;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:279;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:280;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:281;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:282;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:283;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:284;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:285;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:286;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:287;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:288;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:289;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:290;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:291;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:292;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:293;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:294;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:295;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:296;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:297;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:298;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:299;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:300;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:301;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:302;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:303;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:304;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:305;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:306;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:307;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:308;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:309;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:310;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:311;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:312;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:313;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:314;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:315;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:316;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:317;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:318;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:319;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:320;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:321;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:322;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:323;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:324;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:325;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:326;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:327;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:328;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:329;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:330;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:331;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:332;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:333;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:334;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:335;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:336;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:337;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:338;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:339;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:340;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:341;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:342;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:343;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:344;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:345;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:346;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:347;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:348;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:349;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:350;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:351;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:352;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:353;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:354;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:355;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:356;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:357;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:358;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:359;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:360;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:361;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:362;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:363;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:364;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:365;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:366;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:367;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:368;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:369;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:370;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:371;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:372;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:373;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:374;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:375;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:376;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:377;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:378;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:379;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:380;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:381;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:382;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:383;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:384;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:385;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:386;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:387;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:388;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:389;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:390;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:391;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:392;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:393;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:394;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:395;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:396;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:397;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:398;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:399;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:400;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:401;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:402;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:403;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:404;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:405;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:406;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:407;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:408;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:409;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:410;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:411;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:412;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:413;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:414;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:415;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:416;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'),(172,'revslider-templates-check','1605631735','yes'),(173,'revslider-templates-hash','b2c211f95b22b6b6950b2644dca361fc','yes'),(174,'rs-templates-new','','no'); INSERT INTO `grpsd_options` VALUES (175,'rs-templates','a:3:{s:4:\"hash\";s:32:\"b2c211f95b22b6b6950b2644dca361fc\";s:6:\"slider\";a:464:{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.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: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.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: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.1\";s:8:\"required\";s:6:\"6.2.22\";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.2\";s:8:\"required\";s:5:\"6.0.0\";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.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: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.2\";s:8:\"required\";s:5:\"6.0.0\";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.2\";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.2\";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.2\";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.2\";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.2\";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.2\";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.2\";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.2\";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.2\";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.2\";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.1\";s:8:\"required\";s:5:\"6.0.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: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.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: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.1\";s:8:\"required\";s:5:\"6.0.0\";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.1\";s:8:\"required\";s:5:\"6.0.0\";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.1\";s:8:\"required\";s:5:\"6.0.0\";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.1\";s:8:\"required\";s:5:\"6.0.0\";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.1\";s:8:\"required\";s:5:\"6.0.0\";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.1\";s:8:\"required\";s:5:\"6.0.0\";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.1\";s:8:\"required\";s:5:\"6.0.0\";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.1\";s:8:\"required\";s:5:\"6.0.0\";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.1\";s:8:\"required\";s:5:\"6.0.0\";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.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: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.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: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.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: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.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: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.2\";s:8:\"required\";s:5:\"6.0.0\";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.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\">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.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: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.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: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.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: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.3\";s:8:\"required\";s:6:\"6.2.22\";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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.2\";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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.3\";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.3\";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.3\";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.3\";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.3\";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.3\";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.3\";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.3\";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.1\";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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.2\";s:8:\"required\";s:5:\"6.0.0\";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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.2\";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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.1\";s:8:\"required\";s:6:\"6.2.22\";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.2\";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.2\";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.2\";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.2\";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.2\";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.2\";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.2\";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.2\";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.2\";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.1\";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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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:\"486b2bbe296722e70421731e3c05711b\";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.2\";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.2\";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.2\";s:8:\"required\";s:6:\"6.2.22\";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.1\";s:8:\"required\";s:6:\"6.2.22\";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.1\";s:8:\"required\";s:6:\"6.2.22\";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.1\";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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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.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: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;}i:460;a:22:{s:2:\"id\";s:3:\"496\";s:5:\"title\";s:21:\"Animated Mini Website\";s:5:\"alias\";s:12:\"mini-website\";s:3:\"zip\";s:16:\"mini-website.zip\";s:3:\"uid\";s:32:\"cc6c0a3b0f933a88c43e2be0fa397c1c\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";s:7:\"preview\";s:56:\"https://www.sliderrevolution.com/templates/mini-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.</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:461;a:22:{s:2:\"id\";s:3:\"497\";s:5:\"title\";s:18:\"Food Delivery Hero\";s:5:\"alias\";s:13:\"food-delivery\";s:3:\"zip\";s:17:\"food-delivery.zip\";s:3:\"uid\";s:32:\"992e9b22ff43227a655eea341835d04c\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";s:7:\"preview\";s:62:\"https://www.sliderrevolution.com/templates/food-delivery-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over 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\";s:342:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap 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:462;a:22:{s:2:\"id\";s:3:\"498\";s:5:\"title\";s:25:\"Slider With Illustrations\";s:5:\"alias\";s:25:\"slider-with-illustrations\";s:3:\"zip\";s:29:\"slider-with-illustrations.zip\";s:3:\"uid\";s:32:\"ebc24280b669f26734c7fdd8b5683e9f\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/slider-with-illustrations/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">A basic slider template with easy to customize content, colorful illustrations and pleasant 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: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:463;a:25:{s:2:\"id\";s:3:\"499\";s:5:\"title\";s:31:\"Zen Technology Website Template\";s:5:\"alias\";s:31:\"zen-technology-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"zen-technology-website-template-package\";s:3:\"img\";s:52:\"packages/zen-technology-website-template-package.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</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: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:31:\"Zen Technology 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:\"39\";s:9:\"installed\";b:0;}i:464;a:25:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</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:\"Zen Technology 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:\"39\";s:9:\"installed\";b:0;}i:465;a:25:{s:2:\"id\";s:3:\"501\";s:5:\"title\";s:10:\"Zen Header\";s:5:\"alias\";s:10:\"zen-header\";s:3:\"zip\";s:20:\"packs/zen-header.zip\";s:3:\"uid\";s:32:\"13d3cdde05308616fda7e2920a29e006\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</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: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:31:\"Zen Technology 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:\"39\";s:9:\"installed\";b:0;}i:466;a:25:{s:2:\"id\";s:3:\"502\";s:5:\"title\";s:9:\"Zen About\";s:5:\"alias\";s:9:\"zen-about\";s:3:\"zip\";s:19:\"packs/zen-about.zip\";s:3:\"uid\";s:32:\"d50d4f9b43e025fa99503b9a4eec6551\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</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: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:31:\"Zen Technology 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:\"39\";s:9:\"installed\";b:0;}i:467;a:25:{s:2:\"id\";s:3:\"503\";s:5:\"title\";s:12:\"Zen Features\";s:5:\"alias\";s:12:\"zen-features\";s:3:\"zip\";s:22:\"packs/zen-features.zip\";s:3:\"uid\";s:32:\"f4f7f500fae57b1b55adace13f030778\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</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: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:31:\"Zen Technology 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:\"39\";s:9:\"installed\";b:0;}i:468;a:25:{s:2:\"id\";s:3:\"504\";s:5:\"title\";s:9:\"Zen Video\";s:5:\"alias\";s:9:\"zen-video\";s:3:\"zip\";s:19:\"packs/zen-video.zip\";s:3:\"uid\";s:32:\"fa83df1b45b795174770b1b0155e89f3\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</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: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:31:\"Zen Technology 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:\"39\";s:9:\"installed\";b:0;}i:469;a:25:{s:2:\"id\";s:3:\"505\";s:5:\"title\";s:11:\"Zen Pricing\";s:5:\"alias\";s:11:\"zen-pricing\";s:3:\"zip\";s:21:\"packs/zen-pricing.zip\";s:3:\"uid\";s:32:\"921f8e5c156d9027f6ae8f1c5e426251\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</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: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:31:\"Zen Technology 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:\"39\";s:9:\"installed\";b:0;}i:470;a:25:{s:2:\"id\";s:3:\"506\";s:5:\"title\";s:22:\"Zen Testimonials Title\";s:5:\"alias\";s:22:\"zen-testimonials-title\";s:3:\"zip\";s:32:\"packs/zen-testimonials-title.zip\";s:3:\"uid\";s:32:\"d9aeeb596c0455ddd564a60a2d449b17\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</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: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:31:\"Zen Technology 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:\"39\";s:9:\"installed\";b:0;}i:471;a:25:{s:2:\"id\";s:3:\"507\";s:5:\"title\";s:16:\"Zen Testimonials\";s:5:\"alias\";s:16:\"zen-testimonials\";s:3:\"zip\";s:26:\"packs/zen-testimonials.zip\";s:3:\"uid\";s:32:\"5a0e0141599c63828e4b99e3bc863366\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</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: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:31:\"Zen Technology 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:\"39\";s:9:\"installed\";b:0;}i:472;a:25:{s:2:\"id\";s:3:\"508\";s:5:\"title\";s:10:\"Zen Footer\";s:5:\"alias\";s:10:\"zen-footer\";s:3:\"zip\";s:20:\"packs/zen-footer.zip\";s:3:\"uid\";s:32:\"47fb8604e2aafa8cfc97f5af75fda911\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</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: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:31:\"Zen Technology 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:\"39\";s:9:\"installed\";b:0;}i:473;a:22:{s:2:\"id\";s:3:\"509\";s:5:\"title\";s:24:\"Paintbrush Effect Add-on\";s:5:\"alias\";s:17:\"Paintbrush-Effect\";s:3:\"zip\";s:21:\"Paintbrush-Effect.zip\";s:3:\"uid\";s:32:\"b934d1376df026f0ff45447de17b5ee9\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/paintbrush-effect-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:179:\"<span class=\"ttm_content\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with 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:6:\"slider\";}s:14:\"plugin_require\";s:338:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap 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:474;a:25:{s:2:\"id\";s:3:\"510\";s:5:\"title\";s:29:\"Photographer Website Template\";s:5:\"alias\";s:29:\"photographer-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"photographer-website-template-package\";s:3:\"img\";s:50:\"packages/photographer-website-template-package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts 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:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap 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:29:\"Photographer 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:\"40\";s:9:\"installed\";b:0;}i:475;a:25:{s:2:\"id\";s:3:\"511\";s:5:\"title\";s:19:\"Photographer Header\";s:5:\"alias\";s:19:\"Photographer-Header\";s:3:\"zip\";s:29:\"packs/Photographer-Header.zip\";s:3:\"uid\";s:32:\"22de8b3b1eeca5d0d1087791a28cc641\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts 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: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:\"Photographer 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:\"40\";s:9:\"installed\";b:0;}i:476;a:25:{s:2:\"id\";s:3:\"512\";s:5:\"title\";s:27:\"Photographer Welcome Screen\";s:5:\"alias\";s:27:\"Photographer-Welcome-Screen\";s:3:\"zip\";s:37:\"packs/Photographer-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"8de63df079ad8b7c0aa7bf164bd5fd8f\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts 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: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:\"Photographer 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:\"40\";s:9:\"installed\";b:0;}i:477;a:25:{s:2:\"id\";s:3:\"513\";s:5:\"title\";s:21:\"Photographer Showcase\";s:5:\"alias\";s:21:\"Photographer-Showcase\";s:3:\"zip\";s:31:\"packs/Photographer-Showcase.zip\";s:3:\"uid\";s:32:\"8b2c7a1541465f77e829a9ac58926359\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts 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:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap 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:29:\"Photographer 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:\"40\";s:9:\"installed\";b:0;}i:478;a:25:{s:2:\"id\";s:3:\"514\";s:5:\"title\";s:22:\"Photographer Portfolio\";s:5:\"alias\";s:22:\"Photographer-Portfolio\";s:3:\"zip\";s:32:\"packs/Photographer-Portfolio.zip\";s:3:\"uid\";s:32:\"ba5cc502a9505725ef169eaf4852d10f\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts 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: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:\"Photographer 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:\"40\";s:9:\"installed\";b:0;}i:479;a:25:{s:2:\"id\";s:3:\"515\";s:5:\"title\";s:21:\"Photographer Contacts\";s:5:\"alias\";s:21:\"Photographer-Contacts\";s:3:\"zip\";s:31:\"packs/Photographer-Contacts.zip\";s:3:\"uid\";s:32:\"6ac142733cd260b5d5d3cdce30885074\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts 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: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:\"Photographer 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:\"40\";s:9:\"installed\";b:0;}i:480;a:25:{s:2:\"id\";s:3:\"516\";s:5:\"title\";s:19:\"Photographer Footer\";s:5:\"alias\";s:19:\"Photographer-Footer\";s:3:\"zip\";s:29:\"packs/Photographer-Footer.zip\";s:3:\"uid\";s:32:\"5fae568a988d072fb14b66cc2732ea46\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts 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: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:\"Photographer 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:\"40\";s:9:\"installed\";b:0;}i:481;a:25:{s:2:\"id\";s:3:\"517\";s:5:\"title\";s:18:\"Photographer Modal\";s:5:\"alias\";s:18:\"Photographer-Modal\";s:3:\"zip\";s:28:\"packs/Photographer-Modal.zip\";s:3:\"uid\";s:32:\"e6b47a765ad19bce4726540ff7211c07\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts 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: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:\"Photographer Website Template\";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:\"40\";s:9:\"installed\";b:0;}}s:6:\"slides\";a:461:{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\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}}}','no'),(176,'rs-templates-counter','0','no'),(177,'revslider_table_version','1.0.8','yes'),(178,'action_scheduler_hybrid_store_demarkation','7','yes'),(179,'schema-ActionScheduler_StoreSchema','3.0.1601319308','yes'),(180,'schema-ActionScheduler_LoggerSchema','2.0.1601319308','yes'),(183,'woocommerce_schema_version','430','yes'),(184,'woocommerce_store_address','','yes'),(185,'woocommerce_store_address_2','','yes'),(186,'woocommerce_store_city','','yes'),(187,'woocommerce_default_country','GB','yes'),(188,'woocommerce_store_postcode','','yes'),(189,'woocommerce_allowed_countries','all','yes'),(190,'woocommerce_all_except_countries','','yes'),(191,'woocommerce_specific_allowed_countries','','yes'),(192,'woocommerce_ship_to_countries','','yes'),(193,'woocommerce_specific_ship_to_countries','','yes'),(194,'woocommerce_default_customer_address','base','yes'),(195,'woocommerce_calc_taxes','no','yes'),(196,'woocommerce_enable_coupons','yes','yes'),(197,'woocommerce_calc_discounts_sequentially','no','no'),(198,'woocommerce_currency','GBP','yes'),(199,'woocommerce_currency_pos','left','yes'),(200,'woocommerce_price_thousand_sep',',','yes'),(201,'woocommerce_price_decimal_sep','.','yes'),(202,'woocommerce_price_num_decimals','2','yes'),(203,'woocommerce_shop_page_id','','yes'),(204,'woocommerce_cart_redirect_after_add','no','yes'),(205,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(206,'woocommerce_placeholder_image','7','yes'),(207,'woocommerce_weight_unit','kg','yes'),(208,'woocommerce_dimension_unit','cm','yes'),(209,'woocommerce_enable_reviews','yes','yes'),(210,'woocommerce_review_rating_verification_label','yes','no'),(211,'woocommerce_review_rating_verification_required','no','no'),(212,'woocommerce_enable_review_rating','yes','yes'),(213,'woocommerce_review_rating_required','yes','no'),(214,'woocommerce_manage_stock','yes','yes'),(215,'woocommerce_hold_stock_minutes','60','no'),(216,'woocommerce_notify_low_stock','yes','no'),(217,'woocommerce_notify_no_stock','yes','no'),(218,'woocommerce_stock_email_recipient','hferreto@zews.co.cr','no'),(219,'woocommerce_notify_low_stock_amount','2','no'),(220,'woocommerce_notify_no_stock_amount','0','yes'),(221,'woocommerce_hide_out_of_stock_items','no','yes'),(222,'woocommerce_stock_format','','yes'),(223,'woocommerce_file_download_method','force','no'),(224,'woocommerce_downloads_require_login','no','no'),(225,'woocommerce_downloads_grant_access_after_payment','yes','no'),(226,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(227,'woocommerce_prices_include_tax','no','yes'),(228,'woocommerce_tax_based_on','shipping','yes'),(229,'woocommerce_shipping_tax_class','inherit','yes'),(230,'woocommerce_tax_round_at_subtotal','no','yes'),(231,'woocommerce_tax_classes','','yes'),(232,'woocommerce_tax_display_shop','excl','yes'),(233,'woocommerce_tax_display_cart','excl','yes'),(234,'woocommerce_price_display_suffix','','yes'),(235,'woocommerce_tax_total_display','itemized','no'),(236,'woocommerce_enable_shipping_calc','yes','no'),(237,'woocommerce_shipping_cost_requires_address','no','yes'),(238,'woocommerce_ship_to_destination','billing','no'),(239,'woocommerce_shipping_debug_mode','no','yes'),(240,'woocommerce_enable_guest_checkout','yes','no'),(241,'woocommerce_enable_checkout_login_reminder','no','no'),(242,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(243,'woocommerce_enable_myaccount_registration','no','no'),(244,'woocommerce_registration_generate_username','yes','no'),(245,'woocommerce_registration_generate_password','yes','no'),(246,'woocommerce_erasure_request_removes_order_data','no','no'),(247,'woocommerce_erasure_request_removes_download_data','no','no'),(248,'woocommerce_allow_bulk_remove_personal_data','no','no'),(249,'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'),(250,'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'),(251,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(252,'woocommerce_trash_pending_orders','','no'),(253,'woocommerce_trash_failed_orders','','no'),(254,'woocommerce_trash_cancelled_orders','','no'),(255,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(256,'woocommerce_email_from_name','Grupo Suadi','no'),(257,'woocommerce_email_from_address','hferreto@zews.co.cr','no'),(258,'woocommerce_email_header_image','','no'),(259,'woocommerce_email_footer_text','{site_title} — Built with {WooCommerce}','no'),(260,'woocommerce_email_base_color','#96588a','no'),(261,'woocommerce_email_background_color','#f7f7f7','no'),(262,'woocommerce_email_body_background_color','#ffffff','no'),(263,'woocommerce_email_text_color','#3c3c3c','no'),(264,'woocommerce_cart_page_id','','no'),(265,'woocommerce_checkout_page_id','','no'),(266,'woocommerce_myaccount_page_id','','no'),(267,'woocommerce_terms_page_id','','no'),(268,'woocommerce_force_ssl_checkout','no','yes'),(269,'woocommerce_unforce_ssl_checkout','no','yes'),(270,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(271,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(272,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(273,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(274,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(275,'woocommerce_myaccount_orders_endpoint','orders','yes'),(276,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(277,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(278,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(279,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(280,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(281,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(282,'woocommerce_logout_endpoint','customer-logout','yes'),(283,'woocommerce_api_enabled','no','yes'),(284,'woocommerce_allow_tracking','no','no'),(285,'woocommerce_show_marketplace_suggestions','yes','no'),(286,'woocommerce_single_image_width','600','yes'),(287,'woocommerce_thumbnail_image_width','300','yes'),(288,'woocommerce_checkout_highlight_required_fields','yes','yes'),(289,'woocommerce_demo_store','no','no'),(290,'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'),(291,'current_theme_supports_woocommerce','yes','yes'),(292,'woocommerce_queue_flush_rewrite_rules','no','yes'),(293,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(294,'product_cat_children','a:0:{}','yes'),(295,'default_product_cat','15','yes'),(296,'woocommerce_admin_notices','a:2:{i:0;s:7:\"install\";i:1;s:20:\"no_secure_connection\";}','yes'),(299,'woocommerce_version','4.5.2','yes'),(300,'woocommerce_db_version','4.5.2','yes'),(301,'woocommerce_homescreen_enabled','yes','yes'),(304,'recently_activated','a:0:{}','yes'),(305,'action_scheduler_lock_async-request-runner','1605712754','yes'),(306,'revslider_update_version','6.2.0','yes'),(307,'redux_version_upgraded_from','3.6.7.13','yes'),(308,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"iwZyqmaI190uluWN5PppLhznVEKQRIiB\";}','yes'),(309,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(310,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(311,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(312,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(313,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(314,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(315,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(316,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(317,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(318,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(319,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(320,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(321,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(322,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(323,'widget_bcn_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(326,'woocommerce_admin_version','1.5.0','yes'),(327,'woocommerce_admin_install_timestamp','1601319316','yes'),(331,'wc_admin_note_home_screen_feedback_homescreen_accessed','1601319317','yes'),(332,'vc_version','6.2.0','yes'),(334,'woocommerce_meta_box_errors','a:0:{}','yes'),(337,'wc_blocks_db_schema_version','260','yes'),(338,'construction_options','a:97:{s:8:\"last_tab\";s:0:\"\";s:11:\"custom_logo\";a:5:{s:3:\"url\";s:71:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/Logo-GSUADI-1.png\";s:2:\"id\";s:3:\"317\";s:6:\"height\";s:2:\"90\";s:5:\"width\";s:3:\"250\";s:9:\"thumbnail\";s:78:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/Logo-GSUADI-1-150x90.png\";}s:11:\"retina_logo\";a:5:{s:3:\"url\";s:74:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/LogoG-SUADI1-Ret.png\";s:2:\"id\";s:3:\"318\";s:6:\"height\";s:3:\"141\";s:5:\"width\";s:3:\"392\";s:9:\"thumbnail\";s:82:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/LogoG-SUADI1-Ret-150x141.png\";}s:16:\"transparent_logo\";a:5:{s:3:\"url\";s:71:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/Logo-GSUADI-1.png\";s:2:\"id\";s:3:\"317\";s:6:\"height\";s:2:\"90\";s:5:\"width\";s:3:\"250\";s:9:\"thumbnail\";s:78:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/Logo-GSUADI-1-150x90.png\";}s:23:\"retina_transparent_logo\";a:5:{s:3:\"url\";s:74:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/LogoG-SUADI1-Ret.png\";s:2:\"id\";s:3:\"318\";s:6:\"height\";s:3:\"141\";s:5:\"width\";s:3:\"392\";s:9:\"thumbnail\";s:82:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/LogoG-SUADI1-Ret-150x141.png\";}s:11:\"logo_margin\";a:5:{s:10:\"margin-top\";s:3:\"5px\";s:12:\"margin-right\";s:1:\"0\";s:13:\"margin-bottom\";s:3:\"5px\";s:11:\"margin-left\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}s:11:\"mobile_logo\";a:5:{s:3:\"url\";s:74:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/LogoG-SUADI1-mob.png\";s:2:\"id\";s:3:\"319\";s:6:\"height\";s:2:\"91\";s:5:\"width\";s:3:\"230\";s:9:\"thumbnail\";s:81:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/LogoG-SUADI1-mob-150x91.png\";}s:18:\"retina_mobile_logo\";a:5:{s:3:\"url\";s:74:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/LogoG-SUADI1-mob.png\";s:2:\"id\";s:3:\"319\";s:6:\"height\";s:2:\"91\";s:5:\"width\";s:3:\"230\";s:9:\"thumbnail\";s:81:\"http://gruposuadi.com/demo/wp-content/uploads/2020/11/LogoG-SUADI1-mob-150x91.png\";}s:18:\"logo_mobile_margin\";a:5:{s:10:\"margin-top\";s:3:\"5px\";s:12:\"margin-right\";s:1:\"0\";s:13:\"margin-bottom\";s:1:\"0\";s:11:\"margin-left\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}s:7:\"favicon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"iphone_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"iphone_icon_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:9:\"ipad_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"ipad_icon_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"mobile_number_switch\";s:1:\"0\";s:18:\"mobile_number_text\";s:20:\"Zero Obligation Call\";s:20:\"mobile_number_number\";s:13:\"+61 8929 2633\";s:20:\"mobile_button_switch\";s:1:\"1\";s:18:\"mobile_button_text\";s:12:\"Contáctenos\";s:18:\"mobile_button_link\";s:21:\"/gruposuadi/contacto/\";s:13:\"header_sticky\";s:1:\"1\";s:12:\"header_style\";s:14:\"header-style-2\";s:20:\"header1_quote_switch\";s:1:\"1\";s:18:\"header1_quote_text\";s:10:\"Free Quote\";s:22:\"quote_slideout_content\";s:0:\"\";s:24:\"quote_slideout_shortcode\";s:0:\"\";s:23:\"header2_phone_number_tt\";s:9:\"Llámenos\";s:20:\"header2_phone_number\";s:14:\"+507 6612-2640\";s:21:\"header_3_phone_number\";s:13:\"+27 3848 2637\";s:19:\"header_3_quote_text\";s:10:\"Free Quote\";s:19:\"header_3_quote_link\";s:1:\"#\";s:16:\"header3_facebook\";s:1:\"1\";s:20:\"header3_facebook_url\";s:23:\"http://www.facebook.com\";s:14:\"header3_google\";s:1:\"1\";s:18:\"header3_google_url\";s:22:\"http://plus.google.com\";s:15:\"header3_twitter\";s:1:\"1\";s:19:\"header3_twitter_url\";s:22:\"http://www.twitter.com\";s:11:\"blog_layout\";s:13:\"right-sidebar\";s:15:\"blogpage_layout\";s:13:\"right-sidebar\";s:14:\"archive_layout\";s:13:\"right-sidebar\";s:19:\"archives_woo_layout\";s:13:\"right-sidebar\";s:16:\"topfooter_switch\";s:1:\"0\";s:17:\"top_footer_layout\";s:1:\"1\";s:17:\"topfooter_spacing\";a:2:{s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:4:\"50px\";}s:13:\"footer_layout\";s:1:\"3\";s:14:\"footer_spacing\";a:2:{s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:4:\"50px\";}s:14:\"copyright_text\";s:33:\"GRUPO SUADI - Derechos Reservados\";s:22:\"footer_social_facebook\";s:1:\"1\";s:26:\"footer_social_facebook_url\";s:35:\"https://www.facebook.com/gruposuadi\";s:21:\"footer_social_twitter\";s:1:\"0\";s:25:\"footer_social_twitter_url\";s:0:\"\";s:23:\"footer_social_instagram\";s:1:\"0\";s:27:\"footer_social_instagram_url\";s:1:\"#\";s:20:\"footer_social_google\";s:1:\"0\";s:24:\"footer_social_google_url\";s:0:\"\";s:22:\"footer_social_linkedin\";s:1:\"0\";s:26:\"footer_social_linkedin_url\";s:0:\"\";s:16:\"main-theme-color\";a:3:{s:5:\"color\";s:7:\"#ff6d00\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(255,109,0,1)\";}s:19:\"sidebar-theme-color\";a:3:{s:5:\"color\";s:7:\"#333333\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:16:\"rgba(51,51,51,1)\";}s:22:\"header-menu-background\";a:3:{s:5:\"color\";s:4:\"#fff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:17:\"menu_schema_color\";a:3:{s:5:\"color\";s:7:\"#ffb600\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(255,182,0,1)\";}s:15:\"menu_item_color\";a:3:{s:5:\"color\";s:4:\"#000\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:21:\"menu_item_color_hover\";a:3:{s:5:\"color\";s:4:\"#000\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:18:\"submenu_item_color\";a:3:{s:5:\"color\";s:4:\"#000\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:24:\"submenu_item_color_hover\";a:3:{s:5:\"color\";s:4:\"#000\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:18:\"tp_menu_item_color\";a:3:{s:5:\"color\";s:4:\"#000\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:24:\"tp_menu_item_color_hover\";a:3:{s:5:\"color\";s:4:\"#000\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:16:\"tp_menu_top_text\";a:3:{s:5:\"color\";s:4:\"#fff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:19:\"tp_menu_bottom_text\";a:3:{s:5:\"color\";s:4:\"#fff\";s:5:\"alpha\";s:4:\"0.75\";s:4:\"rgba\";s:22:\"rgba(255,255,255,0.75)\";}s:15:\"hs3_social_icon\";a:3:{s:5:\"color\";s:4:\"#111\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:16:\"rgba(17,17,17,1)\";}s:15:\"hs3_social_text\";a:3:{s:5:\"color\";s:4:\"#111\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:16:\"rgba(17,17,17,1)\";}s:27:\"hs3_transparent_social_icon\";a:3:{s:5:\"color\";s:4:\"#fff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:27:\"hs3_transparent_social_text\";a:3:{s:5:\"color\";s:4:\"#fff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:21:\"hs3_callquote_toptext\";a:3:{s:5:\"color\";s:4:\"#111\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:16:\"rgba(17,17,17,1)\";}s:24:\"hs3_tp_callquote_toptext\";a:3:{s:5:\"color\";s:4:\"#fff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:18:\"hs3_callquote_text\";a:3:{s:5:\"color\";s:4:\"#111\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:16:\"rgba(17,17,17,1)\";}s:21:\"hs3_tp_callquote_text\";a:3:{s:5:\"color\";s:4:\"#fff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:17:\"main-footer-color\";a:7:{s:16:\"background-color\";s:7:\"#000000\";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:16:\"top-footer-color\";a:7:{s:16:\"background-color\";s:7:\"#000000\";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:16:\"main_schema_font\";a:6:{s:11:\"font-family\";s:7:\"Raleway\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:13:\"ntto_typ_body\";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:0:\"\";s:10:\"font-style\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:11:\"h1_headings\";a:8:{s:11:\"font-family\";s:7:\"Raleway\";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:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:11:\"h2_headings\";a:8:{s:11:\"font-family\";s:7:\"Raleway\";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:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:11:\"h3_headings\";a:8:{s:11:\"font-family\";s:7:\"Raleway\";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:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:11:\"h4_headings\";a:8:{s:11:\"font-family\";s:7:\"Raleway\";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:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:11:\"h5_headings\";a:8:{s:11:\"font-family\";s:7:\"Raleway\";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:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:11:\"h6_headings\";a:8:{s:11:\"font-family\";s:7:\"Raleway\";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:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:12:\"header_fonts\";a:8:{s:11:\"font-family\";s:7:\"Raleway\";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:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:15:\"shop_background\";a:7:{s:16:\"background-color\";s:0:\"\";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:\"ntto_googlemaps_api\";s:0:\"\";s:16:\"google_analytics\";s:0:\"\";s:21:\"rewrite_slug_services\";s:7:\"service\";s:21:\"rewrite_slug_projects\";s:7:\"project\";s:18:\"rewrite_slug_staff\";s:5:\"staff\";s:25:\"rewrite_slug_testimonials\";s:11:\"testimonial\";s:10:\"custom_css\";s:1842:\"label \r\n{\r\n width: 100%;\r\n font-size: 14px;\r\n color: #2f2f2f;\r\n}\r\n\r\nstrong, b {\r\n font-weight: 700;\r\n color: #000;\r\n}\r\n\r\ninput[type=\"submit\"] {\r\n border-bottom: 0px solid rgba(0, 0, 0, 0.2);\r\n padding: 14px 50px 25px;\r\n font-size: 15px;\r\n}\r\n\r\n\r\nbody {\r\n font-size: 15px;\r\n}\r\n\r\n.page-title {\r\n font-size: 48px;\r\n line-height: 50px;\r\n}\r\n/*Servicios*/\r\n.services-grid-thumbnail:after {\r\n background: linear-gradient(360deg, rgb(0 0 0 / 79%) 15px, #0000003b);\r\n}\r\n.service-figure figcaption .services-grid-title a {\r\n font-size: 24px;\r\n font-weight: 400;\r\n}\r\n.services-carousel-excerpt {\r\n font-size: 15px;\r\n}\r\n.header-wrapper .main-menu > ul > li > a {\r\n font-size: 14px;\r\n}\r\n\r\n.page-header-inner>div{\r\n \r\n position: initial !important; margin-bottom: 5px !important;\r\n}\r\n.page-title {\r\n bottom: 30px !important;\r\n}\r\n\r\n@media only screen and (max-width: 600px) {\r\n \r\n .page-title {\r\n font-size: 30px;\r\n line-height: 30px;\r\n bottom: 50px !important;\r\n}\r\n\r\n.responsivetitulo {\r\n font-size: 32px !important;\r\n}\r\n.centertitle {\r\n text-align: center !important;\r\n}\r\n}\r\n.header-style-2 .phone-num-wrapper .header-phone-number {\r\n font-size: 19px;\r\n font-family: \"Lato\", \"sans-serif\";\r\n}\r\n.main-menu ul.sub-menu {\r\n width: 290px;\r\n background: rgb(239 239 239);\r\n}\r\n/*home cajas*/\r\n.sobre {\r\n z-index: 1;\r\n}\r\n.bannerhome {\r\n box-shadow: 0 0 0px 17px white;\r\n}\r\n\r\n.main-menu ul.sub-menu li a {\r\n line-height: 21px; \r\n}\r\n.copyright {\r\n background: #FF6D00;\r\n}\r\n.copyright-text, .copyright-social i {\r\n color: #fff;\r\n}\r\n\r\n.copyright-social i:hover {\r\n color: #000 !important;\r\n}\r\n.header-style-2 .relative {\r\n padding: 0px 0;\r\n}\r\n.main-menu {\r\n top: -15px;\r\n}\r\n.header-style-2 .phone-num-wrapper {\r\n top: -14px;\r\n padding: 33px 40px 35px;\r\n}\";s:9:\"custom_js\";s:0:\"\";}','yes'),(339,'construction_options-transients','a:3:{s:14:\"changed_values\";a:1:{s:10:\"custom_css\";s:1890:\"label \r\n{\r\n width: 100%;\r\n font-size: 14px;\r\n color: #2f2f2f;\r\n}\r\n\r\nstrong, b {\r\n font-weight: 700;\r\n color: #000;\r\n}\r\n\r\ninput[type=\"submit\"] {\r\n border-bottom: 0px solid rgba(0, 0, 0, 0.2);\r\n padding: 14px 50px 25px;\r\n font-size: 15px;\r\n}\r\n\r\ninput:active {\r\n border: 1px !important;\r\n}\r\n\r\nbody {\r\n font-size: 15px;\r\n}\r\n\r\n.page-title {\r\n font-size: 48px;\r\n line-height: 50px;\r\n}\r\n/*Servicios*/\r\n.services-grid-thumbnail:after {\r\n background: linear-gradient(360deg, rgb(0 0 0 / 79%) 15px, #0000003b);\r\n}\r\n.service-figure figcaption .services-grid-title a {\r\n font-size: 24px;\r\n font-weight: 400;\r\n}\r\n.services-carousel-excerpt {\r\n font-size: 15px;\r\n}\r\n.header-wrapper .main-menu > ul > li > a {\r\n font-size: 14px;\r\n}\r\n\r\n.page-header-inner>div{\r\n \r\n position: initial !important; margin-bottom: 5px !important;\r\n}\r\n.page-title {\r\n bottom: 30px !important;\r\n}\r\n\r\n@media only screen and (max-width: 600px) {\r\n \r\n .page-title {\r\n font-size: 30px;\r\n line-height: 30px;\r\n bottom: 50px !important;\r\n}\r\n\r\n.responsivetitulo {\r\n font-size: 32px !important;\r\n}\r\n.centertitle {\r\n text-align: center !important;\r\n}\r\n}\r\n.header-style-2 .phone-num-wrapper .header-phone-number {\r\n font-size: 19px;\r\n font-family: \"Lato\", \"sans-serif\";\r\n}\r\n.main-menu ul.sub-menu {\r\n width: 290px;\r\n background: rgb(239 239 239);\r\n}\r\n/*home cajas*/\r\n.sobre {\r\n z-index: 1;\r\n}\r\n.bannerhome {\r\n box-shadow: 0 0 0px 17px white;\r\n}\r\n\r\n.main-menu ul.sub-menu li a {\r\n line-height: 21px; \r\n}\r\n.copyright {\r\n background: #FF6D00;\r\n}\r\n.copyright-text, .copyright-social i {\r\n color: #fff;\r\n}\r\n\r\n.copyright-social i:hover {\r\n color: #000 !important;\r\n}\r\n.header-style-2 .relative {\r\n padding: 0px 0;\r\n}\r\n.main-menu {\r\n top: -15px;\r\n}\r\n.header-style-2 .phone-num-wrapper {\r\n top: -14px;\r\n padding: 33px 40px 35px;\r\n}\";}s:9:\"last_save\";i:1605723459;s:13:\"last_compiler\";i:1605637714;}','yes'),(343,'wpb_js_composer_license_activation_notified','yes','yes'),(352,'action_scheduler_migration_status','complete','yes'),(362,'maintenance_meta','a:4:{s:13:\"first_version\";s:3:\"3.8\";s:13:\"first_install\";i:1601319497;s:11:\"old_version\";b:0;s:19:\"mtnc_dismiss_dialog\";b:1;}','yes'),(363,'mtnc_db_version','2','yes'),(364,'maintenance_options','a:24:{s:10:\"page_title\";s:22:\"Sitio en construcción\";s:7:\"heading\";s:27:\"Disculpe los inconvenientes\";s:11:\"description\";s:45:\"Estará disponible pronto, por favor regrese.\";s:11:\"footer_text\";s:19:\"© Grupo Suadi 2020\";s:10:\"logo_width\";s:3:\"220\";s:11:\"logo_height\";s:0:\"\";s:4:\"logo\";s:1:\"0\";s:11:\"retina_logo\";s:1:\"0\";s:7:\"body_bg\";s:1:\"8\";s:17:\"bg_image_portrait\";s:1:\"0\";s:13:\"preloader_img\";s:1:\"0\";s:13:\"body_bg_color\";s:7:\"#111111\";s:10:\"font_color\";s:7:\"#ffffff\";s:17:\"controls_bg_color\";s:7:\"#111111\";s:16:\"body_font_family\";s:9:\"Open Sans\";s:16:\"body_font_subset\";s:3:\"300\";s:15:\"gg_analytics_id\";s:0:\"\";s:14:\"blur_intensity\";s:1:\"5\";s:8:\"is_login\";s:1:\"1\";s:10:\"custom_css\";s:0:\"\";s:5:\"state\";i:0;s:2:\"ID\";i:0;s:6:\"filter\";s:2:\"db\";s:16:\"default_settings\";b:0;}','yes'),(370,'theme_mods_construction-child','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:25:\"construction-primary-menu\";i:18;}s:18:\"custom_css_post_id\";i:147;}','yes'),(371,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes'),(390,'_transient_product_query-transient-version','1605646174','yes'),(413,'_transient_woocommerce_reports-transient-version','1601333782','yes'),(507,'services_categories_children','a:0:{}','yes'),(595,'secret_key','bV;OR4M-,yO8ndh N:_/x+5dTGsXO9zH|tChO}`%%uu+!a]9M>X^;!ACKD}F(cU+','no'),(653,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(671,'duplicate_post_copytitle','1','yes'),(672,'duplicate_post_copydate','','yes'),(673,'duplicate_post_copystatus','','yes'),(674,'duplicate_post_copyslug','','yes'),(675,'duplicate_post_copyexcerpt','1','yes'),(676,'duplicate_post_copycontent','1','yes'),(677,'duplicate_post_copythumbnail','1','yes'),(678,'duplicate_post_copytemplate','1','yes'),(679,'duplicate_post_copyformat','1','yes'),(680,'duplicate_post_copyauthor','','yes'),(681,'duplicate_post_copypassword','','yes'),(682,'duplicate_post_copyattachments','','yes'),(683,'duplicate_post_copychildren','','yes'),(684,'duplicate_post_copycomments','','yes'),(685,'duplicate_post_copymenuorder','1','yes'),(686,'duplicate_post_taxonomies_blacklist','','yes'),(687,'duplicate_post_blacklist','','yes'),(688,'duplicate_post_types_enabled','a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:8:\"services\";}','yes'),(689,'duplicate_post_show_row','1','yes'),(690,'duplicate_post_show_adminbar','1','yes'),(691,'duplicate_post_show_submitbox','1','yes'),(692,'duplicate_post_show_bulkactions','1','yes'),(693,'duplicate_post_show_original_column','','yes'),(694,'duplicate_post_show_original_in_post_states','','yes'),(695,'duplicate_post_show_original_meta_box','','yes'),(696,'duplicate_post_show_notice','1','no'),(697,'duplicate_post_version','3.2.6','yes'),(704,'duplicate_post_title_prefix','','yes'),(705,'duplicate_post_title_suffix','','yes'),(706,'duplicate_post_increase_menu_order_by','','yes'),(707,'duplicate_post_roles','a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}','yes'),(752,'_transient_health-check-site-status-result','{\"good\":\"10\",\"recommended\":\"9\",\"critical\":\"1\"}','yes'),(2139,'revslider_update_revision_current','6.2.0','yes'),(2140,'category_children','a:0:{}','yes'),(2779,'wpseo','a:30:{s:8:\"tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:25:\"ignore_indexation_warning\";b:0;s:29:\"indexation_warning_hide_until\";b:0;s:18:\"indexation_started\";b:0;s:28:\"indexables_indexation_reason\";s:26:\"permalink_settings_changed\";s:31:\"indexables_indexation_completed\";b:0;s:7:\"version\";s:4:\"15.0\";s:16:\"previous_version\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1602193732;s:13:\"myyoast-oauth\";b:0;}','yes'),(2780,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"15.0\";}','yes'),(2781,'wpseo_titles','a:163:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:14:\"person_logo_id\";i:0;s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:15:\"company_logo_id\";i:0;s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:13:\"title-product\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-product\";s:0:\"\";s:15:\"noindex-product\";b:0;s:26:\"display-metabox-pt-product\";b:1;s:26:\"post_types-product-maintax\";i:0;s:24:\"schema-page-type-product\";s:7:\"WebPage\";s:27:\"schema-article-type-product\";s:4:\"None\";s:23:\"title-ptarchive-product\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-product\";s:0:\"\";s:25:\"bctitle-ptarchive-product\";s:0:\"\";s:25:\"noindex-ptarchive-product\";b:0;s:14:\"title-services\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-services\";s:0:\"\";s:16:\"noindex-services\";b:0;s:27:\"display-metabox-pt-services\";b:1;s:27:\"post_types-services-maintax\";i:0;s:25:\"schema-page-type-services\";s:7:\"WebPage\";s:28:\"schema-article-type-services\";s:4:\"None\";s:24:\"title-ptarchive-services\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:27:\"metadesc-ptarchive-services\";s:0:\"\";s:26:\"bctitle-ptarchive-services\";s:0:\"\";s:26:\"noindex-ptarchive-services\";b:0;s:14:\"title-projects\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-projects\";s:0:\"\";s:16:\"noindex-projects\";b:0;s:27:\"display-metabox-pt-projects\";b:1;s:27:\"post_types-projects-maintax\";i:0;s:25:\"schema-page-type-projects\";s:7:\"WebPage\";s:28:\"schema-article-type-projects\";s:4:\"None\";s:24:\"title-ptarchive-projects\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:27:\"metadesc-ptarchive-projects\";s:0:\"\";s:26:\"bctitle-ptarchive-projects\";s:0:\"\";s:26:\"noindex-ptarchive-projects\";b:0;s:11:\"title-staff\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:14:\"metadesc-staff\";s:0:\"\";s:13:\"noindex-staff\";b:0;s:24:\"display-metabox-pt-staff\";b:1;s:24:\"post_types-staff-maintax\";i:0;s:22:\"schema-page-type-staff\";s:7:\"WebPage\";s:25:\"schema-article-type-staff\";s:4:\"None\";s:21:\"title-ptarchive-staff\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-ptarchive-staff\";s:0:\"\";s:23:\"bctitle-ptarchive-staff\";s:0:\"\";s:23:\"noindex-ptarchive-staff\";b:0;s:18:\"title-testimonials\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-testimonials\";s:0:\"\";s:20:\"noindex-testimonials\";b:0;s:31:\"display-metabox-pt-testimonials\";b:1;s:31:\"post_types-testimonials-maintax\";i:0;s:29:\"schema-page-type-testimonials\";s:7:\"WebPage\";s:32:\"schema-article-type-testimonials\";s:4:\"None\";s:28:\"title-ptarchive-testimonials\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-ptarchive-testimonials\";s:0:\"\";s:30:\"bctitle-ptarchive-testimonials\";s:0:\"\";s:30:\"noindex-ptarchive-testimonials\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:29:\"title-tax-services_categories\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:32:\"metadesc-tax-services_categories\";s:0:\"\";s:39:\"display-metabox-tax-services_categories\";b:1;s:31:\"noindex-tax-services_categories\";b:0;s:37:\"taxonomy-services_categories-ptparent\";i:0;s:32:\"title-tax-testimonial_categories\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-testimonial_categories\";s:0:\"\";s:42:\"display-metabox-tax-testimonial_categories\";b:1;s:34:\"noindex-tax-testimonial_categories\";b:0;s:40:\"taxonomy-testimonial_categories-ptparent\";i:0;s:26:\"title-tax-staff_categories\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-tax-staff_categories\";s:0:\"\";s:36:\"display-metabox-tax-staff_categories\";b:1;s:28:\"noindex-tax-staff_categories\";b:0;s:34:\"taxonomy-staff_categories-ptparent\";i:0;s:28:\"title-tax-project_categories\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-tax-project_categories\";s:0:\"\";s:38:\"display-metabox-tax-project_categories\";b:1;s:30:\"noindex-tax-project_categories\";b:0;s:36:\"taxonomy-project_categories-ptparent\";i:0;s:21:\"title-tax-product_cat\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_cat\";s:0:\"\";s:31:\"display-metabox-tax-product_cat\";b:1;s:23:\"noindex-tax-product_cat\";b:0;s:29:\"taxonomy-product_cat-ptparent\";i:0;s:21:\"title-tax-product_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_tag\";s:0:\"\";s:31:\"display-metabox-tax-product_tag\";b:1;s:23:\"noindex-tax-product_tag\";b:0;s:29:\"taxonomy-product_tag-ptparent\";i:0;s:32:\"title-tax-product_shipping_class\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-product_shipping_class\";s:0:\"\";s:42:\"display-metabox-tax-product_shipping_class\";b:1;s:34:\"noindex-tax-product_shipping_class\";b:0;s:40:\"taxonomy-product_shipping_class-ptparent\";i:0;}','yes'),(2782,'wpseo_social','a:19:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),(2783,'wpseo_flush_rewrite','1','yes'),(2795,'wpseo_ryte','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1605217740;}','yes'),(3169,'joinchat','a:19:{s:9:\"telephone\";s:12:\"+50766122640\";s:12:\"message_send\";s:100:\"¡Hola! Me gustaría más información de los servicios que ofrecen. Vi la información aquí: {URL}\";s:12:\"button_image\";i:0;s:10:\"button_tip\";s:18:\"¿Necesitas ayuda?\";s:8:\"position\";s:4:\"left\";s:12:\"button_delay\";i:3;s:12:\"whatsapp_web\";s:3:\"yes\";s:12:\"message_text\";s:29:\"Hola ?\n¿Podemos ayudarte?\";s:13:\"message_start\";s:10:\"Abrir chat\";s:5:\"color\";s:7:\"#25d366\";s:9:\"dark_mode\";s:2:\"no\";s:13:\"message_delay\";i:6;s:13:\"message_views\";i:1;s:13:\"message_badge\";s:3:\"yes\";s:20:\"message_text_product\";s:0:\"\";s:20:\"message_text_on_sale\";s:0:\"\";s:20:\"message_send_product\";s:0:\"\";s:11:\"mobile_only\";s:2:\"no\";s:10:\"visibility\";a:1:{s:3:\"all\";s:3:\"yes\";}}','yes'),(3512,'bcn_version','6.5.0','no'),(3907,'_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'),(4639,'_site_transient_timeout_browser_8d3fec2581d3961f3037851d5cc0039c','1606241034','no'),(4640,'_site_transient_browser_8d3fec2581d3961f3037851d5cc0039c','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"86.0.4240.198\";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'),(4641,'_site_transient_timeout_php_check_2debc8e82478e38195a363625a9d2ce2','1606241034','no'),(4642,'_site_transient_php_check_2debc8e82478e38195a363625a9d2ce2','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(4651,'_transient_timeout_wc_low_stock_count','1608228234','no'),(4652,'_transient_wc_low_stock_count','0','no'),(4653,'_transient_timeout_wc_outofstock_count','1608228234','no'),(4654,'_transient_wc_outofstock_count','0','no'),(4816,'_transient_timeout__woocommerce_helper_updates','1605752382','no'),(4817,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1605709182;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(4853,'_transient_random_seed','bec04ec13be89f352df724d15c1cf997','yes'),(4854,'_site_transient_timeout_browser_ce4e9e986b0fbc713624d54b83c36283','1606328261','no'),(4855,'_site_transient_browser_ce4e9e986b0fbc713624d54b83c36283','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"85.0.4183.121\";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'),(4856,'_site_transient_timeout_php_check_e796305fbf0257ebb2c4c2c40c9bc4af','1606328261','no'),(4857,'_site_transient_php_check_e796305fbf0257ebb2c4c2c40c9bc4af','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";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:0;}','no'),(4864,'_transient_timeout_wpseo_unindexed_post_link_count','1605809862','no'),(4865,'_transient_wpseo_unindexed_post_link_count','0','no'),(4866,'_transient_timeout_wpseo_unindexed_term_link_count','1605809862','no'),(4867,'_transient_wpseo_unindexed_term_link_count','3','no'),(4868,'_transient_timeout_feed_69c933d8a78805efd0abe985766ffb51','1605766674','no'),(4869,'_transient_feed_69c933d8a78805efd0abe985766ffb51','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://es.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Español\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Nov 2020 16:37:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"es\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.6-beta4-49607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:79:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.6 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://es.wordpress.org/2020/11/03/wordpress-5-6-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://es.wordpress.org/2020/11/03/wordpress-5-6-beta-3/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Nov 2020 16:37:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:15:\"Actualizaciones\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://es.wordpress.org/?p=5501\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:372:\"¡WordPress 5.6 Beta 3 ya está disponible para hacer pruebas! Este software está todavía en fase de desarrollo así que te recomendamos que ejecutes esta versión en un sitio de pruebas. Puedes probar WordPress 5.6 beta de dos maneras: Prueba el plugin WordPress Beta Tester (elige la opción de «desarrollo temprano»). O descarga la beta aquí (zip). El […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Fernando Tellado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5102:\"\n<p>¡WordPress 5.6 Beta 3 ya está disponible para hacer pruebas!</p>\n\n\n\n<p><strong>Este software está todavía en fase de desarrollo</strong> así que te recomendamos que ejecutes esta versión en un sitio de pruebas.</p>\n\n\n\n<p>Puedes probar WordPress 5.6 beta de dos maneras:</p>\n\n\n\n<ul><li>Prueba el plugin <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\">WordPress Beta Tester</a> (elige la opción de «desarrollo temprano»).</li><li>O <a href=\"https://wordpress.org/wordpress-5.6-beta3.zip\">descarga la beta aquí (zip)</a>.</li></ul>\n\n\n\n<p>El objetivo actual para la versión final es el 8 de diciembre de 2020. Esto significa que <strong>solo quedan cinco semanas</strong>, así que necesitamos tu ayuda para asegurar que esta versión se pruebe adecuadamente.</p>\n\n\n\n<p>Graicas a todos los contribuidores que han probado la versión de desarrollo de <a href=\"https://es.wordpress.org/2020/10/28/wordpress-5-6-beta-2/\" data-type=\"post\" data-id=\"5479\">la beta 2</a> y han compartido sus impresiones. Hacer pruebas para encontrar fallos es una parte importante del pulido de cada versión, y un modo fantático de contribuir a WordPress.</p>\n\n\n\n<h2><strong>Algunos puntos a destacar</strong></h2>\n\n\n\n<p>Desde la beta 2 se han corregido <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F28%2F2020..11%2F03%2F2020&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">20 fallos</a>. Aquí tienes un resumen de unos cuantos de los pocos cambios incluidos en la beta 3:</p>\n\n\n\n<ul><li>Añadidos patrones de bloques para los temas Twenty Twenty (ver <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51098\">#51098</a>) y Twenty Nineteen (ver <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51099\">#51099</a>).</li><li>Añadida compatibilidad de tamas para navigation-widgets (ver <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51445\">#51445</a>).</li><li>Corregidas barras incorrectas en la URL si la superior está vacía en la API REST (ver <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/44745\">#44745</a>).</li><li>Añadida una prueba a la salud del sitio para verificar que la cabecera <code>Authorization</code> está funcionando como es de esperar en las contraseñas de aplicación (ver <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51638\">#51638</a>).</li><li>Corregidos otros 10 fallos adicionales en el editor de bloques (ver <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://github.com/WordPress/gutenberg/pull/26588\">#26588</a>).</li></ul>\n\n\n\n<p>Para ver en detalle todas las características de cada versión de Gutenberg echa un vistazo a las entradas de las versiones: <a href=\"https://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">8.6</a>, <a href=\"https://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a>, <a href=\"https://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>, <a href=\"https://make.wordpress.org/core/2020/09/03/whats-new-in-gutenberg-2-september/\">8.9</a>, <a href=\"https://make.wordpress.org/core/2020/09/16/whats-new-in-gutenberg-16-september/\">9.0</a>, <a href=\"https://make.wordpress.org/core/2020/10/01/whats-new-in-gutenberg-30-september/\">9.1</a>, <a href=\"https://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">9.2</a> y <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v9.3.0-rc.1\">9.3</a>.</p>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Notas para desarrolladores</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.6 tiene montones de detalles para mejorar la experiencia del desarrollador. Para mantenerte al día suscríbete al <a href=\"https://make.wordpress.org/core/\">blog de Make WordPress Core</a> y presta especial atención a las <a href=\"https://make.wordpress.org/core/tag/5-6+dev-notes/\">notas para desarrolladores</a> par estar al día de estos y otros cambios que podrían afectar a tus productos.</p>\n\n\n\n<h2>Cómo puedes ayudar</h2>\n\n\n\n<p>¿Hablas otro idioma que no sea el inglés? ¡<a href=\"https://translate.wordpress.org/projects/wp/dev/\">Ayuda a traducir WordPress a más de 100 idiomas</a>!</p>\n\n\n\n<p>Si crees que has encontrado un fallo, por favor, publícalo en el área <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta</a> de los foros de soporte. ¡Nos encantaría saber de ti! Si te sientes cómodo escribiendo un informe de un fallo reproducible, <a href=\"https://core.trac.wordpress.org/newticket\">envía uno al trac de WordPress</a>. Ahí es donde también puedes encontrar una lista de <a href=\"https://core.trac.wordpress.org/tickets/major\">fallos conocidos</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://es.wordpress.org/2020/11/03/wordpress-5-6-beta-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:82:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress 5.5.3 – Actualización de mantenimiento\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://es.wordpress.org/2020/10/31/wordpress-5-5-3-actulizacion-de-mantenimiento/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://es.wordpress.org/2020/10/31/wordpress-5-5-3-actulizacion-de-mantenimiento/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 31 Oct 2020 08:44:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:15:\"Actualizaciones\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"5.5.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:5:\"5.5.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://es.wordpress.org/?p=5495\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:349:\"WordPress 5.5.3 ya está disponible.  Esta versión de mantenimiento corrige un fallo introducido en WordPress 5.5.2 que hacía imposible instalar WordPress en un sitio nuevo que no tenga configurada la conexión con la base de datos. Esta versión no afecta a sitios en los que la conexión con la base de datos ya está configurada, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Fernando Tellado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3547:\"\n<p>WordPress 5.5.3 ya está disponible. </p>\n\n\n\n<p>Esta versión de mantenimiento corrige un fallo introducido en WordPress 5.5.2 que hacía imposible instalar WordPress en un sitio nuevo que no tenga configurada la conexión con la base de datos. Esta versión no afecta a sitios en los que la conexión con la base de datos ya está configurada, por ejemplo, mediante instaladores a un clic o en un archivo <code>wp-config.php</code> existente.</p>\n\n\n\n<h2>Problema con 5.5.3-alpha</h2>\n\n\n\n<p>Hoy mismo — aproximadamente entre las 15:30 y las 16:00 UTC — el sistema de actualización automática de WordPress actualizó algunos sitios desde la versión 5.5.2 a la 5.5.3-alpha. Esta actualización automática fue debida a un error en la API de actualizaciones provocada por las preparaciones de la versión 5.5.3 (<a href=\"https://wordpress.org/support/topic/wordpress-5-5-3-alpha-auto-updates/\">ve más aquí</a>). La versión 5.5.3-alpha en este punto era funcionalmente idéntica a la 5.5.2 ya que no se había empezado ningún trabajo de desarrollo en la 5.5.3; no obstante, puede que se hayan hechoo los siguientes cambios en tu sitio:</p>\n\n\n\n<ul><li>Los temas por defecto «Twenty» instalados como parte del paquete de la versión de lanzamiento previo.</li><li>El plugin «Akismet» instalado com parte del paquete de la versiónn de lanzamiento previo.</li></ul>\n\n\n\n<p>Estos temas y plugins no se activvan así que siguen no funcionales a menos que los hubieses instalado previamente. Es seguro borrar estas características si prefieres no usarlos. </p>\n\n\n\n<p>Si no estás en la versión 5.5.2, o has desactivado las actualizaciones automáticas de versiones menores, por favor, actualiza manualmente a la versión 5.5.3 descargando WordPress 5.5.3 o visitando tu «Escritorio → Actualizacions» y haz clic en «Actualizar ahora».</p>\n\n\n\n<p>Para más detalles técnicos sobre el problema hemos <a href=\"https://make.wordpress.org/core/2020/10/30/wordpress-5-5-3-release-some-technical-details/\">publicado detalles en el blog de desarrollo del núcleo</a>.</p>\n\n\n\n<h2>¡Agradecimientos y reconocimientos!</h2>\n\n\n\n<p>Gracias a los que han contribuido a la versión 5.5.3: <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/barry/\">@barry</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>, <a href=\"https://profiles.wordpress.org/clorith/\">@clorith</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">@hellofromtonya</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">@jeffpaul</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">@johnbillion</a>, <a href=\"https://profiles.wordpress.org/garubi/\">@garubi</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">@metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">@mukesh27</a>, <a href=\"https://profiles.wordpress.org/otto42/\">@otto42</a>, <a href=\"https://profiles.wordpress.org/punitsoftac/\">@punitsoftac</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">@whyisjake</a> y <a href=\"https://profiles.wordpress.org/xknown/\">@xknown</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://es.wordpress.org/2020/10/31/wordpress-5-5-3-actulizacion-de-mantenimiento/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:85:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WordPress 5.5.2 – Actualización de seguridad y mantenimiento\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://es.wordpress.org/2020/10/30/wordpress-5-5-2-actualizacion-de-seguridad-y-mantenimiento/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://es.wordpress.org/2020/10/30/wordpress-5-5-2-actualizacion-de-seguridad-y-mantenimiento/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Oct 2020 08:31:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:15:\"Actualizaciones\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:13:\"Mantenimiento\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"Seguridad\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:5:\"5.5.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://es.wordpress.org/?p=5492\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:425:\"¡Ya está disponible WordPress 5.5.2! Esta actualización de seguridad y manteniniento incluye 14 correcciones de fallos además de 10 correcciones de seguridad. Al ser una actualización de seguridad se recomienda que actualices tu ssitios inmediatamente. También se han actualizado todas las versiones desde WordPress 3.7. WordPress 5.5.2 es una actualización de seguridad y mantenimiento de ciclo corto. La […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Fernando Tellado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7847:\"\n<p>¡Ya está disponible WordPress 5.5.2!</p>\n\n\n\n<p>Esta actualización de seguridad y manteniniento incluye <a href=\"https://core.trac.wordpress.org/query?milestone=5.4.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priorityhttps://core.trac.wordpress.org/query?milestone=5.5.2&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">14 correcciones de fallos</a> además de 10 correcciones de seguridad. Al ser una <strong>actualización de seguridad</strong> se recomienda que actualices tu ssitios inmediatamente. También se han actualizado todas las versiones desde WordPress 3.7.</p>\n\n\n\n<p>WordPress 5.5.2 es una actualización de seguridad y mantenimiento de ciclo corto. La siguiente versión mayor será la 5.6.</p>\n\n\n\n<p>Puedes descargar WordPress 5.5.2 desde WordPress.org, o visitar tu «Escritorio → Actualizaciones» y hacer clic en «Actualizar ahora».</p>\n\n\n\n<p>Si tienes sitios con las actualizaciones en segundo plano activas ya ha empezado el proceso de actualización.</p>\n\n\n\n<h2>Actualizaciones de seguridad</h2>\n\n\n\n<p>Hay 10 problemas de seguridad que afectan a las versiones de WordPress 5.5.1 y anteriores. Si aún no has actualizado a la versión 5.5, todas las versiones de WordPress dese la 3.7 también se han actualizado para corregir los siguientes problemas de seguridad:</p>\n\n\n\n<ul><li>Gracias a Alex Concha del equipo de seguridad de WordPress por su trabajo en reforzar la deserialización de peticiones.</li><li>Gracias a David Binovec por una corrección para desactivar incrustados spam desde sitios desactivados en una red multisitio.</li><li>Gracias a Marc Montas de Sucuri por informar de un problema que podría llevar a un XSS de variables globales.</li><li>Gracias a Justin Tran que informó de un problema sobre el escalado de privilegios en XML-RPC. También descubrió e informó de un problema de escalado de privilegios al comentar a través de XML-RPC.</li><li>Gracias a Omar Ganiev que informó de un método por el que un ataque DoS podría llevar a RCE.</li><li>Gracias a Karim El Ouerghemmi de <a href=\"https://www.ripstech.com/\">RIPS</a> que mostró un método para almacenar XSS en slugs de entradas.</li><li>Gracias a Slavco por informar, y a Karim El Ouerghemmi por confirmarlo, de un método para saltarse metas protegidos que podrían llevar a un borrado arbitrario de archivos.</li><li>Gracias a Erwan LR de <a href=\"https://wpscan.com/\">WPScan</a> que difundió responsablemente un método que podría llevar a CSRF.</li><li>Y un agradecimiento especial a <a href=\"https://profiles.wordpress.org/zieladam/\">@zieladam</a> que ha sido parte integral de muchas de las actualizaciones y parches de esta versión.</li></ul>\n\n\n\n<p>Gracias a todos los que han informado por <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">divulgar de manera privada las vulnerabilidades</a>. Esto dió al equipo de seguridad tiempo para corregir las vulnerabilidades antes que pudiesen atacarse los sitios WordPress.</p>\n\n\n\n<p>Para más información revisa <a href=\"https://core.trac.wordpress.org/query?milestone=5.5.2&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">la lista completa de cambios</a> en el Trac, o echa un vistazo a la <a href=\"https://wordpress.org/support/wordpress-version/version-5-5-2/\">página de documentación de la versión 5.5.2 en HelpHub</a>.</p>\n\n\n\n<h2>¡Agradecimientos y reconocimientos!</h2>\n\n\n\n<p>La versión 5.5.2 la lideró <a href=\"https://profiles.wordpress.org/whyisjake/\">@whyisjake</a> y el siquiente equipo: <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">@johnbillion</a>, <a href=\"https://profile.wordpress.org/metalandcoffee\">@metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">@noisysocks</a> <a href=\"https://profiles.wordpress.org/planningwrite/\">@planningwrite</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">@sarahricker</a> y <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a>.</p>\n\n\n\n<p>Además de los investigadores de seguridad y miembros del equipo mencionados arriba, gracias a todos los que ayudaron a que WordPress 5.5.2 esté disponible:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey “Rarst” Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard/\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davisshaver/\">Davis Shaver</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kellybleck/\">kellybleck</a>, <a href=\"https://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/regankhadgi/\">Regan Khadgi</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/smub/\">Syed Balkhi</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I. Chowdhury</a>, <a href=\"https://profiles.wordpress.org/vinayakanivase/\">Vinayak Anivase</a> y <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://es.wordpress.org/2020/10/30/wordpress-5-5-2-actualizacion-de-seguridad-y-mantenimiento/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:73:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Haz la encuesta anual de WordPress de 2020 (¡y ve los resultados de 2019!)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://es.wordpress.org/2020/10/28/haz-la-encuesta-anual-de-wordpress-de-2020-y-ve-los-resultados-de-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://es.wordpress.org/2020/10/28/haz-la-encuesta-anual-de-wordpress-de-2020-y-ve-los-resultados-de-2019/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Oct 2020 11:16:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Encuestas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://es.wordpress.org/?p=5482\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:369:\"Durante muchos años, los entusiastas de WordPress han completado una encuesta anual para compartir sus experiencias y sensaciones acerca de WordPress. Se han compartido resultados interesantes de esta encuesta en el informe anual de State of the Word y en las noticias sobre WordPress. Esta encuesta ayuda a los que hacen WordPress a comprender más cómo […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Fernando Tellado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8365:\"\n<p>Durante muchos años, los entusiastas de WordPress han completado una encuesta anual para compartir sus experiencias y sensaciones acerca de WordPress.</p>\n\n\n\n<p>Se han compartido resultados interesantes de esta encuesta en el informe anual de <a href=\"https://wordpress.tv/tag/state-of-the-word/\" target=\"_blank\" rel=\"noreferrer noopener\">State of the Word</a> y en las noticias sobre WordPress. </p>\n\n\n\n<p>Esta encuesta ayuda a los que hacen WordPress a comprender más cómo se utiliza el software, y quién lo utiliza.</p>\n\n\n\n<p>La encuesta etambién ayuda a los líderes del proyecto de código abierto WordPress a aprender más sobre la experiencia de los contribuidores.</p>\n\n\n\n<p>Para asegurarnos que <strong>tu</strong> experiencia con WordPress está representada en los resultados de la encuesta de 2020.</p>\n\n\n\n<div class=\"wp-block-buttons aligncenter\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background no-border-radius\" href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-spanish\" style=\"background-color:#4582a6\" target=\"_blank\" rel=\"noreferrer noopener\">¡Haz la encuesta anual de 2020! (Español)</a></div>\n</div>\n\n\n\n<p>¡También puedes hacer la encuesta en <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-french\" target=\"_blank\" rel=\"noreferrer noopener\">francés</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-german\" target=\"_blank\" rel=\"noreferrer noopener\">alemán</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-japanese\" target=\"_blank\" rel=\"noreferrer noopener\">japonés</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-russian\" target=\"_blank\" rel=\"noreferrer noopener\">ruso</a> e <a rel=\"noreferrer noopener\" href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-english\" target=\"_blank\">inglés</a>! La encuesta estará abierta durante 6 semanas, y los resultados se publicarán en este blog.</p>\n\n\n\n<h2>Resultados de la encuesta de 2019</h2>\n\n\n\n<div class=\"wp-block-buttons aligncenter\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background no-border-radius\" href=\"https://docs.google.com/presentation/d/1FI7eEvSB5SHTSILIBpwOmH9rBffgD6mFnnqSkrEScYo/edit\" style=\"background-color:#4582a6\" target=\"_blank\" rel=\"noreferrer noopener\">Ve los resultados de la encuesta de 2019 (diapositivas)</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background no-border-radius\" href=\"https://www.dropbox.com/sh/bq62sficymopgos/AAA-wx73cDviVG84NSCTgjNDa?dl=0\" style=\"background-color:#4582a6\" target=\"_blank\" rel=\"noreferrer noopener\">Descarga los resultados de la encuesta de 2019 (PDF o PPT)</a></div>\n</div>\n\n\n\n<p>La encuesta de 2019 incluyó algunas nuevas preguntas para entender mejor por qué la gente sigue usando WordPress como su CMS favorito, así como una sección dirigida a los contribuidores a WordPress. Por primera vez, en 2019 esta encuesta se tradujo a 5 idiomas: francés, alemán, japonés, ruso y español.</p>\n\n\n\n<p>La primera encuesta a contribuidores de WordPress se llevó a cabo en 2015 pero, desafortunadamente, los resultados no se publicaron. Este informe inlcuye los resultados de la encuesta de contribuidores tanto de 2015 como de 2019. </p>\n\n\n\n<h2>Segmentos de la encuesta</h2>\n\n\n\n<p>Los principales grupos incluidos en la encuesta son: Profesionales de WordPress, usuarios de WordPress Users y otros. </p>\n\n\n\n<p>El grupo de <strong>profesionales de WordPress</strong> se refiere a: quienes trabajan en una empresa que diseña/desarrolla webs; utiliza WordPress para crear webs y/o blogs para otros; diseñan o desarrollan temas, plugins y otras herramientas personalizadas para sitios WordPress; o son diseñadores, desarrolladores, u otros profesionales web que trabajan con WordPress.</p>\n\n\n\n<p>Este grupo de profesionales de WordPress además está dividido en subgrupos de <strong>profesionales de empresa WordPress</strong> (los que trabajan para una empresa que diseña/desasrrolla webs) y <strong>autónomos/aficionados de WordPress</strong> (todos los demás tipos de profesionales).</p>\n\n\n\n<p>El grupo de <strong>usuarios de WordPress</strong> se refiere a: quienes tienen o mantienen un blog que está creado con WordPress, tienen o mantienten una web que está creada con WordPress; escriben o contribuyen en un blog/web creado con WordPress; usan WordPress en educación como profesor; usan WordPress en educación como estudiante, o están aprendiendo a crear webs usando WordPress.</p>\n\n\n\n<p>El grupo de <strong>otros</strong> se refiere a quienes no se identifican a sí mismos con alguna de las demás opciones ofrecidas en la pregunta, «¿Cuáles de las siguientes opciones describe mejor cómo usas WordPress?»</p>\n\n\n\n<h2>Resumen de resultados de la encuesta de 2019</h2>\n\n\n\n<p>WordPress sigue siendo la plataforma elegida para futuros proyectos entre los encuestados. Por abrumadora mayoría, los motivos citados para esto son que WordPress es el CMS que ya conoce la gente, y que la comunidad que lo apoya es muy valiosa. Profesionales y usuarios informan de niveles similares de frustracción con las actualizaciones y con Gutenberg. A ambos grupos también les encanta lo fácil que les parece utilizar WordPress.</p>\n\n\n\n<p>La cantidad de profesionales que informan haber ofrecido una experiencia altamente personalizada a sus clientes se ha incrementado sustancialmente, mientras que, al mismo tiempo, la cantidad de tiempo empleada para crear esos sitios se ha reducido. Independientemente de las frustraciones que sienten con diversas funcionalidades, esto parece indicar que la facilidad de uso está en alza.</p>\n\n\n\n<p>Hay más detalles sobre estos sentimientos, uso y otros temas interesantes en el informe: <a href=\"https://docs.google.com/presentation/d/1FI7eEvSB5SHTSILIBpwOmH9rBffgD6mFnnqSkrEScYo/edit#slide=id.g71a4c4edc6_3_232\" target=\"_blank\" rel=\"noreferrer noopener\">¡échale un vistazo!</a></p>\n\n\n\n<h1>Antes de irte: ¡haz la encuesta de 2020!</h1>\n\n\n\n<p>Saber los por qués y los cómo la gente usa WordPress ayudan a los que hacen WordPress a tener en cuenta tus necesidades y preferencias. </p>\n\n\n\n<p>La encuesta estará abierta durante 6 semanas, y los resultados se publicarán en este blog. Todos los datos son anónimos: no se asociará ninguna dirección IP o correo electrónico con los resultados publicados. Para aprender más sobre las prácticas de privacidad de WordPress.org echa un vistazo a la <a rel=\"noreferrer noopener\" href=\"https://es.wordpress.org/about/privacy/\" target=\"_blank\">política de priva</a><a href=\"https://es.wordpress.org/about/privacy/\" target=\"_blank\" rel=\"noreferrer noopener\">c</a><a rel=\"noreferrer noopener\" href=\"https://es.wordpress.org/about/privacy/\" target=\"_blank\">idad</a>.</p>\n\n\n\n<p>Como el último año, la encuesta de 2020 se promocionará en un banner en WordPress.org, así como por los entusiastas de WordPress. Cada encuesta traducida se promocionará en banners en sus sitios en su idioma en WordPress.org. Por favor, ¡anima a tus colegas de WordPress y seguidores en redes sociales a que hagan también la encuesta!</p>\n\n\n\n<p>Para asegurar que tu experiencia con WordPress está representada en los resultados de la encuesta de 2020… ¡no lo dejes para más tarde!</p>\n\n\n\n<div class=\"wp-block-buttons aligncenter\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background no-border-radius\" href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-spanish\" style=\"background-color:#4582a6\" target=\"_blank\" rel=\"noreferrer noopener\">¡Haz la encuesta anual de 2020! (Español)</a></div>\n</div>\n\n\n\n<p>(También está disponible en <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-french\" target=\"_blank\" rel=\"noreferrer noopener\">francés</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-german\" target=\"_blank\" rel=\"noreferrer noopener\">alemán</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-japanese\" target=\"_blank\" rel=\"noreferrer noopener\">japonés</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-russian\" target=\"_blank\" rel=\"noreferrer noopener\">ruso</a> e <a rel=\"noreferrer noopener\" href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-english\" target=\"_blank\">inglés</a>)</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://es.wordpress.org/2020/10/28/haz-la-encuesta-anual-de-wordpress-de-2020-y-ve-los-resultados-de-2019/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:79:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.6 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://es.wordpress.org/2020/10/28/wordpress-5-6-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://es.wordpress.org/2020/10/28/wordpress-5-6-beta-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Oct 2020 10:41:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:15:\"Actualizaciones\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://es.wordpress.org/?p=5479\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:378:\"¡Ya está disponible la beta 2 de WordPress 5.6 para probarla! Este software está aún en desarrollo, a sí que no es recomendable ejecutar esta versión en un sitio en producción. Plantéate configurar un sitio de pruebas para probar la nueva versión. Puedes probar WordPress 5.6 beta 2 de dos maneras: Prueba el plugin WordPress Beta Tester (elige […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Fernando Tellado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4008:\"\n<p>¡Ya está disponible la beta 2 de WordPress 5.6 para probarla!</p>\n\n\n\n<p><strong>Este software está aún en desarrollo,</strong> a sí que no es recomendable ejecutar esta versión en un sitio en producción. Plantéate configurar un sitio de pruebas para probar la nueva versión.</p>\n\n\n\n<p>Puedes probar WordPress 5.6 beta 2 de dos maneras:</p>\n\n\n\n<ul><li>Prueba el plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> (elige la opción «versión avanzada»)</li><li>O <a href=\"https://wordpress.org/wordpress-5.6-beta2.zip\" target=\"_blank\" rel=\"noreferrer noopener\">descarga aquí la beta (zip)</a>.</li></ul>\n\n\n\n<p>WordPress 5.6 está programada para el 8 de diciembre de 2020 y <strong>¡necesitamos tu ayuda para llegara tiempo!</strong></p>\n\n\n\n<p>Gracias a todos los contribuidores que han probado la versión de desarrollo de la <a href=\"https://es.wordpress.org/2020/10/21/wordpress-5-6-beta-1/\" data-type=\"post\" data-id=\"5467\">beta 1</a> y han enviado sus impresiones. Probar para buscar fallos es una parte importante y un modo fantástico de contribuir a WordPress.</p>\n\n\n\n<h2 id=\"block-15d6d57f-905d-4a47-9f66-839468a5375a\">Algunos puntos destacados</h2>\n\n\n\n<p id=\"block-85da84ec-c841-42f9-8d3b-1a4537a61d10\">Desde la beta 1 se han corregido <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F21%2F2020..10%2F27%2F2020&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">53 fallos</a>. Aquí tienes un resumen de los pocos cambios incluidos en la beta 2:</p>\n\n\n\n<ul><li>Se han corregido 6 fallos adicionales en el editor de bloques (ver <a href=\"https://github.com/WordPress/gutenberg/pull/26442\">#26442</a>).</li><li>Unificado el diseño de los formularios de búsqueda y los resultados en toda la administración (<a href=\"https://core.trac.wordpress.org/ticket/37353\">#37353</a>).</li><li>Incluido el bloque Gutenbert de <code>incrustado</code> en el núcleo (<a href=\"https://core.trac.wordpress.org/ticket/51531\">#51531</a>).</li><li>Actualizadas las versiones de Twemoji (<a href=\"https://core.trac.wordpress.org/ticket/51356\">#51356</a>), React (<a href=\"https://core.trac.wordpress.org/ticket/51505\">#51505</a>) y Akismet (<a href=\"https://core.trac.wordpress.org/ticket/51610\">#51610</a>).</li><li>Añadidas mejoras de accesibilidad (entre otras cosas) a las contreseñas de aplicación (<a href=\"https://core.trac.wordpress.org/ticket/51580\">#51580</a>).</li><li>Añadido indicador a los detalles de la imagen en las imágenes adjuntas a una opción del sitio (<a href=\"https://core.trac.wordpress.org/ticket/42063\">#42063</a>).</li></ul>\n\n\n\n<h2>Notas para desarrolladores</h2>\n\n\n\n<p>WordPress 5.6 tiene montones de detalles para mejorar la experiencia del desarrollador. Para mantenerte al día suscríbete al <a href=\"https://make.wordpress.org/core/\">blog de Make WordPress Core</a> y presta especial atención a las <a href=\"https://make.wordpress.org/core/tag/5-6+dev-notes/\">notas para desarrolladores</a> par estar al día de estos y otros cambios que podrían afectar a tus productos.</p>\n\n\n\n<h2>Cómo puedes ayudar</h2>\n\n\n\n<p>¿Hablas otro idioma que no sea el inglés? ¡<a href=\"https://translate.wordpress.org/projects/wp/dev/\">Ayuda a traducir WordPress a más de 100 idiomas</a>!</p>\n\n\n\n<p>Si crees que has encontrado un fallo, por favor, publícalo en el área <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta</a> de los foros de soporte. ¡Nos encantaría saber de ti! Si te sientes cómodo escribiendo un informe de un fallo reproducible, <a href=\"https://core.trac.wordpress.org/newticket\">envía uno al trac de WordPress</a>. Ahí es donde también puedes encontrar una lista de <a href=\"https://core.trac.wordpress.org/tickets/major\">fallos conocidos</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://es.wordpress.org/2020/10/28/wordpress-5-6-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:76:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.6 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://es.wordpress.org/2020/10/21/wordpress-5-6-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://es.wordpress.org/2020/10/21/wordpress-5-6-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Oct 2020 12:04:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:3:\"5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://es.wordpress.org/?p=5467\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:370:\"¡Ya está disponible la beta 1 de WordPress 5.6 para probarla! Este software está aún en desarrollo, a sí que no es recomendable ejecutar esta versión en un sitio en producción. Plantéate configurar un sitio de pruebas para probar la nueva versión. Puedes probar WordPress 5.6 beta 1 de dos maneras: Prueba el plugin WordPress Beta Tester (elige […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Fernando Tellado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7433:\"\n<p>¡Ya está disponible la beta 1 de WordPress 5.6 para probarla!</p>\n\n\n\n<p><strong>Este software está aún en desarrollo,</strong> a sí que no es recomendable ejecutar esta versión en un sitio en producción. Plantéate configurar un sitio de pruebas para probar la nueva versión.</p>\n\n\n\n<p>Puedes probar WordPress 5.6 beta 1 de dos maneras:</p>\n\n\n\n<ul><li>Prueba el plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> (elige la opción «versión avanzada»)</li><li>O <a href=\"https://wordpress.org/wordpress-5.6-beta1.zip\" target=\"_blank\" rel=\"noreferrer noopener\">descarga aquí la beta (zip)</a>.</li></ul>\n\n\n\n<p>El objetivo actual para la versión final es el 8 de diciembre de 2020. Esto son solo <strong>siete semanas</strong>. Tu ayuda es necesaria para asegurar que esta versión se pruebe adecuadamente.</p>\n\n\n\n<h2>Mejoras en el editor</h2>\n\n\n\n<p>WordPress 5.6 incluye siete actualizaciones del plugin Gutenberg. Aquí tienes unas cuantas de las mejoras más relevantes:</p>\n\n\n\n<ul><li>Compatibilidad mejorada con la ubicación de los vídeos en los bloques de fondo.</li><li>Mejoras en los patrones de bloques, incluidas cadenas traducibles.</li><li>Contador de caracteres en el panel de información, mejoras en la navegación con el teclado y otros ajustes para ayudar a los usuarios a facilitarles la vida.</li><li>Interfaz mejorada para la funcionalidad de arrastrar y soltar, así como en la de mover bloques.</li></ul>\n\n\n\n<p>Para ver todas las características de cada actualización en detalle echa un vistazo a las entradas de las versiones: <a href=\"https://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">8.6</a>, <a href=\"https://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a>, <a href=\"https://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>, <a href=\"https://make.wordpress.org/core/2020/09/03/whats-new-in-gutenberg-2-september/\">8.9</a>, <a href=\"https://make.wordpress.org/core/2020/09/16/whats-new-in-gutenberg-16-september/\">9.0</a>, <a href=\"https://make.wordpress.org/core/2020/10/01/whats-new-in-gutenberg-30-september/\">9.1</a> y 9.2 <em>(enlace en camino)</em>.</p>\n\n\n\n<h2>Mejoras en el núcleo</h2>\n\n\n\n<h3><strong>Un nuevo tema por defecto</strong></h3>\n\n\n\n<p>El tema por defecto vuelve a su renovación anual con<a href=\"https://make.wordpress.org/core/2020/09/23/introducing-twenty-twenty-one/\"> Twenty Twenty-One</a>. Este tema incluye un elegante y ligero diseño, que quiere esta <a href=\"https://www.w3.org/TR/UNDERSTANDING-WCAG20/conformance.html#uc-levels-head\">listo para AAA</a>.</p>\n\n\n\n<h3><strong>Opción de actualización automática para versiones mayores</strong></h3>\n\n\n\n<p>La muchas veces anticipada opción de actualizar versiones mayores de WordPress verá la luz en esta versión. Con esta funcionalidad puedes elegir hacer que se actualicen en segundo plano las versiones mayores de WordPress, sin tener que molestar a tus usuarios.</p>\n\n\n\n<h3><strong>Compatibilidad mejorada con PHP 8</strong></h3>\n\n\n\n<p>La siguiente versión mayor de PHP, la versión 8.0.0, está programada para lanzarse unos pocos días antes de WordPress 5.6. El proyecto WordPress tiene una larga historia de ser compatible con las nuevas versiones de PHP tan pronto como sea posible, y esta versión no será diferente.</p>\n\n\n\n<p>Como PHP 8 es una versión mayor, se permiten cambios que rompan la compatibilidad histórica o la compatibilidad con diversas APIs.. Los contribuidores han estado trabajando duro <a href=\"https://make.wordpress.org/core/2020/10/06/call-for-testing-php-8-0/\">corrigiendo las incompatibilidades conocidas con with PHP 8</a> en WordPress durante el ciclo de la versión 5.6.</p>\n\n\n\n<p>Mientras se corrijan todos los problemas que se detecten en WordPress, tendrás que verificar que todos tus plugins y temas también son compatibles con PHP 8 antes de actualizar. Estate atento al <a href=\"https://make.wordpress.org/core/\">blog de Making WordPress Core</a> en las próximas semanas para tener información más detallada sobre lo que está por venir.</p>\n\n\n\n<h3>Contraseñas de aplicación para identificación en la API REST</h3>\n\n\n\n<p>Desde que se incluyó la API REST en el núcleo, solo ha estado disponible la identificación mediante cookies y nonces (sin usar plugins). Este método de identificación puede ser una experiencia frustrante para los desarrolladores, a menudo limitando cómo pueden interactuar las aplicaciones con <em>endpoints</em> protegidos.</p>\n\n\n\n<p>Con la introducción de las <a href=\"https://make.wordpress.org/core/2020/09/23/proposal-rest-api-authentication-application-passwords/\">contraseñas de aplicación</a> en WordPress 5.6, esta frustracción desaparece, así como la necesidad de saltar obstáculos para volver a identificarse cuando caducan las cookies. Pero no te preocupes, la identificación mediante cookies y nonces seguirá en WordPress tal cual está, si aún no estás listo para el cambio.</p>\n\n\n\n<p>Las contraseñas de aplicación son específicas del usuario, facilitando la concesión o revocación de acceso a usuarios o aplicaciones específicos (individual o globalmente). Debido a información como «Utilizado por última vez» del usuario conectado, también es fácil hacer seguimiento de cedenciales inactivas o actores maliciosos desde ubicaciones inesperadas.</p>\n\n\n\n<h3><strong>Mejor accesibilidad</strong></h3>\n\n\n\n<p>En cada versión WordPress trabaja duro para mejorar la accesibilidad. La versión 5.6 no es una excepción e incluirá una buena cantidad de correcciones y mejoras de accesibilidad. Échales un vistazo:</p>\n\n\n\n<ul><li>La selección del bloque de anuncio cambia manualmente en las ventanas.</li><li>Evitar en enfoque en el botón de selección del bloque en cada carga.</li><li>Evitar la carga del área de texto del portapapeles dentro del botón.</li><li>Corregir la pérdida de enfoque en el menú desplegable al usar las teclas de flechas con Safari y Voiceover</li><li>Corregir los problemas al arrastrar varios bloques, lo que resultaba en bloques insertados en la posición incorrecta..</li><li>Corregir la descripción aria incorrecdta en la vista de lista de bloques.</li><li>Añadir la navegación por fechas en el menú de vista previa.</li><li>Evitar que se puedan enfocar los enlaces dentro de un componente desactivado.</li></ul>\n\n\n\n<h2><strong>Cómo puedes ayudar</strong></h2>\n\n\n\n<p>¿Hablas otro idioma que no sea el inglés? ¡<a href=\"https://translate.wordpress.org/projects/wp/dev/\">Ayuda a traducir WordPress a más de 100 idiomas</a>!</p>\n\n\n\n<p>Si crees que has encontrado un fallo, por favor, publícalo en el área <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta</a> de los foros de soporte. ¡Nos encantaría saber de ti! Si te sientes cómodo escribiendo un informe de un fallo reproducible, <a href=\"https://core.trac.wordpress.org/newticket\">envía uno al trac de WordPress</a>. Ahí es donde también puedes encontrar una lista de <a href=\"https://core.trac.wordpress.org/tickets/major\">fallos conocidos</a>.</p>\n\n\n\n<p><em>Gracias a </em><a href=\'https://profiles.wordpress.org/fernandot/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>fernandot</a> por editar esta entrada.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://es.wordpress.org/2020/10/21/wordpress-5-6-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress 5.5.1 – Actualización de mantenimiento\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://es.wordpress.org/2020/09/02/wordpress-5-5-1-actualizacion-de-mantenimiento/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://es.wordpress.org/2020/09/02/wordpress-5-5-1-actualizacion-de-mantenimiento/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Sep 2020 06:37:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://es.wordpress.org/?p=5363\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:436:\"¡Ya está disponible WordPress 5.5.1! Esta actualización de mantenimiento contiene 34 correcciones a fallos, 5 mejoras y 5 correcciones a fallos del editor de bloques. Estos fallos afectan a la versión 5.5 de WordPress, así que querrás actualizar. Puedes descargar WordPress 5.5.1 directamente, o visitar la pantalla de Escritorio → Actualizaciones y hacer clic en Actualizar ahora. Si tus sitios son compatibles […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Fernando Tellado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8847:\"\n<p>¡Ya está disponible WordPress 5.5.1!</p>\n\n\n\n<p>Esta actualización de mantenimiento contiene <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.5.1&group=status&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\" target=\"_blank\">34 correcciones a fallos, 5 mejoras</a> y <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/24828\" target=\"_blank\">5 correcciones a fallos</a> del editor de bloques. Estos fallos afectan a la versión 5.5 de WordPress, así que querrás actualizar.</p>\n\n\n\n<p>Puedes <a href=\"https://wordpress.org/wordpress-5.5.1.zip\">descargar WordPress 5.5.1 directamente</a>, o visitar la pantalla de<strong> Escritorio → Actualizaciones</strong> y hacer clic en <strong>Actualizar ahora</strong>. Si tus sitios son compatibles con las actualizaciones automáticas en segundo plano ya ha empezado el proceso de actualización.</p>\n\n\n\n<p>WordPress 5.5.1 es una versión de mantenimiento de ciclo corto. La siguiente versión mayor será la <a href=\"https://make.wordpress.org/core/5-6/\">version 5.6</a>.</p>\n\n\n\n<p>Para ver la lista completa de cambios puedes navegar por la <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.5.1&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">lista en el Trac</a>, leer las entradas de la versión <a href=\"https://make.wordpress.org/core/2020/08/27/wordpress-5-5-1-rc1/\">5.5.1 RC1</a> y <a href=\"https://make.wordpress.org/core/2020/08/31/wordpress-5-5-1-rc2/\">5.5.1 RC2</a>, o visitar la <a href=\"https://wordpress.org/support/wordpress-version/version-5-5-1/\">página de documentación de la versión 5.5.1</a>.</p>\n\n\n\n<h2>¡Agradecimientos y reconocimientos!</h2>\n\n\n\n<p>Esta versión 5.5.1 la lideraron <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">@azhiyadev</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">@johnbillion</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">@planningwrite</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a> y <a href=\"https://profiles.wordpress.org/whyisjake/\">@whyisjake</a>.</p>\n\n\n\n<p>Gracias a todos los que han ayudado a que WordPress 5.5.1 exista: <a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey “Rarst” Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/akissz/\">Angel Hess</a>, <a href=\"https://profiles.wordpress.org/avixansa/\">avixansa</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/brianhogg/\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/chunkysteveo/\">chunkysteveo</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/demetris/\">demetris</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dushakov/\">dushakov</a>, <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/fjarrett/\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/gchtr/\">gchtr</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/khag7/\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/landau/\">landau</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/gamerz/\">Lester Chan</a>, <a href=\"https://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/gothickgothickorguk/\">Matt Gibson</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/mikeyarce/\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nabilmoqbel/\">Nabil Moqbel</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">O André</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/paddy/\">Paddy</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rajeshsingh520/\">rajeshsingh520</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/riaanlom/\">riaanlom</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/rtagliento/\">rtagliento</a>, <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a>, <a href=\"https://profiles.wordpress.org/sanzeeb3/\">Sanjeev Aryal</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"https://profiles.wordpress.org/webzunft/\">Thomas M</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/twentyzerotwo/\">TwentyZeroTwo</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina</a>, <a href=\"https://profiles.wordpress.org/wittich/\">wittich</a> y <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://es.wordpress.org/2020/09/02/wordpress-5-5-1-actualizacion-de-mantenimiento/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:76:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 5.5 «Eckstine»\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://es.wordpress.org/2020/08/11/wordpress-5-5-eckstine/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://es.wordpress.org/2020/08/11/wordpress-5-5-eckstine/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Aug 2020 22:04:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:15:\"Actualizaciones\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://es.wordpress.org/?p=5304\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:368:\"¡Aquí está! Denominada «Eckstine» en honor a Billy Eckstine, esta última y mejor versión de WordPress está disponible para descarga o actualización en tu escritorio. Velocidad Las entradas y páginas se notan más rápidas, gracias a la carga diferida de las imágenes. Las imágenes le dan a tu historia un gran impacto, pero a veces pueden hacer […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Fernando Tellado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:69684:\"\n<p>¡Aquí está! Denominada «Eckstine» en honor a Billy Eckstine, esta última y mejor versión de WordPress está disponible para <a href=\"https://es.wordpress.org/download/\" data-type=\"page\" data-id=\"2367\">descarga</a> o actualización en tu escritorio.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1000\" height=\"814\" src=\"https://es.wordpress.org/files/2020/08/Billy_duotone-1000px_quiche-sans-top.png\" alt=\"\" class=\"wp-image-5305\" srcset=\"https://es.wordpress.org/files/2020/08/Billy_duotone-1000px_quiche-sans-top.png 1000w, https://es.wordpress.org/files/2020/08/Billy_duotone-1000px_quiche-sans-top-300x244.png 300w, https://es.wordpress.org/files/2020/08/Billy_duotone-1000px_quiche-sans-top-768x625.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<div class=\"wp-block-cover has-luminous-vivid-amber-background-color has-background-dim\"><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-black-color has-text-color has-large-font-size\">Bienvenido a WordPress 5.5</p>\n\n\n\n<p class=\"has-text-align-center has-black-color has-text-color\">En WordPress 5.5 tu sitio consigue un nuevo potencial en tres áreas principales: velocidad, búsqueda y seguridad.</p>\n</div></div>\n\n\n\n<h2>Velocidad</h2>\n\n\n\n<p><strong>Las entradas y páginas se notan más rápidas, gracias a la carga diferida de las imágenes.</strong></p>\n\n\n\n<p>Las imágenes le dan a tu historia un gran impacto, pero a veces pueden hacer que tu sitio parezca lento.</p>\n\n\n\n<p>En WordPress 5.5, las imágenes esperan a cargarse hasta que están justo a punto de entrar en la visualización. El término técnico es «carga diferida».</p>\n\n\n\n<p>En los móviles, la carga diferida también puede evitar que los navegadores carguen archivos pensados para otros dispositivos. Eso puede ahorrar dinero en datos a tus lectores y ayudar a conservar la vida de la batería.</p>\n\n\n\n<h2>Búsqueda</h2>\n\n\n\n<p><strong>Saluda a tu nuevo mapa del sitio.</strong></p>\n\n\n\n<p>Ahora, por defecto, WordPress 5.5 incluye un mapa del sitio XML que ayuda a los motores de búsqueda a descubrir tus páginas más importantes desde el primer minuto que estás en vivo.</p>\n\n\n\n<p>Así que más gente encontrará tu sitio antes, dándote más tiempo para atraer, retener y convertirlos en suscriptores, clientes o lo que se ajuste a tu definición de éxito.</p>\n\n\n\n<div class=\"wp-block-cover has-luminous-vivid-amber-background-color has-background-dim\"><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"has-black-color has-text-color\">Seguridad</h2>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://es.wordpress.org/28bd26d2-2bb2-4e00-b887-7460f7679504\"></video></figure>\n\n\n\n<p class=\"has-black-color has-text-color\">Ahora puedes elegir actualizar plugins y temas automáticamente – o seleccionar solo unos pocos – desde las pantallas que siempre has utilizado.</p>\n\n\n\n<h3 class=\"has-black-color has-text-color\">Actualizaciones automáticas de plugins y temas</h3>\n\n\n\n<p class=\"has-black-color has-text-color\">Ahora puedes configurar los plugins y temas para que se actualicen automáticamente —¡o no!— en la administración de WordPress. Así que siempre sabrás que tu sitio está ejecutando el último código disponible.</p>\n\n\n\n<p class=\"has-black-color has-text-color\">También puedes activar o desactivar las actualizaciones automáticas para cada plugin o tema que tengas instalado, todo en las mismas pantallas que siempre has usado.</p>\n\n\n\n<h3 class=\"has-black-color has-text-color\">Actualizar subiendo archivos ZIP</h3>\n\n\n\n<p class=\"has-black-color has-text-color\">Si lo tuyo es actualizar los plugins y temas manualmente, ahora también es más fácil ––simplemente sube un archivo ZIP.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-cover has-luminous-vivid-amber-background-color has-background-dim\"><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"has-black-color has-text-color\">Lo más destacado del editor de bloques</h2>\n\n\n\n<p class=\"has-black-color has-text-color\">Una vez más, la última versión de WordPress contiene una larga lista de nuevas fascinantes características para el editor de bloques. Por ejemplo:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://es.wordpress.org/20da0433-3649-4509-b820-52b0228f9666\"></video></figure>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h3 class=\"has-black-color has-text-color\">Patrones de bloques</h3>\n\n\n\n<p class=\"has-black-color has-text-color\">Los nuevos patrones de bloques hacen que sea sencillo y divertido crear diseños complejos y bonitos, usando combinaciones de texto y medios que puedes mezclar y combinar para que se ajusten a tu historia.</p>\n\n\n\n<p class=\"has-black-color has-text-color\">También encontrarás patrones de bloque en una amplia variedad de plugins y temas, y continuamente se añadirán más. Elige cualquiera de ellos desde un solo lugar – ¡solo tienes que hacer clic y ya está!</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h3 class=\"has-black-color has-text-color\">El nuevo directorio de bloques</h3>\n\n\n\n<p class=\"has-black-color has-text-color\">Ahora es más fácil que nunca encontrar el bloque que necesitas. El nuevo directorio de bloques está incorporado directamente en el editor de bloques, por lo que puedes instalar nuevos tipos de bloques en tu sitio sin salir del editor.</p>\n\n\n\n<h3 class=\"has-black-color has-text-color\">Edición de imágenes integrada</h3>\n\n\n\n<p class=\"has-black-color has-text-color\">Recorta, rota y amplía tus fotos directamente desde el bloque de imágenes. Si pasas mucho tiempo con las imágenes, ¡esto podría ahorrarte horas!</p>\n</div>\n</div>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://es.wordpress.org/247d38c2-ade0-42ad-aa50-b48236ea0314\"></video></figure>\n\n\n\n<h3 class=\"has-black-color has-text-color\">Y mucho más.</h3>\n\n\n\n<p class=\"has-black-color has-text-color\">Lo anteriormente destacado es una pequeña fracción de las nuevas características del editor de bloques que acabas de instalar. ¡Abre el editor de bloques y disfruta!</p>\n</div></div>\n\n\n\n<h2>Accesibilidad</h2>\n\n\n\n<p>Cada versión añade mejoras a la experiencia de publicación accesible y eso continúa siendo cierto para WordPress 5.5.</p>\n\n\n\n<p>Ahora puedes copiar enlaces en las pantallas de medios y diálogos emergentes con un botón, en lugar de intentar resaltar una línea de texto.</p>\n\n\n\n<p>También puedes mover las cajas meta con el teclado y editar imágenes en WordPress con tu dispositivo de asistencia, ya que puede leerte las instrucciones en el editor de imágenes.</p>\n\n\n\n<div class=\"wp-block-cover has-luminous-vivid-amber-background-color has-background-dim\"><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"has-black-color has-text-color\">Para desarrolladores</h2>\n\n\n\n<p class=\"has-black-color has-text-color\">5.5 también trae un gran paquete de cambios solo para los desarrolladores.</p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h3 class=\"has-black-color has-text-color\">Bloques registrados del lado del servidor en la API REST</h3>\n\n\n\n<p class=\"has-black-color has-text-color\">La incorporación de las variables de los tipos de bloque supone que las aplicaciones JavaScript (como el editor de bloques) pueden recuperar las definiciones de cualquier bloque registrado en el servidor.</p>\n\n\n\n<h3 class=\"has-black-color has-text-color\">Definir los entornos</h3>\n\n\n\n<p class=\"has-black-color has-text-color\">WordPress tiene ahora una forma estandarizada para definir el tipo de entorno de un sitio (pruebas, producción, etc.). Recupera ese tipo con %s y ejecuta solo el código apropiado.</p>\n\n\n\n<h3 class=\"has-black-color has-text-color\">Dashicons</h3>\n\n\n\n<p class=\"has-black-color has-text-color\">La biblioteca Dashicons ha recibido su actualización final en 5.5. Añade 39 iconos al editor de bloques, junto con otros 26.</p>\n\n\n\n<h3 class=\"has-black-color has-text-color\">Paso de datos a los archivos de plantilla</h3>\n\n\n\n<p class=\"has-black-color has-text-color\">Las funciones de carga de la plantilla (<code>get_header()</code>, <code>get_template_part()</code>, etc.) tienen un nuevo argumento <code>$args</code>. Así que ahora puedes pasar el valor entero de un array de datos a esas plantillas.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h3 class=\"has-black-color has-text-color\">Más cambios para los desarrolladores</h3>\n\n\n\n<ul><li><span class=\"has-inline-color has-black-color\">La biblioteca PHPMailer acaba de tener una actualización mayor, pasando de la versión 5.2.27 a la 6.1.6.</span></li><li><span class=\"has-inline-color has-black-color\">Consigue ahora un control más minucioso de <code>redirect_guess_404_permalink()</code></span></li><li><span class=\"has-inline-color has-black-color\">Los sitios que usan OPcache de PHP verán una anulación de la caché más fiable, gracias a la nueva función <code>wp_opcache_invalidate()</code> durante las actualizaciones (incluyendo a los plugins y temas).</span></li><li><span class=\"has-inline-color has-black-color\">Ahora los tipos de contenido personalizados asociados con la taxonomía de la categoría pueden optar por admitir el término por defecto.</span></li><li><span class=\"has-inline-color has-black-color\">Ahora pueden especificarse los términos por defecto para taxonomías personalizadas en <code>register_taxonomy()</code>.</span></li><li><span class=\"has-inline-color has-black-color\">Ahora la API REST es compatible oficialmente con la especificación de valores de datos meta por defecto a través de <code>register_meta()</code>.</span></li><li><span class=\"has-inline-color has-black-color\">Encontrarás versiones actualizadas de estas bibliotecas agrupadas: SimplePie, Twemoji, Masonry, imagesLoaded, getID3, Moment.js y clipboard.js.</span></li></ul>\n</div>\n</div>\n</div></div>\n\n\n\n<h2>El equipo</h2>\n\n\n\n<p>Lideraron esa versión <a href=\"http://ma.tt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a> y <a href=\"https://dream-encode.com/blog/\">David Baumwald</a>. Ayudándoles estuvo este entusiasta equipo de la versión:</p>\n\n\n\n<ul><li><strong>Editor técnico</strong>: Ella Van Durpe (<a href=\"https://profiles.wordpress.org/ellatrix/\">@ellatrix</a>)</li><li><strong>Editor de diseño</strong>: Michael Arestad (<a href=\"https://profiles.wordpress.org/michael-arestad/\">@michael-arestad</a>)</li><li><strong>Técnico del núcleo</strong>: Sergey Biryukov (<a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a>)</li><li><strong>Técnico de medios: </strong>Andrew Ozz (<a href=\"https://profiles.wordpress.org/azaozz/\">@azaozz</a>)</li><li><strong>Técnico de accesibilidad</strong>: JB Audras (<a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>)</li><li><strong>Coordinador de documentación</strong>: Justin Ahinon (<a href=\"https://profiles.wordpress.org/justinahinon/\">@justinahinon</a>)</li><li><strong>Marketing/Coordinador de comunicaciones</strong>: Mary Baum (<a href=\"https://profiles.wordpress.org/marybaum/\">@marybaum</a>)</li></ul>\n\n\n\n<p>Se unieron al equipo durante el ciclo de actualizaciones <strong>805 generosos contribuidores voluntarios</strong> que trabajaron colectivamente en más de <strong><a href=\"https://core.trac.wordpress.org/milestone/5.5\">523</a> tiques en el Trac</strong> y <strong>más de 1660 peticiones de envío en GitHub</strong>.</p>\n\n\n\n<p>Pon una lista de reproducción de Billy Eckstine, haz clic en el botón de actualizar (o <a href=\"https://es.wordpress.org/download/\" data-type=\"page\" data-id=\"2367\">descárgala directamente</a>), y echa un vistazo a los perfiles de todos los amigos que han ayudado: <a href=\"https://profiles.wordpress.org/a2hosting/\">A2 Hosting</a>, <a href=\"https://profiles.wordpress.org/a4jpcom/\">a4jp . com</a>, <a href=\"https://profiles.wordpress.org/a6software/\">a6software</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abderrahman/\">abderrahman</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/ibachal/\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed/\">achbed</a>, <a href=\"https://profiles.wordpress.org/achyuthajoy/\">Achyuth Ajoy</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/acsnaterse/\">acsnaterse</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/addyosmani/\">addyosmani</a>, <a href=\"https://profiles.wordpress.org/adnanlimdi/\">adnan.limdi</a>, <a href=\"https://profiles.wordpress.org/adrian/\">adrian</a>, <a href=\"https://profiles.wordpress.org/ahortin/\">ahortin</a>, <a href=\"https://profiles.wordpress.org/airamerica/\">airamerica</a>, <a href=\"https://profiles.wordpress.org/ajayghaghretiya1/\">Ajay Ghaghretiya</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/akbarhusen/\">akbarhusen</a>, <a href=\"https://profiles.wordpress.org/akbarhusen429/\">akbarhusen429</a>, <a href=\"https://profiles.wordpress.org/akhileshsabharwal/\">Akhilesh Sabharwal</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/alishanvr/\">Ali</a>, <a href=\"https://profiles.wordpress.org/ali11007/\">ali11007</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/amaschas/\">amaschas</a>, <a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/anbumz/\">anbumz</a>, <a href=\"https://profiles.wordpress.org/andfinally/\">andfinally</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/dontdream/\">Andrea Tarantini</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey «Rarst» Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">Andrés Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/rilwis/\">Anh Tran</a>, <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/argentite/\">argentite</a>, <a href=\"https://profiles.wordpress.org/arpitgshah/\">Arpit G Shah</a>, <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"https://profiles.wordpress.org/asalce/\">asalce</a>, <a href=\"https://profiles.wordpress.org/ashiagr/\">ashiagr</a>, <a href=\"https://profiles.wordpress.org/ashour/\">ashour</a>, <a href=\"https://profiles.wordpress.org/tacitonic/\">Atharva Dhekne</a>, <a href=\"https://profiles.wordpress.org/ajoah/\">Aurélien Joahny</a>, <a href=\"https://profiles.wordpress.org/aussi/\">aussi</a>, <a href=\"https://profiles.wordpress.org/automaton/\">automaton</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/backups/\">BackuPs</a>, <a href=\"https://profiles.wordpress.org/barry/\">Barry</a>, <a href=\"https://profiles.wordpress.org/barryceelen/\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/bartczyz/\">Bart Czyz</a>, <a href=\"https://profiles.wordpress.org/bartekcholewa/\">bartekcholewa</a>, <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a>, <a href=\"https://profiles.wordpress.org/bastho/\">Bastien Ho</a>, <a href=\"https://profiles.wordpress.org/bmartinent/\">Bastien Martinent</a>, <a href=\"https://profiles.wordpress.org/bcworkz/\">bcworkz</a>, <a href=\"https://profiles.wordpress.org/bdbch/\">bdbch</a>, <a href=\"https://profiles.wordpress.org/bdcstr/\">bdcstr</a>, <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/grapestain/\">Bence Szalai</a>, <a href=\"https://profiles.wordpress.org/bencroskery/\">bencroskery</a>, <a href=\"https://profiles.wordpress.org/benjamingosset/\">Benjamin Gosset</a>, <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bettyjj/\">BettyJJ</a>, <a href=\"https://profiles.wordpress.org/bgermann/\">bgermann</a>, <a href=\"https://profiles.wordpress.org/bigcloudmedia/\">bigcloudmedia</a>, <a href=\"https://profiles.wordpress.org/bigdawggi/\">bigdawggi</a>, <a href=\"https://profiles.wordpress.org/billerickson/\">Bill Erickson</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bbrdaric/\">Boris</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/krogsgard/\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bruandet/\">bruandet</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90/\">Bunty</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/caiocrcosta/\">caiocrcosta</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/cameronamcintyre/\">cameronamcintyre</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/stuffradio/\">Carl Wuensche</a>, <a href=\"https://profiles.wordpress.org/carloslfu/\">Carlos Galarza</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/sixhours/\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/carriganvb/\">Carrigan</a>, <a href=\"https://profiles.wordpress.org/ceyhun/\">ceyhun</a>, <a href=\"https://profiles.wordpress.org/shireling/\">Chad</a>, <a href=\"https://profiles.wordpress.org/cbutlerjr/\">Chad Butler</a>, <a href=\"https://profiles.wordpress.org/mackensen/\">Charles Fulton</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/christian1012/\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cjbj/\">Christian Jongeneel</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger/\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/needle/\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr/\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/cklee/\">cklee</a>, <a href=\"https://profiles.wordpress.org/clayray/\">clayray</a>, <a href=\"https://profiles.wordpress.org/cliffpaulick/\">Clifford Paulick</a>, <a href=\"https://profiles.wordpress.org/codeforest/\">codeforest</a>, <a href=\"https://profiles.wordpress.org/commeuneimage/\">Commeuneimage</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/cpasqualini/\">cpasqualini</a>, <a href=\"https://profiles.wordpress.org/cristovaov/\">Cristovao Verstraeten</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/curtisbelt/\">Curtis Belt</a>, <a href=\"https://profiles.wordpress.org/clarinetlord/\">Cyrus Collier</a>, <a href=\"https://profiles.wordpress.org/dperonne/\">D.PERONNE</a>, <a href=\"https://profiles.wordpress.org/dsixinetu/\">d6</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danielhuesken/\">Daniel Hüsken</a>, <a href=\"https://profiles.wordpress.org/danieltj/\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/confridin/\">Daniel Roch</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dboy1988/\">Danny</a>, <a href=\"https://profiles.wordpress.org/darkog/\">Darko G.</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/dmchale/\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dartiss/\">David Artiss</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dbrumbaugh10up/\">David Brumbaugh</a>, <a href=\"https://profiles.wordpress.org/desmith/\">David E. Smith</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidvee/\">davidvee</a>, <a href=\"https://profiles.wordpress.org/dchymko/\">dchymko</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/delowardev/\">Delowar Hossain</a>, <a href=\"https://profiles.wordpress.org/demetris/\">demetris</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/derekakelly/\">derekakelly</a>, <a href=\"https://profiles.wordpress.org/pcfreak30/\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/emrikol/\">Derrick Tennant</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dimitrism/\">Dimitris Mitsis</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency/\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/djennez/\">djennez</a>, <a href=\"https://profiles.wordpress.org/dmenard/\">dmenard</a>, <a href=\"https://profiles.wordpress.org/dmethvin/\">dmethvin</a>, <a href=\"https://profiles.wordpress.org/doc987/\">doc987</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/dono12/\">Dono12</a>, <a href=\"https://profiles.wordpress.org/doobeedoo/\">Doobeedoo</a>, <a href=\"https://profiles.wordpress.org/dossy/\">Dossy Shiobara</a>, <a href=\"https://profiles.wordpress.org/dpacks/\">dpacks</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/drlightman/\">DrLightman</a>, <a href=\"https://profiles.wordpress.org/drprotocols/\">DrProtocols</a>, <a href=\"https://profiles.wordpress.org/dsifford/\">dsifford</a>, <a href=\"https://profiles.wordpress.org/dudo/\">dudo</a>, <a href=\"https://profiles.wordpress.org/dustinbolton/\">Dustin Bolton</a>, <a href=\"https://profiles.wordpress.org/dvershinin/\">dvershinin</a>, <a href=\"https://profiles.wordpress.org/cyberhobo/\">Dylan Kuhn</a>, <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a>, <a href=\"https://profiles.wordpress.org/seedsca/\">ecotechie</a>, <a href=\"https://profiles.wordpress.org/eddiemoya/\">Eddie Moya</a>, <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/itsjusteileen/\">Eileen Violini</a>, <a href=\"https://profiles.wordpress.org/ekatherine/\">Ekaterina</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/elmastudio/\">elmastudio</a>, <a href=\"https://profiles.wordpress.org/emanuel_blagonic/\">Emanuel Blagonic</a>, <a href=\"https://profiles.wordpress.org/emlebrun/\">Emilie LEBRUN</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgoric</a>, <a href=\"https://profiles.wordpress.org/enricosorcinelli/\">Enrico Sorcinelli</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">Enrique Piqueras</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/shamai/\">Eric</a>, <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion/\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Erin ‘Folletto’ Casali</a>, <a href=\"https://profiles.wordpress.org/esemlabel/\">esemlabel</a>, <a href=\"https://profiles.wordpress.org/esoj/\">esoj</a>, <a href=\"https://profiles.wordpress.org/espiat/\">espiat</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/etruel/\">etruel</a>, <a href=\"https://profiles.wordpress.org/ev3rywh3re/\">Ev3rywh3re</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/fftfaisal/\">Faisal Ahmed</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/felix-edelmann/\">Felix Edelmann</a>, <a href=\"https://profiles.wordpress.org/ferdiesletering/\">ferdiesletering</a>, <a href=\"https://profiles.wordpress.org/finomeno/\">finomeno</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann/\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/truchot/\">Florian Truchot</a>, <a href=\"https://profiles.wordpress.org/florianatwhodunit/\">florianatwhodunit</a>, <a href=\"https://profiles.wordpress.org/foliovision/\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/francoist/\">Francois Thibaud</a>, <a href=\"https://profiles.wordpress.org/futtta/\">Frank Goossens</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/frankprendergast/\">Frank.Prendergast</a>, <a href=\"https://profiles.wordpress.org/franzarmas/\">Franz Armas</a>, <a href=\"https://profiles.wordpress.org/mintindeed/\">Gabriel Koen</a>, <a href=\"https://profiles.wordpress.org/gma992/\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/gmays/\">Gabriel Mays</a>, <a href=\"https://profiles.wordpress.org/gadgetroid/\">gadgetroid</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garavani/\">Garavani</a>, <a href=\"https://profiles.wordpress.org/garethgillman/\">garethgillman</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geertdd/\">Geert De Deckere</a>, <a href=\"https://profiles.wordpress.org/geminilabs/\">Gemini Labs</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/giorgio25b/\">Giorgio25b</a>, <a href=\"https://profiles.wordpress.org/gisselfeldt/\">gisselfeldt</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/goldsounds/\">goldsounds</a>, <a href=\"https://profiles.wordpress.org/gh640/\">Goto Hayato</a>, <a href=\"https://profiles.wordpress.org/gkloveweb/\">Govind Kumar</a>, <a href=\"https://profiles.wordpress.org/greglone/\">Grégory Viguier</a>, <a href=\"https://profiles.wordpress.org/gradina/\">gradina</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/gregmulhauser/\">gregmulhauser</a>, <a href=\"https://profiles.wordpress.org/grierson/\">grierson</a>, <a href=\"https://profiles.wordpress.org/grzegorzjanoszka/\">Grzegorz.Janoszka</a>, <a href=\"https://profiles.wordpress.org/gsmumbo/\">gsmumbo</a>, <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a>, <a href=\"https://profiles.wordpress.org/guidobras/\">guidobras</a>, <a href=\"https://profiles.wordpress.org/netsurfer2705/\">Gunther Pilz</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hvar/\">H-var</a>, <a href=\"https://profiles.wordpress.org/hakre/\">hakre</a>, <a href=\"https://profiles.wordpress.org/halgatewood/\">Halacious</a>, <a href=\"https://profiles.wordpress.org/hankthetank/\">hankthetank</a>, <a href=\"https://profiles.wordpress.org/psdtohtmlguru/\">Hapiuc Robert</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh Pillai</a>, <a href=\"https://profiles.wordpress.org/haukep/\">haukep</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/h71/\">Hector F</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hlanggo/\">hlanggo</a>, <a href=\"https://profiles.wordpress.org/hommealone/\">hommealone</a>, <a href=\"https://profiles.wordpress.org/ryanshoover/\">Hoover</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hronak/\">hronak</a>, <a href=\"https://profiles.wordpress.org/huntlyc/\">huntlyc</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/iandstewart/\">Ian Stewart</a>, <a href=\"https://profiles.wordpress.org/ianjvr/\">ianjvr</a>, <a href=\"https://profiles.wordpress.org/ibdz/\">ibdz</a>, <a href=\"https://profiles.wordpress.org/ifrins/\">ifrins</a>, <a href=\"https://profiles.wordpress.org/infinum/\">infinum</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ishitaka/\">ishitaka</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jackfungi/\">jackfungi</a>, <a href=\"https://profiles.wordpress.org/jacklinkers/\">jacklinkers</a>, <a href=\"https://profiles.wordpress.org/jadonn/\">Jadon N</a>, <a href=\"https://profiles.wordpress.org/jadpm/\">jadpm</a>, <a href=\"https://profiles.wordpress.org/jagirbahesh/\">jagirbahesh</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/foack/\">Jan Koch</a>, <a href=\"https://profiles.wordpress.org/janr/\">Jan Reilink</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/javidalkaruzi/\">Janvo Aldred</a>, <a href=\"https://profiles.wordpress.org/jarretc/\">Jarret</a>, <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a>, <a href=\"https://profiles.wordpress.org/strangerstudios/\">Jason Coleman</a>, <a href=\"https://profiles.wordpress.org/boogah/\">Jason Cosper</a>, <a href=\"https://profiles.wordpress.org/coolmann/\">Jason Crouse</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/jaz_on/\">Jason Rouet</a>, <a href=\"https://profiles.wordpress.org/jaswsinc/\">JasWSInc</a>, <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a>, <a href=\"https://profiles.wordpress.org/shiki/\">Jayson Basanes</a>, <a href=\"https://profiles.wordpress.org/jbinda/\">jbinda</a>, <a href=\"https://profiles.wordpress.org/jbouganim/\">jbouganim</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jean-david/\">Jean-David Daviet</a>, <a href=\"https://profiles.wordpress.org/jeffr0/\">Jeff Chandler</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a>, <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a>, <a href=\"https://profiles.wordpress.org/jesin/\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jigneshnakrani/\">Jignesh Nakrani</a>, <a href=\"https://profiles.wordpress.org/jim_panse/\">Jim_Panse</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jivanpal/\">jivanpal</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/jdorner/\">John Dorner</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">John P. Green</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a>, <a href=\"https://profiles.wordpress.org/johnnyb/\">johnnyb</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Jon Quach</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/jrchamp/\">Jonathan Champ</a>, <a href=\"https://profiles.wordpress.org/jchristopher/\">Jonathan Christopher</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonkolbert/\">jonkolbert</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnybot/\">jonnybot</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/koke/\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/josephdickson/\">Joseph Dickson</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/procifer/\">Josh Smith</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/juanfra/\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juanlopez4691/\">juanlopez4691</a>, <a href=\"https://profiles.wordpress.org/jules-colle/\">Jules Colle</a>, <a href=\"https://profiles.wordpress.org/julianm/\">julianm</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/jgrodel/\">Julka Grodel</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/devesine/\">Justin de Vesine</a>, <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/justlevine/\">justlevine</a>, <a href=\"https://profiles.wordpress.org/justnorris/\">justnorris</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kaggdesign/\">kaggdesign</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kaira/\">Kaira</a>, <a href=\"https://profiles.wordpress.org/kaitlin414/\">Kaitlin Bolling</a>, <a href=\"https://profiles.wordpress.org/kamataryo/\">KamataRyo</a>, <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a>, <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a>, <a href=\"https://profiles.wordpress.org/properlypurple/\">Kavya Gokul</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer/\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kennethroberson5556/\">kennethroberson5556</a>, <a href=\"https://profiles.wordpress.org/khag7/\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/itzmekhokan/\">Khokan Sardar</a>, <a href=\"https://profiles.wordpress.org/kinjaldalwadi/\">kinjaldalwadi</a>, <a href=\"https://profiles.wordpress.org/kirilzh/\">Kiril Zhelyazkov</a>, <a href=\"https://profiles.wordpress.org/kburgoine/\">Kirsty Burgoine</a>, <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a>, <a href=\"https://profiles.wordpress.org/kitchin/\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/ksoares/\">ksoares</a>, <a href=\"https://profiles.wordpress.org/kthmd/\">KT Cheung</a>, <a href=\"https://profiles.wordpress.org/sainthkh/\">Kukhyeon Heo</a>, <a href=\"https://profiles.wordpress.org/lalitpendhare/\">lalitpendhare</a>, <a href=\"https://profiles.wordpress.org/laternastudio/\">Laterna Studio</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/offereins/\">Laurens Offereins</a>, <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a>, <a href=\"https://profiles.wordpress.org/layotte/\">Lew Ayotte</a>, <a href=\"https://profiles.wordpress.org/lex_robinson/\">Lex Robinson</a>, <a href=\"https://profiles.wordpress.org/linyows/\">linyows</a>, <a href=\"https://profiles.wordpress.org/lipathor/\">lipathor</a>, <a href=\"https://profiles.wordpress.org/lschuyler/\">Lisa Schuyler</a>, <a href=\"https://profiles.wordpress.org/liuhaibin/\">liuhaibin</a>, <a href=\"https://profiles.wordpress.org/ljharb/\">ljharb</a>, <a href=\"https://profiles.wordpress.org/logig/\">logig</a>, <a href=\"https://profiles.wordpress.org/lucasbustamante/\">lucasbustamante</a>, <a href=\"https://profiles.wordpress.org/lwill/\">luiswill</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">Luke Walczak</a>, <a href=\"https://profiles.wordpress.org/lukestramasonder/\">lukestramasonder</a>, <a href=\"https://profiles.wordpress.org/asif2bd/\">M Asif Rahman</a>, <a href=\"https://profiles.wordpress.org/msafi/\">M.K. Safi</a>, <a href=\"https://profiles.wordpress.org/cloudstek/\">Maarten de Boer</a>, <a href=\"https://profiles.wordpress.org/aladin02dz/\">Mahfoudh Arous</a>, <a href=\"https://profiles.wordpress.org/manojlovic/\">manojlovic</a>, <a href=\"https://profiles.wordpress.org/targz-1/\">Manuel Schmalstieg</a>, <a href=\"https://profiles.wordpress.org/neodjandre/\">maraki</a>, <a href=\"https://profiles.wordpress.org/iworks/\">Marcin Pietrzak</a>, <a href=\"https://profiles.wordpress.org/marcio-zebedeu/\">Marcio Zebedeu</a>, <a href=\"https://profiles.wordpress.org/pereirinha/\">Marco Pereirinha</a>, <a href=\"https://profiles.wordpress.org/marcoz/\">MarcoZ</a>, <a href=\"https://profiles.wordpress.org/netweblogic/\">Marcus</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/mariovalney/\">Mario Valney</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/machouinard/\">Mark Chouinard</a>, <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markdubois/\">markdubois</a>, <a href=\"https://profiles.wordpress.org/markgoho/\">markgoho</a>, <a href=\"https://profiles.wordpress.org/vindl/\">Marko Andrijasevic</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markrh/\">MarkRH</a>, <a href=\"https://profiles.wordpress.org/markshep/\">markshep</a>, <a href=\"https://profiles.wordpress.org/markusthiel/\">markusthiel</a>, <a href=\"https://profiles.wordpress.org/martijn-van-der-kooij/\">Martijn van der Kooij</a>, <a href=\"https://profiles.wordpress.org/martychc23/\">martychc23</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/matheusfd/\">Matheus Martins</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/matjack1/\">matjack1</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom/\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattrad/\">Matt Radford</a>, <a href=\"https://profiles.wordpress.org/veraxus/\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">mattchowning</a>, <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattheweppelsheimer/\">Matthew Eppelsheimer</a>, <a href=\"https://profiles.wordpress.org/beatpanda/\">Matthew Gerring</a>, <a href=\"https://profiles.wordpress.org/kittmedia/\">Matthias Kittsteiner</a>, <a href=\"https://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a>, <a href=\"https://profiles.wordpress.org/matthieumota/\">Matthieu Mota</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maximeculea/\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/maxme/\">maxme</a>, <a href=\"https://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a>, <a href=\"https://profiles.wordpress.org/mcshane/\">mcshane</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/lilmike/\">Michael</a>, <a href=\"https://profiles.wordpress.org/michaelarestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/mfields/\">Michael Fields</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/m_butcher/\">Michele Butcher-Jones</a>, <a href=\"https://profiles.wordpress.org/marktimemedia/\">Michelle</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">mihdan</a>, <a href=\"https://profiles.wordpress.org/miinasikk/\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mikaumoto/\">mikaumoto</a>, <a href=\"https://profiles.wordpress.org/mihai2u/\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl/\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mike-haydon-swo/\">Mike Haydon</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel [WPLib Box project lead]</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeyarce/\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/milindmore22/\">Milind More</a>, <a href=\"https://profiles.wordpress.org/mimitips/\">mimi</a>, <a href=\"https://profiles.wordpress.org/mislavjuric/\">mislavjuric</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a>, <a href=\"https://profiles.wordpress.org/mohsinrasool/\">Mohsin Rasool</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/gwendydd/\">Morgan Kay</a>, <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a>, <a href=\"https://profiles.wordpress.org/mt8biz/\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrgrt/\">mrgrt</a>, <a href=\"https://profiles.wordpress.org/mrmist/\">mrmist</a>, <a href=\"https://profiles.wordpress.org/mrtall/\">mrTall</a>, <a href=\"https://profiles.wordpress.org/msaggiorato/\">msaggiorato</a>, <a href=\"https://profiles.wordpress.org/musamamasood/\">Muhammad Usama Masood</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a>, <a href=\"https://profiles.wordpress.org/nfmohit/\">Nahid Ferdous Mohit</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/narwen/\">narwen</a>, <a href=\"https://profiles.wordpress.org/nateinaction/\">Nate Gay</a>, <a href=\"https://profiles.wordpress.org/nathanrice/\">Nathan Rice</a>, <a href=\"https://profiles.wordpress.org/navidos/\">Navid</a>, <a href=\"https://profiles.wordpress.org/neonkowy/\">neonkowy</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/netpassprodsr/\">netpassprodsr</a>, <a href=\"https://profiles.wordpress.org/nextendweb/\">Nextendweb</a>, <a href=\"https://profiles.wordpress.org/calvin_ngan/\">Ngan Tengyuen</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty/\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/nickylimjj/\">Nicky Lim</a>, <a href=\"https://profiles.wordpress.org/vadimnicolai/\">nicolad</a>, <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a>, <a href=\"https://profiles.wordpress.org/nicolaskulka/\">NicolasKulka</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielsdeblaauw/\">Niels de Blaauw</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nigrosimone/\">nigro.simone</a>, <a href=\"https://profiles.wordpress.org/nikhilbhansi/\">Nikhil Bhansi</a>, <a href=\"https://profiles.wordpress.org/nbachiyski/\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a>, <a href=\"https://profiles.wordpress.org/niresh12495/\">Niresh</a>, <a href=\"https://profiles.wordpress.org/nmenescardi/\">nmenescardi</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">ntsekouras</a>, <a href=\"https://profiles.wordpress.org/numidwasnotavailable/\">NumidWasNotAvailable</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a>, <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/onokazu/\">onokazu</a>, <a href=\"https://profiles.wordpress.org/optimizingmatters/\">Optimizing Matters</a>, <a href=\"https://profiles.wordpress.org/ovann86/\">ovann86</a>, <a href=\"https://profiles.wordpress.org/overclokk/\">overclokk</a>, <a href=\"https://profiles.wordpress.org/p_enrique/\">p_enrique</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/paresh07/\">Paresh Shinde</a>, <a href=\"https://profiles.wordpress.org/parvand/\">Parvand</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pdfernhout/\">Paul Fernhout</a>, <a href=\"https://profiles.wordpress.org/djpaul/\">Paul Gibbs</a>, <a href=\"https://profiles.wordpress.org/figureone/\">Paul Ryan</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulstonier/\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/pentatonicfunk/\">pentatonicfunk</a>, <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"https://profiles.wordpress.org/pessoft/\">Peter «Pessoft» Kolínek</a>, <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pderksen/\">Phil Derksen</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a>, <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a>, <a href=\"https://profiles.wordpress.org/pigdog234/\">pigdog234</a>, <a href=\"https://profiles.wordpress.org/pikamander2/\">pikamander2</a>, <a href=\"https://profiles.wordpress.org/pingram3541/\">pingram</a>, <a href=\"https://profiles.wordpress.org/pionect/\">Pionect</a>, <a href=\"https://profiles.wordpress.org/piyushmca/\">Piyush Patel</a>, <a href=\"https://profiles.wordpress.org/pkarjala/\">pkarjala</a>, <a href=\"https://profiles.wordpress.org/pkvillanueva/\">pkvillanueva</a>, <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a>, <a href=\"https://profiles.wordpress.org/pratik028/\">pratik028</a>, <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presslabs/\">Presslabs</a>, <a href=\"https://profiles.wordpress.org/priyankkpatel/\">Priyank Patel</a>, <a href=\"https://profiles.wordpress.org/priyomukul/\">Priyo Mukul</a>, <a href=\"https://profiles.wordpress.org/prografika/\">ProGrafika</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/puneetsahalot/\">Puneet Sahalot</a>, <a href=\"https://profiles.wordpress.org/pvogel2/\">pvogel2</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/raajtram/\">Raaj Trambadia</a>, <a href=\"https://profiles.wordpress.org/larrach/\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/raineorshine/\">raine</a>, <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rastaban/\">Rastaban</a>, <a href=\"https://profiles.wordpress.org/ravanh/\">RavanH</a>, <a href=\"https://profiles.wordpress.org/ravatparmar/\">Ravat Parmar</a>, <a href=\"https://profiles.wordpress.org/ravenswd/\">ravenswd</a>, <a href=\"https://profiles.wordpress.org/rawrly/\">rawrly</a>, <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/redsand/\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a>, <a href=\"https://profiles.wordpress.org/remzicavdar/\">Remzi Cavdar</a>, <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho</a>, <a href=\"https://profiles.wordpress.org/renggo888/\">renggo888</a>, <a href=\"https://profiles.wordpress.org/retlehs/\">retlehs</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/riasat/\">riasat</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/ringisha/\">Ringisha</a>, <a href=\"https://profiles.wordpress.org/ritterml/\">ritterml</a>, <a href=\"https://profiles.wordpress.org/rnaby/\">Rnaby</a>, <a href=\"https://profiles.wordpress.org/rcutmore/\">Rob Cutmore</a>, <a href=\"https://profiles.wordpress.org/dhrrob/\">Rob Migchels</a>, <a href=\"https://profiles.wordpress.org/rob006/\">rob006</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/robertpeake/\">Robert Peake</a>, <a href=\"https://profiles.wordpress.org/ronalfy/\">Ronald Huereca</a>, <a href=\"https://profiles.wordpress.org/costasovo/\">Rostislav Wolný</a>, <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a>, <a href=\"https://profiles.wordpress.org/ruxandra/\">ruxandra</a>, <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a>, <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/ryotasakamoto/\">Ryota Sakamoto</a>, <a href=\"https://profiles.wordpress.org/ryotsun/\">ryotsun</a>, <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/sorenbronsted/\">Søren Brønsted</a>, <a href=\"https://profiles.wordpress.org/sachittandukar/\">Sachit Tandukar</a>, <a href=\"https://profiles.wordpress.org/sagarjadhav/\">Sagar Jadhav</a>, <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a>, <a href=\"https://profiles.wordpress.org/salcode/\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/salvatoreformisano/\">Salvatore Formisano</a>, <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a>, <a href=\"https://profiles.wordpress.org/sswebster/\">Sam Webster</a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/samueljseay/\">samueljseay</a>, <a href=\"https://profiles.wordpress.org/pacifika/\">Sander van Dragt</a>, <a href=\"https://profiles.wordpress.org/progremzion/\">Sanket Mehta</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a>, <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiyamoorthy V</a>, <a href=\"https://profiles.wordpress.org/sayedwp/\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/scarolan/\">scarolan</a>, <a href=\"https://profiles.wordpress.org/scholdstrom/\">scholdstrom</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/scottsmith/\">Scott Smith</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/seanpaulrasmussen/\">seanpaulrasmussen</a>, <a href=\"https://profiles.wordpress.org/seayou/\">seayou</a>, <a href=\"https://profiles.wordpress.org/senatorman/\">senatorman</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vjik/\">Sergey Predvoditelev</a>, <a href=\"https://profiles.wordpress.org/sgr33n/\">Sergio de Falco</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/functionalrhyme/\">Shannon Smith</a>, <a href=\"https://profiles.wordpress.org/wpshades/\">Shantanu Desai</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shooper/\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/shawnz/\">shawnz</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shulard/\">shulard</a>, <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/simonwheatley/\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/simonjanin/\">simonjanin</a>, <a href=\"https://profiles.wordpress.org/sinatrateam/\">sinatrateam</a>, <a href=\"https://profiles.wordpress.org/sjmur/\">sjmur</a>, <a href=\"https://profiles.wordpress.org/skarabeq/\">skarabeq</a>, <a href=\"https://profiles.wordpress.org/skorasaurus/\">skorasaurus</a>, <a href=\"https://profiles.wordpress.org/skoskie/\">skoskie</a>, <a href=\"https://profiles.wordpress.org/slushman/\">slushman</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/seth17/\">SpearsMarketing</a>, <a href=\"https://profiles.wordpress.org/sphakka/\">sphakka</a>, <a href=\"https://profiles.wordpress.org/squarecandy/\">squarecandy</a>, <a href=\"https://profiles.wordpress.org/sreedoap/\">sreedoap</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sswells/\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/stephencronin/\">Stephen Cronin</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/stevegibson12/\">stevegibson12</a>, <a href=\"https://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenkussmaul/\">stevenkussmaul</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stiofansisland/\">Stiofan</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sum1/\">SUM1</a>, <a href=\"https://profiles.wordpress.org/quadthemes/\">Sunny</a>, <a href=\"https://profiles.wordpress.org/sunnyratilal/\">Sunny Ratilal</a>, <a href=\"https://profiles.wordpress.org/sushyant/\">Sushyant Zavarzadeh</a>, <a href=\"https://profiles.wordpress.org/suzylah/\">suzylah</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">Sérgio Estêvão</a>, <a href=\"https://profiles.wordpress.org/miyauchi/\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tangrufus/\">Tang Rufus</a>, <a href=\"https://profiles.wordpress.org/utz119/\">TeBenachi</a>, <a href=\"https://profiles.wordpress.org/tessawatkinsllc/\">Tessa Watkins LLC</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Tetsuaki Hamano</a>, <a href=\"https://profiles.wordpress.org/themiked/\">theMikeD</a>, <a href=\"https://profiles.wordpress.org/theolg/\">theolg</a>, <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a>, <a href=\"https://profiles.wordpress.org/thimalw/\">thimalw</a>, <a href=\"https://profiles.wordpress.org/webzunft/\">Thomas M</a>, <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/thrijith/\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/tiagohillebrandt/\">Tiago Hillebrandt</a>, <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Krüss</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmdesigned/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tmoore41/\">tmoore41</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/tofandel/\">Tofandel</a>, <a href=\"https://profiles.wordpress.org/tomdude/\">tomdude</a>, <a href=\"https://profiles.wordpress.org/tferry/\">Tommy Ferry</a>, <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/treecutter/\">treecutter</a>, <a href=\"https://profiles.wordpress.org/truongwp/\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsimmons/\">tsimmons</a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vabrashev/\">vabrashev</a>, <a href=\"https://profiles.wordpress.org/vagios/\">Vagios Vlachos</a>, <a href=\"https://profiles.wordpress.org/valchovski/\">valchovski</a>, <a href=\"https://profiles.wordpress.org/valentinbora/\">Valentin Bora</a>, <a href=\"https://profiles.wordpress.org/vayu/\">Vayu Robins</a>, <a href=\"https://profiles.wordpress.org/veromary/\">veromary</a>, <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Szépe</a>, <a href=\"https://profiles.wordpress.org/vinkla/\">vinkla</a>, <a href=\"https://profiles.wordpress.org/virginienacci/\">virginienacci</a>, <a href=\"https://profiles.wordpress.org/planvova/\">Vladimir</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, <a href=\"https://profiles.wordpress.org/voyager131/\">voyager131</a>, <a href=\"https://profiles.wordpress.org/vtieu/\">vtieu</a>, <a href=\"https://profiles.wordpress.org/webaware/\">webaware</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/whodunitagency/\">Whodunit</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina</a>, <a href=\"https://profiles.wordpress.org/wpdesk/\">wpdesk</a>, <a href=\"https://profiles.wordpress.org/wpdo5ea/\">WPDO</a>, <a href=\"https://profiles.wordpress.org/alexandreb3/\">WPMarmite</a>, <a href=\"https://profiles.wordpress.org/wppinar/\">wppinar</a>, <a href=\"https://profiles.wordpress.org/yahil/\">Yahil Madakiya</a>, <a href=\"https://profiles.wordpress.org/yashrs/\">yashrs</a>, <a href=\"https://profiles.wordpress.org/yoancutillas/\">yoancutillas</a>, <a href=\"https://profiles.wordpress.org/yohannp/\">yohannp</a>, <a href=\"https://profiles.wordpress.org/yuhin/\">yuhin</a>, <a href=\"https://profiles.wordpress.org/ysalame/\">Yuri Salame</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/tollmanz/\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/zaheerahmad/\">zaheerahmad</a>, <a href=\"https://profiles.wordpress.org/zakkath/\">zakkath</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> y <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a>.</p>\n\n\n\n<p>Muchas gracias a todos los voluntarios de la comunidad que contribuyen en <a href=\"https://es.wordpress.org/support/\">los foros de soporte</a>. Responden a las preguntas que hace la gente de todo el mundo, ya usen WordPress por primera vez o desde la primera versión. ¡Estas actualizaciones tienen más éxito gracias a sus esfuerzos!</p>\n\n\n\n<p>Para finalizar, gracias a todos los traductores de la comunidad que han trabajado en WordPress 5.5. Sus esfuerzos en ofrecer WordPress completamente traducido a 46 idiomas la fecha del lanzamiento, y las que vendrán.</p>\n\n\n\n<p>Si quieres aprender más sobre cómo ser voluntario en WordPress echa un vistazo a <a href=\"https://make.wordpress.org/\">Make WordPress</a> o al <a href=\"https://make.wordpress.org/core/\">blog de desarrollo del núcleo</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://es.wordpress.org/2020/08/11/wordpress-5-5-eckstine/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:79:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"WordPress 5.5 candidata a definitiva 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://es.wordpress.org/2020/08/04/wordpress-5-5-candidata-a-definitiva-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://es.wordpress.org/2020/08/04/wordpress-5-5-candidata-a-definitiva-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Aug 2020 23:42:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:15:\"Actualizaciones\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:2:\"RC\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://es.wordpress.org/?p=5288\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:370:\"¡Ya está aquí la segunda versión candidata a definitiva de WordPress 5.5! WordPress 5.5 está actualmente programada para lanzarse el 11 de agosto, pero necesitamos tu ayuda para conseguirlo – si aún no has probado la versión 5.5, ¡ahora es el momento! Hay dos maneras de probar la versión candidata a definitiva de WordPress 5.5: Probar el […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Fernando Tellado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2975:\"\n<p>¡Ya está aquí la segunda versión candidata a definitiva de WordPress 5.5!</p>\n\n\n\n<p>WordPress 5.5 está actualmente programada para lanzarse <strong>el 11 de agosto</strong>, pero necesitamos tu ayuda para conseguirlo – si aún no has probado la versión 5.5, <strong>¡ahora es el momento!</strong></p>\n\n\n\n<p>Hay dos maneras de probar la versión candidata a definitiva de WordPress 5.5:</p>\n\n\n\n<ul><li>Probar el plugin <a rel=\"noreferrer noopener\" href=\"https://es.wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\">WordPress Beta Tester</a> (elige la opción «versiones avanzadas»)</li><li>O <a href=\"https://wordpress.org/wordpress-5.5-RC2.zip\">descarga aquí la versión</a> (zip).</li></ul>\n\n\n\n<p>Gracias a todos los contribuidores que han probado las versiones beta y han enviado comentarios. Probar fallos es una parte crítica del pulido de cada versión y un fantástico modo de contribuir a WordPress.</p>\n\n\n\n<h2>Desarrolladores de plugins y temas</h2>\n\n\n\n<p>Por favor, prueba tus plugins y temas con WordPress 5.5 y actualiza el texto de versión de <em>Probado hasta</em> en el archivo readme a la 5.5. Si encuentras problemas de compatibilidad, por favor, asegúrate de publicarlo en los <a href=\"https://wordpress.org/support/forum/alphabeta/\">foros de soporte</a> para que podamos resolverlo antes de la versión final.</p>\n\n\n\n<p>Para un desglose más detallado de los cambios incluidos en WordPress 5.5, mira <a href=\"https://es.wordpress.org/2020/07/10/wordpress-5-5-beta-1/\" data-type=\"post\" data-id=\"5234\">la entrada de WordPress 5.5 beta 1</a>.</p>\n\n\n\n<p>¡La <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2020/07/30/wordpress-5-5-field-guide/\" target=\"_blank\">guía de campo de WordPress 5.5</a> ya está publicada! Es tu fuente de detalles sobre todos los principales cambios.</p>\n\n\n\n<h2>Cómo ayudar</h2>\n\n\n\n<p>¿Hablas otro idioma que no sea el inglés? <a rel=\"noreferrer noopener\" href=\"https://translate.wordpress.org/projects/wp/dev/\" target=\"_blank\">¡Ayúdanos a traducir WordPress a más de 100 idiomas!</a></p>\n\n\n\n<p>Esta versión también marca el <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">punto de congelación de cadenas</a> de la programación de la versión 5.5.</p>\n\n\n\n<p>Si crees que has encontrado un error, puedes publicarlo en el <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/support/forum/alphabeta/\" target=\"_blank\">área Alpha/Beta</a> de los foros de soporte. ¡Nos encantaría saber de ti!</p>\n\n\n\n<p><em>Si te sientes cómodo escribiendo informes de errores replicables, <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/newticket\" target=\"_blank\">presenta uno en el Trac de WordPress</a>, donde también puedes encontrar una <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\">lista de errores conocidos</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://es.wordpress.org/2020/08/04/wordpress-5-5-candidata-a-definitiva-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:79:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"WordPress 5.5 candidata a definitiva\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://es.wordpress.org/2020/07/29/wordpress-5-5-candidata-a-definitiva/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://es.wordpress.org/2020/07/29/wordpress-5-5-candidata-a-definitiva/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2020 15:22:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:15:\"Actualizaciones\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:2:\"RC\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://es.wordpress.org/?p=5275\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:351:\"¡Ya está disponible la primera versión candidata a definitiva de WordPress 5.5! Este es un hito importante a medida que avanzamos hacia la fecha de lanzamiento de WordPress 5.5. «Candidata a definitiva» significa que la nueva versión está lista para su lanzamiento, pero con millones de usuarios y miles de plugins y temas, es posible […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Fernando Tellado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3410:\"\n<p>¡Ya está disponible la primera versión candidata a definitiva de WordPress 5.5!</p>\n\n\n\n<p>Este es un hito importante a medida que avanzamos hacia la fecha de lanzamiento de WordPress 5.5.</p>\n\n\n\n<p>«Candidata a definitiva» significa que la nueva versión está lista para su lanzamiento, pero con millones de usuarios y miles de plugins y temas, es posible que algo se nos haya pasado por alto.</p>\n\n\n\n<p>WordPress 5.5 está actualmente programada para lanzarse <strong>el 11 de agosto</strong>, pero necesitamos tu ayuda para conseguirlo – si aún no has probado la versión 5.5, <strong>¡ahora es el momento!</strong></p>\n\n\n\n<p>Hay dos maneras de probar la versión candidata a definitiva de WordPress 5.5:</p>\n\n\n\n<ul><li>Probar el plugin <a rel=\"noreferrer noopener\" href=\"https://es.wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\">WordPress Beta Tester</a> (elige la opción «versiones avanzadas»)</li><li>O <a href=\"https://wordpress.org/wordpress-5.5-RC1.zip\">descarga aquí la versión</a> (zip).</li></ul>\n\n\n\n<p>Gracias a todos los contribuidores que han probado las versiones beta y han enviado comentarios. Probar fallos es una parte crítica del pulido de cada versión y un fantástico modo de contribuir a WordPress.</p>\n\n\n\n<h2>¿Qué trae WordPress 5.5?</h2>\n\n\n\n<p>WordPress 5.5 tiene montones de mejoras para pulir la experiencia de los desarrolladores. Para estar al día suscríbete al <a href=\"https://make.wordpress.org/core/\">blog de Make WordPress Core</a> y presta especial atención a la etiqueta de <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">notas para desarrolladores</a> para las actualizaciones sobre estos y otros cambios que podrían afectar a tus productos.</p>\n\n\n\n<h2>Desarrolladores de plugins y temas</h2>\n\n\n\n<p>Por favor, prueba tus plugins y temas con WordPress 5.5 y actualiza el texto de versión de <em>Probado hasta</em> en el archivo readme a la 5.5. Si encuentras problemas de compatibilidad, por favor, asegúrate de publicarlo en los <a href=\"https://wordpress.org/support/forum/alphabeta/\">foros de soporte</a> para que podamos resolverlo antes de la versión final</p>\n\n\n\n<p>La guía de campo de WordPress 5.5 se publicará muy pronto, con una explicación más detallada sobre los principales cambios.</p>\n\n\n\n<h2>Cómo ayudar</h2>\n\n\n\n<p>¿Hablas otro idioma que no sea el inglés? <a rel=\"noreferrer noopener\" href=\"https://translate.wordpress.org/projects/wp/dev/\" target=\"_blank\">¡Ayúdanos a traducir WordPress a más de 100 idiomas!</a></p>\n\n\n\n<p>Esta versión también marca el <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">punto de congelación de cadenas</a> de la programación de la versión 5.5.</p>\n\n\n\n<p>Si crees que has encontrado un error, puedes publicarlo en el <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/support/forum/alphabeta/\" target=\"_blank\">área Alpha/Beta</a> de los foros de soporte. ¡Nos encantaría saber de ti!</p>\n\n\n\n<p><em>Si te sientes cómodo escribiendo informes de errores replicables, <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/newticket\" target=\"_blank\">presenta uno en el Trac de WordPress</a>, donde también puedes encontrar una <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\">lista de errores conocidos</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://es.wordpress.org/2020/07/29/wordpress-5-5-candidata-a-definitiva/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:30:\"https://es.wordpress.org/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 18 Nov 2020 18:17:55 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 03 Nov 2020 16:37:46 GMT\";s:4:\"link\";s:61:\"<https://es.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20201118174641\";}','no'),(4870,'_transient_timeout_feed_mod_69c933d8a78805efd0abe985766ffb51','1605766674','no'),(4871,'_transient_feed_mod_69c933d8a78805efd0abe985766ffb51','1605723474','no'),(4872,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1605766675','no'); INSERT INTO `grpsd_options` VALUES (4873,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Should WordPress Notify Users of Plugin Ownership Changes?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"https://wptavern.com/should-wordpress-notify-users-of-plugin-ownership-changes?utm_source=rss&utm_medium=rss&utm_campaign=should-wordpress-notify-users-of-plugin-ownership-changes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4409:\"<img />Potential idea for showing plugin ownership change.\n\n\n\n<p>That is the question posed by Ian Atkins in a <a href=\"https://meta.trac.wordpress.org/ticket/5509\">recent ticket</a> for WordPress.</p>\n\n\n\n<p>“I’ve experienced a few plugins change ownership, and it’s really not clear as a user, developer, and maintainer of sites when that has happened,” he wrote in the ticket. “Whilst having a plugin continue to be developed is admirable — I do think it would be wise to inform users of that change.”</p>\n\n\n\n<p>For full disclosure, the ownership change that prompted Atkins to create the ticket was from the Members plugin. I am the former owner of the plugin and sold it to the MemberPress team in 2019 (I was a full-time plugin and theme developer before joining WP Tavern). Having been both a plugin author and user in this scenario before helps mold my viewpoint.</p>\n\n\n\n<p>I agree with the idea. WordPress should have some mechanism for notifying users of changes of ownership. The more transparency that exists in the ecosystem, the healthier it is for all.</p>\n\n\n\n<p>As a plugin author who was letting go of a project that I had worked nearly a decade on, it was tough to say goodbye. I had built friendships and trusted users who walked beside me on my journey. I posted on the company blog, Twitter, Facebook, and the WordPress support forums. I replied to emails, PMs, and more. I wanted to be as transparent with my plugin users as possible. When the plugin was out of my hands, there was no way for me to reach out to the 1,000s of users who did not follow me on social media or the blog. The new owner was as transparent. Even today, a year later, some users are just now realizing someone else is running the show.</p>\n\n\n\n<p>In hindsight, perhaps there was more we could have done. Maybe there was more WordPress could have also done and can do in the future. There are valid concerns from users.</p>\n\n\n\n<p>Atkins lists three primary reasons for his proposal:</p>\n\n\n\n<ul><li>There might be privacy policy changes that have impacts on what data is shared and how it is shared. Legally, depending on location, this may have to be communicated to end-users (under GDPR, etc.).</li><li>The plugin may change direction or add features that were not originally included or required under the stewardship of the prior owner.</li><li>The plugin may have changed hands to a developer or development house that a user knows isn’t as reliable as the previous owner.</li></ul>\n\n\n\n<p>He also asked whether the plugin team reviewed ownership changes. <a href=\"https://developer.wordpress.org/plugins/wordpress-org/plugin-developer-faq/#how-do-i-change-the-plugin-owner\">Changing owners</a> is a simple task, and these changes are tracked internally.</p>\n\n\n\n<p>Mika Epstein, a Plugin Review Team representative, said that the team could make such changes public. The biggest flaw with that system is that it is not always possible to know when a plugin’s owner changes. Sometimes, an entire company is sold, which would include ownership of the WordPress.org account. She also cited situations where serviceware plugins change hands in unobvious ways.</p>\n\n\n\n<p>“I want to be clear, I’m not against this!” she said in a follow-up response. “I’m for this! I just want to be clear that we’re going to get MAYBE half of the changes.”</p>\n\n\n\n<p>Half would be better than none. An automated system may work to create notices in some situations. However, an addition to the plugin review guidelines may also be part of the solution.</p>\n\n\n\n<p>Plugin authors could also take it upon themselves to implement an ownership-change notification. This may be one of those use cases for the much-maligned admin notices that is worth exploring.</p>\n\n\n\n<p>At this point, we are just asking the question of whether WordPress should create a system in which users are notified of plugin ownership changes. What would you like to see in terms of solutions?</p>\n\n\n\n<p>I want to see continued progress on the transparency front. Atkins’ first list item is the most important. If there are privacy policy changes or a plugin deals with personal data in any way, users need to know when the plugin has a new owner. They should be able to make a decision about their continued use of the plugin with all the facts laid bare.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Nov 2020 17:09:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"HeroPress: Final Day to Apply to Speak at WordFest Live 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=3416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:165:\"https://heropress.com/final-day-to-apply-to-speak-at-wordfest-live-2021/#utm_source=rss&utm_medium=rss&utm_campaign=final-day-to-apply-to-speak-at-wordfest-live-2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1008:\"<p>Friends across the globe, today is your last chance to get in your talk for WordFest Live. You only have until midnight tonight, UTC, so don’t delay!</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://www.wordfest.live/call-for-speakers/\">Call for Speakers</a></blockquote>\n</div>\n\n\n\n<p>If you’re interested but not sure which talk to choose, learn more here: <a href=\"https://www.wordfest.live/2020/11/speaking-at-wordfest-live-2021/\">https://www.wordfest.live/2020/11/speaking-at-wordfest-live-2021/</a></p>\n\n\n\n<p>Share your knowledge across this 24 hour global celebration of WordPress. Support the team at Big Orange Heart by being involved. Let’s continue to go farther together!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/final-day-to-apply-to-speak-at-wordfest-live-2021/\">Final Day to Apply to Speak at WordFest Live 2021</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Nov 2020 16:10:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: WordPress.com Gives Conservative Treehouse the Boot, Citing TOS Violations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107926\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/wordpress-com-gives-conservative-treehouse-the-boot-citing-tos-violations?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-gives-conservative-treehouse-the-boot-citing-tos-violations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4931:\"<p>The Conservative Treehouse, a political publication hosted on WordPress.com for the past 10 years, is <a href=\"https://theconservativetreehouse.com/2020/11/15/the-treehouse-is-deplatformed/\">moving to a new host</a> after receiving a notice from Automattic regarding violations of its Terms of Service. The site’s owner, previously identified as Florida resident Mark Bradman, claims to have a 500,000 – 1,000,000 unique readers per day. He has been ordered to find a new hosting provider and migrate the site away from WordPress.com by December 2, 2020.</p>\n\n\n\n<p>Bradman followed up with Automattic to inquire about the specific infractions that put the site in violation of <a href=\"https://wordpress.com/automattic-ads-tos/\">Automattic Ads Terms of Service</a>. A representative from WordPress.com referred him to Section 5’s guidelines on “Prohibited Content,” and the prohibition against calls to violence in <a href=\"https://wordpress.com/support/user-guidelines/\">WordPress.com’s User Guidelines</a>. </p>\n\n\n\n<div class=\"wp-block-image\"><img />Source: <a href=\"https://theconservativetreehouse.com/2020/11/16/update-from-wordpress-automattic-on-treehouse-deplatforming/\">The Conservative Treehouse</a></div>\n\n\n\n<p>The Conservative Treehouse was characterized by <a href=\"https://www.thedailybeast.com/meet-the-conservative-treehouse-the-blog-thats-ground-zero-for-insane-trump-sht\">The Daily Beast</a> as “Patient Zero for a number of hoaxes that have percolated through [the] right-wing media ecosystem” after President Trump <a href=\"https://twitter.com/realDonaldTrump/status/1270333484528214018?s=20\">tweeted</a> a conspiracy theory that originated on the site. Trump referenced an incident in Buffalo where police officers shoved an elderly protestor during the anti-police brutality protests that happened in June. The notion that the protester was an “ANTIFA provacateur” was originally seeded by an <a href=\"https://theconservativetreehouse.com/2020/06/06/buffalo-officials-duped-by-professional-antifa-provocateur-arrest-and-charge-two-police-officers-righteous-police-team-stand-together-and-walk-out/\">article</a> on The Conservative Treehouse.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Buffalo protester shoved by Police could be an ANTIFA provocateur. 75 year old Martin Gugino was pushed away after appearing to scan police communications in order to black out the equipment. <a href=\"https://twitter.com/OANN?ref_src=twsrc%5Etfw\">@OANN</a> I watched, he fell harder than was pushed. Was aiming scanner. Could be a set up?</p>— Donald J. Trump (@realDonaldTrump) <a href=\"https://twitter.com/realDonaldTrump/status/1270333484528214018?ref_src=twsrc%5Etfw\">June 9, 2020</a></blockquote>\n</div>\n\n\n\n<p>A cursory review of the past several months of posts on the anonymous blog shows it is home to a steady stream of misinformation. <a href=\"https://www.newsguardtech.com/\">NewsGuard</a>, an organization that assigns trust ratings based on transparent <a href=\"https://www.newsguardtech.com/ratings/rating-process-criteria/\">criteria</a>, recommends readers proceed with caution because the website “severely violates basic journalistic standards.” The Conservative Treehouse gets a rating of <a href=\"https://www.newsguardtech.com/wp-content/uploads/2020/06/ConservativeTreeHouse-1.pdf\">30/100</a> due to publishing false information and unsubstantiated conspiracy theories on numerous topics:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Because The Conservative Treehouse has published false and misleading claims, including about the COVID-19 pandemic, NewsGuard has determined that the website repeatedly publishes false content and does not gather and present information responsibly.</p></blockquote>\n\n\n\n<p>Bradman said he received the notification about the website being removed after publishing his post on what he calls “<a href=\"https://theconservativetreehouse.com/2020/11/13/covid-19-is-the-agenda-biden-is-merely-the-delivery-vehicle/\">the COVID-19 agenda</a>.” The conclusion of the article includes an image of a knife with the word “resist” written on it, followed by the words “whatever it takes.” The site’s comments are home to a “Rag Tag Bunch of Conservative Misfits,” as the tagline suggests, and there are more than 1,800 comments on the post announcing its upcoming move to a new host.</p>\n\n\n\n<p>Despite the publication’s poor reputation, the site ranks #3,294 in the US, according to Alexa, with a largely American audience. Its owner claims to have more than 200,000 subscribers.</p>\n\n\n\n<p>“We will take this challenge head-on and we will use this attack against our freedom as fuel to launch CTH 2.0, a new version of The Conservative Treehouse,” Bradman said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Nov 2020 05:24:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress.org blog: WordPress 5.6 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9258\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2020/11/wordpress-5-6-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3347:\"<p>The first release candidate for WordPress 5.6 is now available!</p>\n\n\n\n<p>This is an important milestone in the community’s progress toward the final release of WordPress 5.6.</p>\n\n\n\n<p>“Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.6 is slated for release on <strong>December 8, 2020</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.6 yet, <strong>now is the time</strong>!</p>\n\n\n\n<p>You can test the WordPress 5.6 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “Bleeding edge” channel and Beta/RC Only” stream options)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-RC1.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>What’s in WordPress 5.6?</h2>\n\n\n\n<p>The final release of 2020 continues the annual tradition of a new default theme that is custom built to showcase the new features and functionality of the software. Continued progress on the block editor is especially clear in this release, which brings more blocks to more places, and fewer clicks to implement your layouts.</p>\n\n\n\n<p>WordPress 5.6 also has lots of refinements to polish the developer experience. To learn more, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-6+dev-notes/\">developer notes</a> tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.6 and update the <em>Tested up to</em> version in the readme file to 5.6. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so those can be figured out before the final release.</p>\n\n\n\n<p>The WordPress 5.6 Field Guide, due very shortly, will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.6 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Nov 2020 22:43:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: Proposal to Create an Expanded View or Overlay for the Block Patterns Inserter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107663\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:221:\"https://wptavern.com/proposal-to-create-an-expanded-view-or-overlay-for-the-block-patterns-inserter?utm_source=rss&utm_medium=rss&utm_campaign=proposal-to-create-an-expanded-view-or-overlay-for-the-block-patterns-inserter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5954:\"<p class=\"has-drop-cap\">The “version 1.0” launch of block patterns in WordPress 5.5 was overall successful. However, it was easy to overlook the problems while waiting for this feature to land after months of anticipation. Now that we have had a couple of months of seeing the block pattern system baked into core WordPress, it is time to address issues that are becoming more evident.</p>\n\n\n\n<p>As much as I love block patterns as a feature, I cannot say the same for the user interface and overall experience. The pattern category dropdown <a href=\"https://wptavern.com/gutenberg-9-1-adds-patterns-category-dropdown-and-reverts-block-based-widgets-in-the-customizer\">added in Gutenberg 9.1</a> was a marked improvement over the endless list of patterns. However, it did not go far enough in presenting them in a user-friendly way.</p>\n\n\n\n<p>WordPress has long had a habit of sticking too much into a tiny panel — many theme authors never felt like the customizer panel <a href=\"https://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options#comment-68451\">offered enough space</a>, for example. The same seems to be the case for the block editor’s inserter panel. It is good enough for allowing end-users to pick and choose blocks. However, patterns are much larger than the smaller block icons. When users start scrolling through dozens of patterns at a time in the coming months and years, it will become a usability nightmare.</p>\n\n\n\n<p>Paal Joachim Romdahl is <a href=\"https://github.com/WordPress/gutenberg/issues/26905\">proposing an alternative</a>. His idea is to add an “expander” icon/button that would allow users to view more patterns at once via an overlay. At least this would be the case for larger screen sizes, such as desktop users.</p>\n\n\n\n<p>“Viewing a lot of patterns in the small inserter panel does not work too well,” he wrote in the GitHub ticket. “It gets tiring needing to scroll one pattern at a time. Having a larger view will help the user to compare multiple patterns at once.”</p>\n\n\n\n<img src=\"https://user-images.githubusercontent.com/5323259/99002124-46249480-253c-11eb-83bd-7524790f3b66.gif\" alt=\"Preview of how the current pattern overlay proposal would work.\" />Current pattern overlay proposal.\n\n\n\n<p>Romdahl has also created a <a href=\"https://www.figma.com/proto/TuDKX6ckaecNARP2B8NWp4/Expand-to-view-patterns-in-a-larger-overlay-window?node-id=3%3A49&scaling=min-zoom\">Figma prototype</a> for people to test what the system would look like in a live demo. The UI is not polished, but it looks like a promising start.</p>\n\n\n\n<p>He created the proposal after reading the Tavern’s recent coverage of WordPress.com’s <a href=\"https://wptavern.com/wordpress-com-drops-over-100-block-patterns-carving-a-path-the-design-community-should-follow\">launch of over 100 block patterns</a>. Some of the pattern categories are easy to work through and find the right layout. Others, such as the Text and Call to Action categories, may have 20 or more patterns to scroll through.</p>\n\n\n\n<img />Inserting a block pattern on WordPress.com.\n\n\n\n<p>If WordPress creates an official block pattern directory, which is <a href=\"https://wptavern.com/wordpress-contributors-discuss-launching-an-official-block-pattern-directory\">currently under consideration</a>, adding new patterns could be as simple as clicking a button. It would be an easy way to rack up dozens of patterns in moments, particularly if a user is trying out various layouts and does not uninstall unused patterns afterward.</p>\n\n\n\n<p>Not many users are exposed to the hundreds of patterns WordPress.com’s users have access to. We should move forward with this proposal before they are.</p>\n\n\n\n<p>An overlay for inserting patterns and templates is not a new concept. It is common in the WordPress development community. Plugin and theme developers solved this problem ages ago.</p>\n\n\n\n<p>The Redux plugin <a href=\"https://wptavern.com/redux-framework-relaunches-focuses-efforts-on-gutenberg-templates\">handles hundreds of templates</a> with an overlay:</p>\n\n\n\n<img />Viewing templates from the Redux library.\n\n\n\n<p>The Layout block from the <a href=\"https://wptavern.com/atomic-blocks-rebranded-to-genesis-blocks-migration-path-to-new-plugin-coming-soon\">Genesis Blocks plugin</a> is essentially just a custom pattern inserter with a much nicer UI than WordPress:</p>\n\n\n\n<img />Overlay created by the Layout block from Genesis Blocks.\n\n\n\n<p>Mikael Korpela <a href=\"https://github.com/WordPress/gutenberg/issues/21080#issuecomment-710055158\">added similar thoughts</a> to a ticket related to the next steps for the inserter. He proposed a full-screen experience for browsing patterns.</p>\n\n\n\n<p>“The patterns sidebar is great if you just want to keep it open while you modify your page, but it’s harder for browsing because of limited space, especially when you’ve registered a lot of patterns,” he wrote in the ticket.</p>\n\n\n\n<p>He shared an image of how Sections on Squarespace are handled:</p>\n\n\n\n<img />Selecting a Section on the Squarespace website.\n\n\n\n<p>An overlay might also help drive the pattern directory proposal. It would be easy enough at that point to create a new tab in the overlay interface, hook into the WordPress.org API, and allow users to browse through installable patterns — no need to leave the comfort of the block editor.</p>\n\n\n\n<p>Another common feature that many of these types of systems share is a way to save patterns as favorites. This makes them easy to locate in the future. Paul Lacey makes the same argument in <a href=\"https://youtu.be/0nT_41mxTsw?t=3047\">episode #136</a> of the WP Builds Weekly WordPress News podcast. He wants his clients to have easy access to their most-used block patterns. This would be a nice bonus to help clean up the block patterns user experience.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Nov 2020 21:02:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: WPGraphQL 1.0 Released, Now Available in WordPress.org Plugins Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107827\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"https://wptavern.com/wpgraphql-1-0-released-now-available-in-wordpress-org-plugins-directory?utm_source=rss&utm_medium=rss&utm_campaign=wpgraphql-1-0-released-now-available-in-wordpress-org-plugins-directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4075:\"<p><a href=\"https://www.wpgraphql.com/2020/11/16/announcing-wpgraphql-v1/\">Version 1.0</a> of the <a href=\"https://wordpress.org/plugins/wp-graphql/\">WPGraphQL plugin</a> is now available in the official plugins directory on WordPress.org. This is the first stable version recommended for use in production, landing nearly four years from when the project started in November 2016. </p>\n\n\n\n<p>In an effort to keep WPGraphQL in line with WordPress’ commitment to preserving backwards compatibility, Jason Bahl, the creator and maintainer, held it off from a 1.0 release until he could minimize the potential for breaking changes.</p>\n\n\n\n<p>“WPGraphQL turning 1.0 isn’t a statement that there will never be breaking changes, instead it’s a statement of stability and long term support,” Bahl said.</p>\n\n\n\n<p>WPGraphQL has already had quite a bit of real world usage ahead of its first stable release. The plugin is in use on high profile sites like <a href=\"https://qz.com/\">QZ.com</a>, <a href=\"https://denverpost.com/\">DenverPost.com</a>, and <a href=\"https://apollographql.com/blog\">ApolloGraphQL.com</a>. Installs of WPGraphQL grew from 50,000 in June 2020, to 71,573 installs in November 2020, according to <a href=\"https://packagist.org/packages/wp-graphql/wp-graphql\">Packagist.org</a>. Having the plugin available on WordPress.org will make it easier for users to install it and keep it updated.</p>\n\n\n\n<p>“One of the big reasons I didn’t want WPGraphQL on the .org repo was that the nature of it being an API could expose sites to potential security vulnerabilities,” Bahl said. “As we worked on stabilizing the plugin I wanted it to be a pretty conscious decision to add a GraphQL API to your WordPress site. Leaving the plugin on Github meant that the audience finding it and installing it was a more technical audience and could do at least some of the technical vetting to make sure it made sense for their project.”</p>\n\n\n\n<p>In September, <a href=\"https://www.gatsbyjs.com/\">Gatsby</a>, the company that sponsors Bahl’s time on WPGraphQL’s development and maintenance, hired Pen Test Partners to perform an audit of the plugin and has resolved all the issues they discovered. The full report and resolutions will be published to the project’s website soon.</p>\n\n\n\n<p>“Now that the plugin is stable and secure, we’re happy to have it on the WordPress.org repo where users will be able to find it by searching for plugins in the repo and take advantage of some new features of WordPress such as auto-updates,” Bahl said.</p>\n\n\n\n<p>The 1.0 release does not contain any technical changes – it simply bumps the version number. The project has been publishing pre-1.0 releases leading up to this, logging 33 <a href=\"https://github.com/wp-graphql/wp-graphql/releases\">releases</a> in the past 12 months. Bahl said the biggest difference between 1.0 and pre-1.0 is the new <a href=\"https://www.wpgraphql.com/\">WPGraphQL.com</a> website. Previously, the project’s documentation was hosted on a subdomain but it is now been rolled into the main site.</p>\n\n\n\n<p>“Previously, <a rel=\"noreferrer noopener\" href=\"https://t.co/s062Bpz09o?amp=1\" target=\"_blank\">WPGraphQL.com</a> was a traditional WordPress site with the front-end using the classic WordPress theme layer,” Bahl said. “The new site is built with WordPress as the CMS, Gutenberg as the content editor, Gatsby as the front-end, and WPGraphQL as the layer that allows Gatsby and WordPress to communicate with each other. We’re dogfooding our own technology.”</p>\n\n\n\n<p>The project has also added close to 300 pages of new documentation. It includes a <a href=\"https://www.wpgraphql.com/developer-reference/\">Developer Reference</a> section with documentation on Actions, Filters, and Functions for customizing and extending WPGraphQL, along with a new <a href=\"https://www.wpgraphql.com/recipes/\">Recipes</a> section with code snippets for implementing solutions faster.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Nov 2020 23:40:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: The Plus Addons for Gutenberg Plugin to Launch Soon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106267\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:167:\"https://wptavern.com/the-plus-addons-for-gutenberg-plugin-to-launch-soon?utm_source=rss&utm_medium=rss&utm_campaign=the-plus-addons-for-gutenberg-plugin-to-launch-soon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6548:\"<p class=\"has-drop-cap\">WordPress development company POSIMYTH is getting set to announce its venture into block development in the coming days. The new plugin, <a href=\"https://theplusaddons.com/gutenberg/\">The Plus Addons for Gutenberg</a>, is a collection of blocks, templates, and additional features for building sites with the block editor. The plugin is currently awaiting review for inclusion in the WordPress.org plugin directory. I was able to snag a test version and have been using it for around a week.</p>\n\n\n\n<p>The POSIMYTH team began working as an outsourcing agency in 2013. Since then, it has worked on over 1,000 projects. The company eventually began building WordPress themes and plugins for the Envato Marketplace. It has continued to grow and currently serves more than 50,000 customers.</p>\n\n\n\n<p>“Being an outsourcing company in the past, we have always felt the need for one-stop solutions for agencies and freelancers,” said Sagar Patel, the founder and director at POSIMYTH Innovations. “We have built many Gutenberg field components from scratch as well as in-depth options in blocks, which will not just be for simple tasks, it will be for complex layouts and options as well.”</p>\n\n\n\n<p>One of the company’s most-used products is its <a href=\"https://wordpress.org/plugins/the-plus-addons-for-elementor-page-builder/\">The Plus Addons for Elementor</a> plugin. The free version currently has over 9,000 active installations. Patel describes it as a “complete package” for building Elementor-based websites.</p>\n\n\n\n<p>“Our Gutenberg version will be kind of a recreation of our Elementor version, but on top of that, we are adding more options and features based on our feedback from Elementor users,” he said. “Some blocks are completely revamped and made with a unique concept, but some are just a recreation of the Elementor version. For example, our Popup Builder, Countdown, Global Features, and some others are completely made from scratch with a new structure.”</p>\n\n\n\n<p>The company recently surveyed over 1,000 its users. One of the points they noted is that many of those users wanted to use WordPress’s built-in block editor. However, they were unable to find reliable options for building complex websites. The results of this survey are one of the primary reasons the company is building this plugin.</p>\n\n\n\n<h2>The Plugin</h2>\n\n\n\n<img />TP Row block for building columns.\n\n\n\n<p class=\"has-drop-cap\">The free version of The Plus Addons for Gutenberg will launch with 29 blocks, 16 of which are free and 13 <em>freemium</em> ones with commercial upgrades. The commercial/pro version of the plugin will add an extra 11 blocks along with several shapes, tooltips, effects, and other options. Pricing is expected to start at $39 per year for its lowest tier.</p>\n\n\n\n<p>The plugin also has global color and typography options. These should not be confused with WordPress’s upcoming Global Styles system. The two features work similarly. However, the plugin’s system only works with its blocks instead of the entire website.</p>\n\n\n\n<p>The terminology could pose some confusion for users. There will also be some crossover between the two systems, both handling the same needs. Patel said he is aware of this and will always work to make sure the plugin respects WordPress’s built-in Global Styles system. “We will always keep that in sync with our global options,” he said. “It’s still in the initial stage. We will keep on updating based on feedback from users and as per the updates of the Gutenberg team.”</p>\n\n\n\n<p>Many of the block options are similar to what <a href=\"https://wptavern.com/editorplus-introduces-its-first-blocks-and-adds-a-custom-block-creator\">Editor Plus</a> is doing for the core WordPress blocks. However, the options are for the plugin’s custom blocks only. The UI feels polished enough that you feel like the design team has been here before and knows what it is doing. Some plugins do not get to that point until version 2 or 3. I was able to navigate the block options with ease.</p>\n\n\n\n<p>However, some blocks were out of place. For example, the Style Lists block could have simply been custom options tacked onto the WordPress List block. Adding list items in the block sidebar is not as natural as in the editor’s content area. The end-goal is to simply make a standard list. Everything else is simply eye-candy. Ideally, the plugin would relegate those options to the core block.</p>\n\n\n\n<p>The same could be said of the Blockquote, TP Button, TP Image, and others. These could be extensions of the core WordPress blocks. Other blocks like the TP Heading, TP Paragraph, and Testimonials might be better served as custom patterns.</p>\n\n\n\n<img />Adding a testimonial from the plugin to the editor.\n\n\n\n<p>The concept of building custom, in-house blocks seems to be more prevalent each day as more plugin companies release block libraries. The trend will likely continue. The block system is reasonably extendable. <em>Recreating the wheel</em> is unnecessary.</p>\n\n\n\n<p>The Plus Addons for Gutenberg’s blocks are well done, and it is hard to fault a plugin for having a consistent experience across its custom blocks.</p>\n\n\n\n<p>Overall, the plugin does not offer any groundbreaking ideas for new blocks. Most of these are available in other, similar block libraries. What sets this plugin apart is the development team’s work on packing a ton of block options into an easy-to-use interface.</p>\n\n\n\n<p>Patel said he does not consider the team to be in competition with anyone else in the market. “We are on a mission to provide a one-stop solution for all needs of WordPress website designers and developers.” The goal is to make it easy for freelancers and agencies to build complex layouts in the block editor without writing code.</p>\n\n\n\n<p>The project’s website currently touts the availability of predesigned templates. The team decided not to include this feature in its initial free version, focusing on the other features in the plugin instead. Patel wants to assure users that templates will be available in both the free and pro versions of the plugin.</p>\n\n\n\n<p>“[Templates] will be available in a couple of months or early after the initial free version’s launch,” he said. “We will have UI blocks, homepage templates, as well as full-site demos with multiple pages in that.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Nov 2020 22:32:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Google Webmasters Central Rebrands to Google Search Central\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107724\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"https://wptavern.com/google-webmasters-central-rebrands-to-google-search-central?utm_source=rss&utm_medium=rss&utm_campaign=google-webmasters-central-rebrands-to-google-search-central\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2395:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Twenty years ago, every aspect of developing a website and putting it online was more complex than it is today – an enchantment of Merlin’s wand to most common folks. The term “webmaster” hasn’t aged well, but it was commonly used in a different era when tech wizards were the only people creating and managing websites. The term has become outmoded as online publishing and website building has become more user-friendly.</p>\n\n\n\n<p>Google recently ran a study that showed usage of the term webmaster is in sharp decline, as web professionals now prefer more specialized terms, such as blogger, developer, SEO, or online marketer. In recognition of this change, the company is <a href=\"https://webmasters.googleblog.com/2020/11/goodbye-google-webmasters.html\">rebranding</a> “Google Webmasters Central” to “Google Search Central.” The change will be rolled out to Google’s websites and social media within the next couple days.</p>\n\n\n\n<p>In addition to the rebranding, Google is also centralizing its help information on one site and consolidating its blogs:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Moving forward, the <a href=\"https://support.google.com/webmasters\">Search Console Help Center</a> will contain only documentation related to using Search Console. It’s also still the home of our help forum, newly renamed from “Webmasters Help Community” to “<a href=\"https://support.google.com/webmasters/community\">Google Search Central Community</a>“. The information related to how Google Search works, crawling and indexing, Search guidelines, and other Search-related topics are moving to <a href=\"https://developers.google.com/search\">our new site</a>, which previously focused only on web developer documentation. </p></blockquote>\n\n\n\n<p>The Google Webmasters blog and 13 other localized blogs are being moved to the new site for better discovery and easier language switching. Google is going to redirect current RSS and email subscribers to the new blog URL, so readers only need to update their bookmarks.</p>\n\n\n\n<p>Google is also introducing a new jumping spider bot to accompany its Googlebot mascot in crawling the internet. The creature doesn’t yet have a nickname, but the company is soliciting suggestions.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Nov 2020 22:46:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.6 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9249\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5476:\"<p>WordPress 5.6 Beta 4 is now available for testing!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we recommend that you run this version on a test site.</p>\n\n\n\n<p>You can test the WordPress 5.6 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option).</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-beta4.zip\">download the beta here (zip)</a>.</li></ul>\n\n\n\n<p>The current target for the final release is December 8, 2020. This is just over<strong> three weeks away</strong>, so your help is needed to ensure this release is tested properly.</p>\n\n\n\n<p>Thank you to all of the contributors that tested the <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-3/\">beta 3</a> development release and provided feedback. Testing for bugs is an important part of polishing each release and a great way to contribute to WordPress.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since beta 3, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/query?status=closed&changetime=11%2F04%2F2020..11%2F12%2F2020&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">42 bugs</a> have been fixed. Here is a summary of a few changes included in beta 4:</p>\n\n\n\n<ul><li>There was a change to the auto-updates implementation for new installations of the software (<a href=\"https://core.trac.wordpress.org/ticket/50907\">#50907</a>). <em><a href=\"https://make.wordpress.org/core/2020/11/10/upgrade-install-component-meeting-summary-november-10-2020/\">Next steps</a>, and <a href=\"https://make.wordpress.org/core/2020/11/10/wp5-6-auto-update-implementation-change/\">rationale</a> are both available.</em></li><li>Added better handling of unexpected values in Site Health (<a href=\"https://core.trac.wordpress.org/ticket/50145\">#50145</a>).</li><li>Added a way for developers to filter the available authors list in Quick Edit (<a href=\"https://core.trac.wordpress.org/ticket/47685\">#47685</a>).</li><li>More accessible handling of the tag cloud widget (<a href=\"https://core.trac.wordpress.org/ticket/51455\">#51455</a>).</li><li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=11%2F04%2F2020..11%2F12%2F2020&component=Media&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">Multiple improvements in the Media component</a>.</li><li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=11%2F04%2F2020..11%2F12%2F2020&component=Build%2FTest+Tools&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">Multiple improvements in the Build/Test Tools component</a>.</li></ul>\n\n\n\n<p><em>To see all of the features for each Gutenberg release in detail, check out the release posts: <a href=\"https://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">8.6</a>, <a href=\"https://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a>, <a href=\"https://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>, <a href=\"https://make.wordpress.org/core/2020/09/03/whats-new-in-gutenberg-2-september/\">8.9</a>, <a href=\"https://make.wordpress.org/core/2020/09/16/whats-new-in-gutenberg-16-september/\">9.0</a>, <a href=\"https://make.wordpress.org/core/2020/10/01/whats-new-in-gutenberg-30-september/\">9.1</a>, <a href=\"https://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">9.2</a>, and <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v9.3.0-rc.1\">9.3</a>.</em></p>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.6 has lots of refinements to the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-6+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/query?status=new&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">known bugs</a>.</p>\n\n\n\n<p><em>Props to @tonyamork, @audrasjb for technical notes and @angelasjin,<em> </em><a href=\"https://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a><em>, </em><a href=\"https://profiles.wordpress.org/cguntur/\">@cguntur</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a> for final review.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Nov 2020 23:49:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"WPTavern: Envato Passes $1 Billion in Community Earnings While Continuing to Aggressively Market Its Elements Subscription Against Marketplace Authors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107668\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:343:\"https://wptavern.com/envato-passes-1-billion-in-community-earnings-while-continuing-to-aggressively-market-its-elements-subscription-against-marketplace-authors?utm_source=rss&utm_medium=rss&utm_campaign=envato-passes-1-billion-in-community-earnings-while-continuing-to-aggressively-market-its-elements-subscription-against-marketplace-authors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16409:\"<p>Envato has <a href=\"https://forums.envato.com/t/we-ve-reached-1-billion-in-community-earnings/340756\">passed $1 billion in community earnings</a> after 14 years in business. The company reached the goal a year earlier than anticipated, thanks to the contributions of 81,000 different creators around the globe and millions of customers who have purchased products from <a rel=\"noreferrer noopener\" href=\"https://themeforest.net/\" target=\"_blank\">Envato Market</a>, <a rel=\"noreferrer noopener\" href=\"https://studio.envato.com/\" target=\"_blank\">Envato Studio</a>, <a href=\"https://tutsplus.com/\">Envato Tuts+</a> and <a href=\"https://elements.envato.com/\">Envato Elements</a>.</p>\n\n\n\n<p>“To this day, we’re very proud that our community earns more money than our company does,” Envato co-founder Collis Ta’eed said. Last month Ta’eed stepped down from his position as CEO to pursue a new ethical chocolate e-commerce <a href=\"https://heytiger.com.au/\">venture</a>. He was replaced by former HotelsCombined.com CEO, Hichame Assi. </p>\n\n\n\n<p>Due to the pandemic, the Australian tech company recently transitioned to all employees working from home during the global lockdown. Along with the announcement of Ta’eed’s exit, Envato delivered a 20% profit share payout, totaling $3.75m AUD, to its 630-person workforce. The company reported that this is an increase on the 10% allocation from the previous financial year. </p>\n\n\n\n<p>“Profit share has become an integral part of Envato and helps connect the team with a share of the success they create through their efforts,” Ta’eed said. </p>\n\n\n\n<p>During the past several years, the company has focused heavily on driving profits through Envato Elements, its subscription service. Ta’eed said the business is now “more subscription oriented than at any time in our history.”</p>\n\n\n\n<p>One WordPress plugin author, who sells on Codecanyon, <a href=\"https://forums.envato.com/t/we-ve-reached-1-billion-in-community-earnings/340756/18\">commented</a> on the milestone post, urging Envato to renew its focus on the marketplaces. </p>\n\n\n\n<p>“Please focus on the marketplaces as well,” FWDesign said. “In the past 2-3 years, you guys focused on Elements, cannibalizing the marketplace, is time to give us something back. Personally, I feel forgotten.” </p>\n\n\n\n<p>While the community earnings have allowed creators to improve their lives in various ways – from paying family medical bills to buying apartments – the increase in focus on Envato Elements has been highly controversial. Envato’s forums are replete with complaints about Elements “poaching clients from existing marketplaces,” after many authors <a href=\"https://forums.envato.com/t/what-are-envatos-plans-for-themeforest/66598/216\">spoke out</a> about Envato advertising Elements on authors’ marketplace product pages. </p>\n\n\n\n<p>Authors employ various marketing channels to bring traffic to their items, such as Facebook ads or Adwords, and have complained for years that potential customers were whisked away from their product pages by Elements ads. Many authors reported declining sales on individual products as a result. </p>\n\n\n\n<p>In May 2018, Envato rolled out a <a href=\"https://forums.envato.com/t/changes-to-wordpress-and-after-effects-on-elements/172885/12\">critical change</a> that made all items across all item types available to all subscribers (monthly and annual). This was particularly controversial for WordPress theme authors and many reported significant decreases in sales as a direct result.</p>\n\n\n\n<p>At that time, former Envato employee James Giroux responded to authors’ concerns, characterizing the new subscription service as “a long-term play:”</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“With Elements, you are buying into a revenue stream rather than a one-time transaction. So, when you compare the value of a Market customer vs an Elements subscriber, you may see less from the subscriber in the first month, but more in their cumulative lifetime revenue.”</p></blockquote>\n\n\n\n<p>Elements may not be the right choice for every Envato creator, but the company’s investment in the service is now pulling in <a href=\"https://www.afr.com/technology/envato-profits-halve-but-every-staffer-ever-gets-spoils-20190407-p51btb\">$40 million in annual recurring revenue</a> as of 2018-2019, accounting for 35% of Envato’s $113M in revenue for 2019. </p>\n\n\n\n<p>“This year we continued to reinvent ourselves as a subscription company, with a major uptick in subscribers across Envato,” Ta’eed said in <a href=\"https://forums.envato.com/t/2019-envato-annual-public-impact-statement/272986\">Envato’s 2019 Annual Public Impact Statement</a>. However, this new business model is coming at the expense of authors who sell exclusively through the marketplaces.</p>\n\n\n\n<p>Envato authors have begged the company’s leadership to <a href=\"https://forums.envato.com/t/call-for-collis-ta-eed-envato-founder-please-separate-elements/216716/4\">take down the banners</a> that boost Elements’ sales by siphoning customers off the marketplace, but the aggressive push towards subscriptions prevails. The frustration is palpable in numerous threads across the company’s various marketplaces.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>“It’s one thing to advertise Elements on the web or wherever Envato likes, but to have this banner on all of our item pages is actively poaching potential customers away when they are moments away from buying our items,” AudioJungle author Alister Bunclark said.</p>\n\n\n\n<p>Many authors have seen a decline in sales that is outside their control. No amount of marketing traffic to their own portfolios can make up for the $16.50 “all you can eat” offer that is plastered to the top of every page. The banner for the in-house competitor even appears directly in the cart for customers who are trying to checkout with products from non-Elements authors.</p>\n\n\n\n<p>“The fact that we are even having to request that Envato stop relentlessly promoting a competing, lower-priced alternative to our portfolios (many of which are exclusively offered at AudioJungle) – on the marketplace where our portfolios are – is discouraging,” one author <a href=\"https://forums.envato.com/t/call-for-collis-ta-eed-envato-founder-please-separate-elements/216716/16\">said</a>.</p>\n\n\n\n<p>WordPress authors selling on Themeforest are also frustrated with the banners. In 2019, Envato sold an item every 5 seconds, with WordPress accounting for <a href=\"https://docs.google.com/presentation/d/1Rj1J4FEihZAuzL87P5bh18w2dEIA66iDFIrJbnNuECM/embed?start=false&loop=false&delayms=3000&slide=id.g793418c9c6_0_155\">a third of sales.</a> The company claims to be the “market leader for themes and templates for WordPress,” despite the marketplace’s overall poor reputation among WordPress professionals.</p>\n\n\n\n<p>One byproduct of Elements including WordPress products in the subscription is that it tends to encourage the use of outdated themes and plugins. Users can download thousands of products but the WordPress themes do not come with support. Many users are <a href=\"https://forums.envato.com/t/envato-elements-outdated-problem/141799\">not aware</a> of this when they purchase their subscriptions. Users can get updates only while their subscriptions are active, but they have to be downloaded manually. </p>\n\n\n\n<p>“Despite tons of complaints from authors (who made this place what it is in the first place) it is even pointless to promote your items elsewhere to attract some ‘buyers’ because they see the Elements promotions everywhere, even on our own product pages,” Themeforest Elite author Bedros <a href=\"https://forums.envato.com/t/two-days-without-sales/287149/6\">said</a>.</p>\n\n\n\n<p>When authors took to the forums to report no sales or declining sales, one user <a href=\"https://forums.envato.com/t/two-days-without-sales/287149/10\">responded</a>, “Don’t panic. They killed the market with Elements.”</p>\n\n\n\n<p>Certain marketplaces, like AudioJungle and WordPress themes, are disproportionately impacted by Elements, given the significant time investment to create these types of products. </p>\n\n\n\n<p>“I wonder what’s the point, in these circumstances, to spend months (in some cases even a year) to build a decent WordPress theme to sell on Envato,” Bedros <a href=\"https://forums.envato.com/t/two-days-without-sales/287149/5\">said</a>. Another author on the same thread reported working on a theme for 16 months and had only 17 sales two months after it was approved.</p>\n\n\n\n<p>“The big buyers (ad agencies and the like) will see an immediate savings on the subscription plan opposed to buying the products individually,” AudioJungle author Daniel Warneke <a href=\"https://www.quora.com/Is-Envato-killing-their-marketplace-with-Envato-elements\">said</a>. “This pulls the high volume purchasers out of the individual market.</p>\n\n\n\n<p>“Envato hand picks the authors that have products in Envato Elements, so it stands to reason that they selected a broad range of the most popular products. This would make the service the most appealing.” </p>\n\n\n\n<h2>Envato Reports 0.18% CTR on Elements Banner Ads But Will Not Remove Them</h2>\n\n\n\n<p>In the responses to <a href=\"https://forums.envato.com/t/2019-envato-annual-public-impact-statement/272986\">Envato’s 2019 Annual Public Impact Statement</a>, Collis Ta’eed confirmed that market sales are declining. He blames the “movement of the industry” towards other business models as the reason for the decline: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>To your question on Market sales, they’re holding up better than we’d hoped, though they are down year on year. Internally we look at the combination of Market and Elements both in gross revenue (which is up) and in authors earnings (which is up). But Market itself is down a few percent on this time last year, and that looks like an ongoing trend (though one that’s not as steep as my worst fears at times!)</p><p>It’s tempting to think the driver of Market’s changes are Elements, especially as we drive subscription customers over. But we’d been mapping the trend of the sales curve for years prior to the launch of Elements and had been seeing changes before we ever launched into subscriptions, because of the movement of the industry, first to ‘bundles’ and then to ‘subscriptions’ and ‘free’. From what I can tell the bigger forces on Market are actually industry ones.</p></blockquote>\n\n\n\n<p>Despite the vast undervaluing of their individual products, authors in general do not seem to be opposed to Elements entirely but rather they are opposed to Envato’s aggressive advertisements on their portfolios. The same question surfaces every year and the company’s leadership continues to dance around it.</p>\n\n\n\n<p>“Can you explain to authors why they should spend money on advertising their products when as soon as they land on the landing page they see a great big dirty banner saying they can get everything unlimited for a monthly fee?” template author Patchesoft <a href=\"https://forums.envato.com/t/2019-envato-annual-public-impact-statement/272986/39\">commented</a>. “I feel like this question came up last year and we got a ‘we’ll see what we can do about it’ and yet here we are a year later.” </p>\n\n\n\n<p>Ta’eed <a href=\"https://forums.envato.com/t/2019-envato-annual-public-impact-statement/272986/78\">responded</a>, characterizing the banners as a cross-promotion of traffic between Market and Elements. He claimed that after the company performed some tests, removing the banner “had negligible impact on sales at a daily level.”</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Definitely I know that the header bar on Market is up there amongst the most annoying things to authors. But at the same time, it’s important for us to be transparent about the different offerings we have for customers so they can choose what’s best for their needs. While it’s pretty annoying, the traffic diverted from Market item pages is minimal (0.18% of visitors actually click through). That said we’re exploring ways to let customers better know about Elements (and Placeit).</p></blockquote>\n\n\n\n<p>Authors are not buying this justification for the banner ads, and object to the use of the term “cross-promotion,” when the promotion only goes one way. Meanwhile, Elements, which enables non-exclusive sales, is treated like an ad-free, exclusive library.</p>\n\n\n\n<p>“’Annoying’ is not the correct word,” AudioJungle member Purple Fog <a href=\"https://forums.envato.com/t/2019-envato-annual-public-impact-statement/272986/81\">said</a>. “You gotta understand it’s much, much more than that. It’s infuriating, it’s a betrayal, it’s you flipping us the finger.</p>\n\n\n\n<p>“If it’s so important for you to let buyers know what all their options are, then why isn’t there a top banner on Elements telling them they can also get the item for a one off fee, in case they don’t want to subscribe?</p>\n\n\n\n<p>“That 0.18% is pretty far from the figure you previously gave us (around 2%), and is even harder to believe. Do you mean that you are willing to antagonize the vast majority of authors just for 0.18% CTR? Makes little sense. It’s also hard to believe when there are countless threads opened by buyers who felt they were tricked by that infamous banner. Either your people are lying to you, or you didn’t set up the analytics properly, but in any case, something doesn’t add up here.”</p>\n\n\n\n<h2>Envato’s Transformation Into a Subscription Company Comes at the Expense of Its Exclusive Market Authors</h2>\n\n\n\n<p>Envato continues to write its own rules due to its early success and has now amassed a vast labor force who depend on the company’s offerings for their livelihoods. Those who are willing to devalue their work for inclusion in a subscription product (that is guaranteed to sell with a more compelling pricing point) are allowed to continue as cogs in a much more profitable machine.</p>\n\n\n\n<p>It’s not wrong for Envato to pivot towards becoming a subscription company. To do so at the expense of market authors is unfair. These authors are paying to advertise for a competing library with lost sales from their own products. It exploits the marketplace authors who were hoping to make a sale, since their higher prices are now just a prop for making Elements look more attractive. Their portfolios become a gateway to the subscription service.</p>\n\n\n\n<p> Unless Envato changes how it advertises Elements, the company will remain at odds with exclusive market authors’ interests. This is especially true for creators in markets where having their work available to more customers doesn’t instantly translate into more payments.</p>\n\n\n\n<p>“Many authors have chosen to set up shop here exclusively and have supported and promoted this marketplace for years,” AudioJungle author Promosapien said in a <a href=\"https://forums.envato.com/t/call-for-collis-ta-eed-envato-founder-please-separate-elements/216716/121\">thread</a> where authors called on the CEO to remove the banner ads.</p>\n\n\n\n<p>“Envato is presently making strategic choices that they obviously feel strongly about and feel are necessary for their own viability. Unfortunately, those choices are diminishing the benefits of being an exclusive author here.</p>\n\n\n\n<p>“In fact, you could probably make a good argument that there has never been a worse time to be an exclusive author at a marketplace – when that marketplace is actively and continually using its considerable promotional resources to move website visitors away from your portfolio to a newer, cheaper licensing platform (Elements subscription).” </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Nov 2020 23:47:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Do Not Build Theme-Specific Block Plugins for WordPress, Please\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107722\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"https://wptavern.com/do-not-build-theme-specific-block-plugins-for-wordpress-please?utm_source=rss&utm_medium=rss&utm_campaign=do-not-build-theme-specific-block-plugins-for-wordpress-please\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5141:\"<p class=\"has-drop-cap\">A few days ago, I came across a small library of blocks. As always, I was interested in seeing what this new plugin brought to the table. Would it surprise me with a block that has not been done before? Would it present a new take on some old ideas? Or, would it be the same old set of blocks that every other block bundle has? Regardless of what it offered, I was excited to try it all the same.</p>\n\n\n\n<p>As I clicked on the description to find out more, I was immediately let down. The plugin specifically stated that it was built for only one theme. I could not use it with my preferred theme.</p>\n\n\n\n<p>This was not the first time I had run across this issue. Other theme authors have built their own block bundles in the past. The plugin was not bringing anything particularly new to the WordPress community. It had less than a handful of blocks that had already been done before in numerous other plugins.</p>\n\n\n\n<p>The problem was that this felt all too familiar.</p>\n\n\n\n<p>Over the years, the WordPress community has created a set of unwritten rules regarding what belongs in a theme vs. what belongs in a plugin. Custom post types, taxonomies, and shortcodes are <em>plugin territory</em>. To an extent, widgets should also be exclusive to plugins. However, because of the way they are handled under the hood, there was always an argument that it was OK for themes to register them.</p>\n\n\n\n<p>This theme vs. plugin argument has been ongoing for at least a decade. Because of how themes work, such arguments have been a losing battle. Except in a few edge cases, themes could do everything that a plugin could do. However, there was always supposed to be a clear-cut distinction between the two. Themes were meant to handle the front-end design of a website. Plugins were for everything else.</p>\n\n\n\n<p>Today, the WordPress project and its block system are making progress toward solidifying that distinction.</p>\n\n\n\n<p>Because of WordPress’s legacy of having various parts that did not all quite fit together in the past, it has created a culture of developers building in-house solutions. Nearly every large theme development company has its own plugins for overcoming the platform’s shortcomings. Most of the blame for this lies with the WordPress project. However, the project’s move to blocks is creating a standardized system that handles everything from a paragraph to the overall site container. With standardization across the board, there will be less and less need for these custom solutions from every theme company.</p>\n\n\n\n<p>The block system set a clear line in the sand. It removed the need for shortcodes — good riddance — and will soon phase out widgets. Blocks should be putting those old questions to bed.</p>\n\n\n\n<p>For clarity, there is little difference between bundling blocks with a theme and building a separate plugin that only works with a specific theme. The end result is the same. Such a plugin would lock a user into sticking with that theme if they relied on the plugin at all. Few people maintain the same front-end design forever.</p>\n\n\n\n<p>The goal is to allow users to switch themes at will while having access to their content and blocks.</p>\n\n\n\n<p>These theme-specific block plugins are thinking about blocks in the wrong way. When a user installs a block plugin, the expectation is that they can use those blocks regardless of their theme.</p>\n\n\n\n<p>The solution for themes is to use block <strong>patterns</strong> or <strong>styles</strong>. Suppose that you wanted to create a slider or carousel as a theme author. There are multiple solutions for this. The first and easiest is to simply recommend a plugin to users or build a plugin of your own that works with any theme. You could also easily add a slider style for the Gallery block. When the user selects it, it transforms the gallery into a slider.</p>\n\n\n\n<p>Or, suppose your theme needed to offer a big hero section with a call-to-action button. There is no need for a custom block in this situation. Theme authors can almost exclusively do this by building a custom pattern with existing blocks.</p>\n\n\n\n<p>The solution is not to bundle the block in the theme or create a plugin that only works with that one theme.</p>\n\n\n\n<p>The beauty of the block system is that most of the pieces are already in place, and they can be rearranged, grouped, and styled in unlimited ways.</p>\n\n\n\n<p>Today, there are hundreds of theme-specific plugins in existence. Part of that is because themers were working around the WordPress.org theme review guidelines. Part of that is because some developers did not think creatively enough about solutions. But, the biggest part of it has been because WordPress has not standardized how to build things across the entire platform. Much of that has changed and will continue to change as full-site editing crosses the horizon in 2021. There will be clear paths for themes and plugins.</p>\n\n\n\n<p>However, if theme companies continue building theme-specific blocks, we are just lugging along the baggage that the block system is meant to leave behind.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Nov 2020 21:58:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"BuddyPress: BuddyPress 7.0.0-beta2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=315529\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://buddypress.org/2020/11/buddypress-7-0-0-beta2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3225:\"<p>First of all, we’d like to thank all the contributors who tested the <a href=\"https://buddypress.org/2020/10/buddypress-7-0-0-beta1/\">first beta</a> of our next major release. Beta testing is very important to us as it’s a good way to check the improvements we brought to BuddyPress are behaving as expected on your WordPress/BuddyPress configurations.</p>\n\n\n\n<p><a href=\"https://downloads.wordpress.org/plugin/buddypress.7.0.0-beta2.zip\">BuddyPress 7.0.0-beta2</a> is now available for testing, and we’d love to have your feedbacks about it!</p>\n\n\n\n<p>Since 7.0.0 beta1:</p>\n\n\n\n<ul><li>We fixed some issues about the newly introduced features (BP Activity Embed block : <a href=\"https://buddypress.trac.wordpress.org/changeset/12763\">12763</a> ; BP Types Admin UI : <a href=\"https://buddypress.trac.wordpress.org/changeset/12764\">12764</a>, <a href=\"https://buddypress.trac.wordpress.org/changeset/12767\">12767</a>, <a href=\"https://buddypress.trac.wordpress.org/changeset/12775\">12775</a>, <a href=\"https://buddypress.trac.wordpress.org/changeset/12776\">12776</a> & <a href=\"https://buddypress.trac.wordpress.org/changeset/12777\">12778</a>).</li><li>We improved the performance of the BP xProfile component : <a href=\"https://buddypress.trac.wordpress.org/changeset/12768\">12768</a> & <a href=\"https://buddypress.trac.wordpress.org/changeset/12781\">12781</a>.</li><li>We changed Member Types to behave more like Group Types: <a href=\"https://buddypress.trac.wordpress.org/changeset/12765\">12765</a>, <a href=\"https://buddypress.trac.wordpress.org/changeset/12767\">12767</a> & <a href=\"https://buddypress.trac.wordpress.org/changeset/12778\">12778</a>.</li><li>We gave a default avatar to the BP Blogs on multisite configurations : <a href=\"https://buddypress.trac.wordpress.org/changeset/12772\">12772</a> & <a href=\"https://buddypress.trac.wordpress.org/changeset/12779\">12779</a>.</li><li>We fixed issues with the BP Nouveau Template pack : <a href=\"https://buddypress.trac.wordpress.org/changeset/12773\">12773</a> & <a href=\"https://buddypress.trac.wordpress.org/changeset/12774\">12774</a>.</li><li>We improved the BP Invitations feature : <a href=\"https://buddypress.trac.wordpress.org/changeset/12771\">12771</a>.</li></ul>\n\n\n\n<p>We’ve also updated the 7.0.0 release schedule : <strong>the 7.0.0 final release is now scheduled to December 9</strong>.</p>\n\n\n\n<p>And <strong>we need you to get there</strong>: do test the 7.0.0-beta2 release so that we can eventually solve issues you might find with your plugins, themes or specific WordPress/BuddyPress configurations.</p>\n\n\n\n<p>You can test BuddyPress 7.0.0-beta2 in 4 ways :</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a> plugin.</li><li><a href=\"https://downloads.wordpress.org/plugin/buddypress.7.0.0-beta2.zip\">Download the beta here (zip file)</a>.</li><li>Check out our SVN repository: <code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li><li>Clone our read-only Git repository: <code>git clone git://buddypress.git.wordpress.org/</code></li></ul>\n\n\n\n<p>Thanks in advance for your contributions <span class=\"dashicons dashicons-heart\"></span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Nov 2020 23:15:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WPTavern: Themes Team Removes Outdated CSS Guidelines, Adds Stricter Requirement for Links in Content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107659\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:245:\"https://wptavern.com/themes-team-removes-outdated-css-guidelines-adds-stricter-requirement-for-links-in-content?utm_source=rss&utm_medium=rss&utm_campaign=themes-team-removes-outdated-css-guidelines-adds-stricter-requirement-for-links-in-content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6537:\"<p class=\"has-drop-cap\">In yesterday’s twice-monthly meeting, the WordPress Themes Team made a couple of important <a href=\"https://make.wordpress.org/themes/2020/11/11/meeting-notes-tuesday-november-10-2020/\">changes to the official theme directory guidelines</a>. They removed a requirement of some CSS classes that have long been sitting on the chopping block. They also implemented the third stage in their long-term plan to make all WordPress themes accessibility-ready.</p>\n\n\n\n<p>For years, theme authors have needed to either style several WordPress classes via CSS or add empty, unused selectors. It was a bit irritating for authors who fell in the latter group. The list includes several classes like <code>.sticky</code> (for sticky posts) and <code>.bypostauthor</code> (for post author comments). Now, styling these classes are optional.</p>\n\n\n\n<p>The one question mark in this decision is probably around the classes for handling left, right, and center alignment. While the newer block editor stylesheet does support these classes on the front end, it could leave end-users in the dust if they are using the classic editor and a theme author decides to drop support. Any images in posts could become misaligned. Theme authors should test this and consider any problems before deciding to remove these from their stylesheets. For the other classes, those are mostly design decisions.</p>\n\n\n\n<p>This change will not be official until the <a href=\"https://github.com/WordPress/theme-check/issues/282\">Theme Check plugin is updated</a> to allow themes without these classes through the system.</p>\n\n\n\n<p>The second big change is the reignition of the push toward creating more accessible themes in the directory. All themes in the directory are now required to distinguish links in “content” areas via an underline.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/themes/handbook/review/required/#links-within-content-must-be-underlined\">full guideline</a> is as follows:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>When links appear within a larger body of block-level content, they must be clearly distinguishable from surrounding content (Post content, comment content, text widgets, custom options with large blocks of texts).</p><p>Links in navigation-like contexts (e.g., menus, lists of upcoming posts in widgets, grouped post meta data) do not need to be specifically distinguished from surrounding content.</p><p>The underline is the only accepted method of indicating links within content. Bold, italicized, or color-differentiated text is ambiguous and will not pass.</p></blockquote>\n\n\n\n<p>While this is a simple change, it is a bold one. Thus far, there has not been any pushback from theme authors on the announcement post or in the team meeting. However, some may be expected as the news trickles through the theme design community.</p>\n\n\n\n<p>The one question that arose about the requirement was whether theme authors could add an option to allow end-users to opt-out of this behavior. The team said this was allowed as long as the underlined links were enabled by default.</p>\n\n\n\n<h2>The Road to Accessibility</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">In July 2019, the <a href=\"https://wptavern.com/wordpress-theme-review-team-initiates-new-long-term-plan-to-make-all-wordpress-org-themes-accessible\">Themes Team made a commitment</a> to push theme authors to make their themes more accessible. It was not a switch they were going to flip overnight. Instead, the team made a goal of implementing a new accessibility-related requirement every two months or so. These periods would give both theme authors and reviewers ample time to familiarize themselves with each change.</p>\n\n\n\n<p>This is the third requirement added to the guidelines since the team implemented the plan. The team started with some low-hanging fruit and added a requirement that themes ship with a skip-to-content link. That guideline addition went over relatively smoothly. The team quickly added a new guideline requiring that visitors be able to navigate menus via keyboard.</p>\n\n\n\n<p>That second guideline landed in August 2019. From the outside looking in, the project was initially going well. However, until yesterday, the team had not added any new accessibility guidelines. Over a year had passed, and the plan seemed to be grinding to a halt. Accessibility advocates were probably wondering what happened.</p>\n\n\n\n<p>In a <a href=\"https://wptavern.com/why-accessibility-matters-for-wordpress-themes-and-their-users\">discussion with the Themes Team reps</a> a few months ago, they were not sure when they would implement the next guideline. The project was not going as planned.</p>\n\n\n\n<p>“We have not added anything else above that because theme authors are still not releasing themes with working implementations of skip links and usable keyboard navigation,” said team representative William Patton at the time. “When those two things become habitual it will be time to introduce another aspect as a requirement. The fact that this has taken so long for authors to get this right probably indicates that we need to do better at guiding them to resources to learn how to do it and why it is important. Perhaps that is a better avenue to pursue than looking to implement additional asks of them.”</p>\n\n\n\n<p>Team rep Carolina Nymark shared similar sentiments. She mentioned that underlined links were up next on the list. However, they did not have a deadline in mind yet.</p>\n\n\n\n<p>“Skip links and keyboard navigation are still a headache to some extent for some authors,” said Ganga Kafle, a team representative. He said that theme authors who regularly submit themes are doing so with these requirements in mind. However, keyboard navigation remains the biggest pain point, particularly on mobile views.</p>\n\n\n\n<p>“But almost all the themes we get are with skip links working properly,” he said. “That is a good thing so far. The new requirement is not so huge and tough. And I think we need to add such small things in a timely manner.”</p>\n\n\n\n<p>For now, the team seems to be picking up where they left off. There is still a long path to go before the project is complete.</p>\n\n\n\n<p>The best thing that theme authors can do right now is to follow all of the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/\">optional accessibility guidelines</a>. This will prepare them for a future in which they are all required.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Nov 2020 18:10:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: Google Search to Add Page Experience to Ranking Signals in May 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107594\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"https://wptavern.com/google-search-to-add-page-experience-to-ranking-signals-in-may-2021?utm_source=rss&utm_medium=rss&utm_campaign=google-search-to-add-page-experience-to-ranking-signals-in-may-2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6228:\"<p>Six months ago, Google announced its plans to <a href=\"https://wptavern.com/google-search-to-introduce-new-page-experience-ranking-signal-in-2021\">introduce a new ranking signal</a> for Search, based on page experience as measured by <a href=\"https://web.dev/vitals/#core-web-vitals\">Core Web Vitals</a> metrics. At that time, Google promised to give site owners at least six months notice before rolling out the update so they can improve their scores on the metrics before the update. The company reports a 70% increase in users engaging with <a href=\"https://web.dev/vitals-tools/#lighthouse\">Lighthouse</a>, <a href=\"https://web.dev/vitals-tools/#pagespeed-insights\">PageSpeed Insights</a>, and Search Console’s Core Web Vitals report in preparation for the update.</p>\n\n\n\n<p>Today Google confirmed that it will roll out the new page experience signals in May 2021. The search engine also plans to introduce a new visual indicator for pages that fully comply with the page experience requirements:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>On results, the snippet or image preview helps provide topical context for users to know what information a page can provide. Visual indicators on the results are another way to do the same, and we are working on one that identifies pages that have met all of the page experience criteria. We plan to test this soon and if the testing is successful, it will launch in May 2021 and we’ll share more details on the progress of this in the coming months.</p></blockquote>\n\n\n\n<p>There are no additional details on what that will look like but AMP’s lightning bolt is a good example of how small graphics can have a meaningful impact on users’ behavior when navigating through search results.</p>\n\n\n\n<h2>Are WordPress Websites Ready for Page Experience as a Ranking Signal?</h2>\n\n\n\n<p>The page experience signals Google plans to roll out will include Core Web Vitals (Loading, Interactivity, and Visual Stability metrics), combined with existing search signals for <a href=\"https://webmasters.googleblog.com/2015/02/finding-more-mobile-friendly-search.html\">mobile-friendliness</a>, <a href=\"https://webmasters.googleblog.com/2016/09/more-safe-browsing-help-for-webmasters.html\">safe-browsing</a>, <a href=\"https://webmasters.googleblog.com/2016/11/heres-to-more-https-on-web.html\">HTTPS-security</a>, and <a href=\"https://webmasters.googleblog.com/2016/08/helping-users-easily-access-content-on.html\">intrusive interstitial guidelines</a>. Based on where the web is now, in terms of delivering a good page experience (as defined by Google), site owners will undoubtedly need the next six months lead time to become aware of the new ranking signal and prepare.</p>\n\n\n\n<p>Google’s Core Web Vitals assessment gives a pass or fail rating, with a “pass” requiring a good result in all three metrics. A cursory test using Page Speed Insights on a few of the websites for the largest companies, hosts, and agencies in the WordPress space shows most of them do not currently meet these requirements.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>In August, Screaming Frog, a search marketing agency, published a lengthy <a href=\"https://www.screamingfrog.co.uk/passing-the-cwv-assessment/\">report</a> on tests that found only 12% of Mobile and 13% of Desktop results passed the Core Web Vitals assessment. Screaming Frog used the <a href=\"https://www.screamingfrog.co.uk/seo-spider/user-guide/configuration/#pagespeed-insights-integration\">PageSpeed Insights API</a> to test 20,000 websites, which were selected through scraping the first-page organic results from 2,500 keywords across 100 different topics. The report highlighted a few important findings:</p>\n\n\n\n<ul><li>First Input Delay (FID) on Desktop is negligible with <strong>99% of URLs</strong> considered good. And <strong>89% for Mobile</strong>.</li><li><strong>43% of Mobile</strong> and <strong>44% of Desktop</strong> URLs had a good Largest Contentful Paint (LCP).</li><li><strong>46% of Mobile</strong> and <strong>47% of Desktop</strong> URLs had a good Cumulative Layout Shift (CLS).</li><li>URLs in <strong>Position 1</strong> were<strong> 10% more likely</strong> to pass the CWV assessment than URLs in <strong>Position 9</strong>.</li></ul>\n\n\n\n<p>These results suggest that most website owners still have a good deal of work ahead of them in meeting the requirements for passing the Core Web Vitals assessment. Unsurprisingly, Google suggests AMP as the preferred vehicle to get there, but even AMP is not a magic bullet. </p>\n\n\n\n<p>At AMP Fest last month, the project reported that <a href=\"https://blog.amp.dev/2020/10/13/meet-amps-page-experience-guide/\">60% of AMP domains pass the Core Web Vitals metrics</a> (meaning 75% of pages on the domain passed), compared to 12% of non-AMP domains passing based on the same criteria.</p>\n\n\n\n<p>“Looking ahead to Google Search’s upcoming rollout of using page experience signals in ranking, we challenged ourselves to consider how we could better support the AMP community and reach a point where we are able to guarantee that all AMP domains meet the criteria included in the page experience ranking signal,” AMP Product Manager Naina Raisinghani said. </p>\n\n\n\n<p>Those who are already using AMP are encouraged to check out the <a href=\"http://amp.dev/page-experience\">AMP Page Experience Guide</a>, a diagnostic tool that helps developers improve their page experience metrics with practical advice.</p>\n\n\n\n<p>AMP is not required, however, if developers feel confident delivering the kind of performance metrics necessary to pass the Core Web Vitals assessment. Along with the new ranking signal, Google also plans to roll out another promised change that allows non-AMP content to become eligible for placement in the mobile Top Stories feature for Search. Starting in May 2021, sites that can deliver decent page experience metrics will be prioritized, regardless of whether they were built with AMP or through some other means.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Nov 2020 05:00:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: WordPress 5.6 Beta 4 Delayed, Auto-Updates Implementation Changed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107592\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/wordpress-5-6-beta-4-delayed-auto-updates-implementation-changed?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-6-beta-4-delayed-auto-updates-implementation-changed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4446:\"<p class=\"has-drop-cap\">Earlier today, release lead Josepha Haden announced the team was <a href=\"https://make.wordpress.org/core/2020/11/10/wordpress-5-6-beta-4-delayed-from-november-10th-to-november-12th-2020/\">pushing back the release of WordPress 5.6 Beta 4</a> to Thursday, November 12. The beta release was slated to go live today. Questions around the readiness of the auto-updates feature held the beta update back. However, those questions are now resolved.</p>\n\n\n\n<p>Haden followed up the Beta 4 announcement with a more in-depth picture of <a href=\"https://make.wordpress.org/core/2020/11/10/wp5-6-auto-update-implementation-change/\">how auto-updates will change</a> for WordPress 5.6. She summarized the current concerns, laid out a path for version 5.6 and 5.7, and discussed plans for the future. The auto-updates feature is not something that will be complete overnight or in just one release. There are complex technical hurdles that must be jumped and a need for a dedicated focus in upcoming releases.</p>\n\n\n\n<p>Much of her post focuses on the tactics going forward. However, she mentioned in our chat that she does not want the community to lose sight of the big-picture, vision-setting aspects of the project.</p>\n\n\n\n<p>“The subject of auto-updates has resulted in many complicated discussions,” she wrote. “As I reminded the release squad, decisions like these require us to remember that we’re contributing to over 30% of the web, and we have to balance our immediate needs with long term planning.”</p>\n\n\n\n<p>The short-term plan is to allow current WordPress users to opt-in to major updates while enabling auto-updates for both minor and major releases for new installations. Some changes to the auto-updates UI are also in the works along with a plan to revise based on feedback in WordPress 5.6.1.</p>\n\n\n\n<p>In WordPress 5.7, which is several months away, the goal is to add a nudge on the Site Health screen for anyone opted out of major updates. We could also see a setting to opt-into updates as part of the WordPress installation flow for new sites.</p>\n\n\n\n<p><em>The big picture that Haden is talking about?</em> That is to make sure that all WordPress installations are receiving auto-updates, that these updates are seamless, and that users are running a secure version of WordPress.</p>\n\n\n\n<p>Nearly two years ago, WordPress project lead Matt Mullenweg outlined <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">nine goals for 2019</a>. One of those goals was to provide users a method of opting into automatic updates of major releases. It has taken WordPress a while to get there, but it is on the cusp of launching this feature that many have looked forward to.</p>\n\n\n\n<p>Haden also further clarified that goal. She said that the long-term plan for both Mullenweg and the other original feature contributors was to always have auto-updates for major releases enabled by default.</p>\n\n\n\n<p>Apart from those who already prefer to opt-out of any sort of automatic updates, some users’ trust in the system eroded a couple of weeks ago. The WordPress auto-update system <a href=\"https://wptavern.com/wordpress-auto-update-system-misfires-updating-live-sites-to-an-alpha-release\">updated sites to version 5.5.3-alpha</a> instead of 5.5.2 — WordPress currently automatically updates only minor releases. While there was no difference between the two versions and the core team quickly resolved the problem, the damage to user trust was already done.</p>\n\n\n\n<p>This was not an ideal leadup to the December launch of auto-updates for major releases.</p>\n\n\n\n<p>However, one hiccup — one that was effectively not an issue — seven years after WordPress 3.7 launched with security and maintenance updates is not too bad. The system has been a boon to making the web a more secure place. Ultimately, that is what auto-updates are all about. The big goal is to make sure that all WordPress sites are running on the most secure version available.</p>\n\n\n\n<p>“It’s important that whatever we implement isn’t taking us further away from our long term goals of having seamless, auto-updates across the project,” wrote Haden. “Auto-updates can help us have a more secure WordPress ecosystem, and in turn can help change the public perception of WordPress being an unsecure choice for users of any skill level.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Nov 2020 21:29:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"HeroPress: Don’t Miss Your Chance to Speak at WordFest Live 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=3409\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"https://heropress.com/dont-miss-your-chance-to-speak-at-wordfest-live-2021/#utm_source=rss&utm_medium=rss&utm_campaign=dont-miss-your-chance-to-speak-at-wordfest-live-2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1905:\"<img width=\"960\" height=\"536\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/11/WordFest-Purple-Banner-1024x572.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"a banner for WordFest - a festival of inclusive events\" />\n<p>As part of the growth of HeroPress, we’re looking at ways to support other community-focused initiatives, and here’s an excellent place to start: </p>\n\n\n\n<p>Looking for something new in the new year? Kick off 2021 by being a part of <a href=\"http://wordfest.live\">WordFest Live</a>. The team at Big Orange Heart is pulling together the first ever global event focused around 24 hours of celebrating WordPress.</p>\n\n\n\n<p>They need sponsors and attendees, but most timely right now is the call for speakers.</p>\n\n\n\n<p>If you’d like to apply to speak, head over to <a href=\"https://www.wordfest.live/call-for-speakers/?fbclid=IwAR2JnzHaxZw1irDWQv7m4viLkE-vc0idPSe94Drh_yP_UpFaZSUG_MDFNq4\" rel=\"noreferrer noopener\" target=\"_blank\">https://www.wordfest.live/call-for-speakers/</a> The event is looking for speakers from all over the world to share their WordPress knowledge. </p>\n\n\n\n<p>Want to learn more? <a href=\"https://www.wordfest.live/2020/11/speaking-at-wordfest-live-2021/\">This article</a> gives you a feel for the event, answers some questions, provides some topics to help guide you if you’re stuck, and explains what makes this a festival instead of “just” a conference. </p>\n\n\n\n<p>The event is FREE with donations going to support <a href=\"https://www.bigorangeheart.org/\">Big Orange Heart</a>. <strong>Speaker submissions close 18 November, 2020</strong>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/dont-miss-your-chance-to-speak-at-wordfest-live-2021/\">Don’t Miss Your Chance to Speak at WordFest Live 2021</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Nov 2020 20:55:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Biden-Harris Transition Website Launches on WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107503\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"https://wptavern.com/biden-harris-transition-website-launches-on-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=biden-harris-transition-website-launches-on-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4112:\"<p>The Biden-Harris presidential transition team has launched <a href=\"https://twitter.com/Transition46\">a new Twitter account</a> and a website powered by WordPress. <a href=\"https://buildbackbetter.com/\">BuildBackBetter.com</a> is hosted by <a href=\"https://automattic.com/\">Automattic</a> and is zippy fast, thanks to Jetpack, Cloudflare CDN, and a lot of other performance optimizations. It <a href=\"https://tools.pingdom.com/#5d6c07d844800000\">loads in 333 ms</a>, performing just 19 requests.</p>\n\n\n\n<div class=\"wp-block-image shadow-none\"><img /></div>\n\n\n\n<p>The site was created by Ben Ostrower’s team at <a href=\"https://wideeye.co/\">Wide Eye</a>, an 11-year old agency based in Washington, D.C., and the same team behind <a href=\"https://wideeye.co/case-study/kamala-harris-for-the-people/\">Kamala Harris’ 2020 presidential campaign website</a>. Their work on Harris’ site won recognition as a finalist in <a href=\"https://www.fastcompany.com/90547945/graphic-design-innovation-by-design-2020\">Fast Company’s 2020 Innovation by Design Awards</a> in the Graphic Design category.</p>\n\n\n\n<p>In anticipation of winning the election, the Biden-Harris Transition team uploaded the content for the website in October, based on the image URLs. It uses a custom theme called Transition. Peeping under the hood, it looks like the site is using the <a href=\"https://wordpress.org/plugins/ninja-forms/\">Ninja Forms</a> plugin for the email signup and contact forms, as well as Google Tag Manager for analytics. The language switcher is powered by <a href=\"https://multilingualpress.org/\">MultilingualPress</a>. </p>\n\n\n\n<p>Wide Eye paid particular attention to the multilingual and accessibility features of the site with beautifully implemented toggles for contrast and font size. The high contrast toggle (dark mode) creates an elegant and natural transition between modes, without compromising the quality of the design. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The transition site also has an official <a href=\"https://buildbackbetter.com/accessibility-statement/\">accessibility statement</a> regarding the team’s commitment to working towards WCAG 2.1 AA standards compliance:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Our on-going accessibility effort works towards conforming to the Web Content Accessibility Guidelines (WCAG) version 2.1, level AA criteria. These guidelines not only help make web content accessible to users with sensory, cognitive and mobility disabilities, but ultimately to all users, regardless of ability.</p></blockquote>\n\n\n\n<p>Visitors are encouraged to email <a href=\"mailto:accessibility@bidentransition.org\">accessibility@bidentransition.org</a> with feedback on how to provide a better experience.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"es\" dir=\"ltr\">la web de Biden y Harris \"de transición\" (como lo llaman ellos) dice mucho de sus intenciones<br /><br />➡️ Está hecha con WordPress (código abierto)<br />➡️ Es multilingüe (español e inglés)<br />➡️ Es MUY accesible (me da entre un 80 y 90% en tests)<a href=\"https://t.co/vY2Peb8BJ4\">https://t.co/vY2Peb8BJ4</a></p>— Manu Quiroga 🎈 (@Manuls) <a href=\"https://twitter.com/Manuls/status/1325459089607024645?ref_src=twsrc%5Etfw\">November 8, 2020</a></blockquote>\n</div>\n\n\n\n<p>The Biden-Haris transition team is focused on building the necessary infrastructure for providing a smooth transfer of power from the current administration with a focus on critical matters, such as public health policy and national recovery plans. The website publishes updates on the leadership being assembled to tackle these challenges.</p>\n\n\n\n<p>Both the current administration’s <a href=\"https://www.whitehouse.gov/\">whitehouse.gov</a> and <a href=\"https://joebiden.com/\">JoeBiden.com</a> are also running on WordPress. If the Biden-Harris transition website is any indication, the next edition of whitehouse.gov may also relaunch on WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Nov 2020 04:24:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: WordPress 5.6 Will Ship With Another Major jQuery Change\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107508\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"https://wptavern.com/wordpress-5-6-will-ship-with-another-major-jquery-change?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-6-will-ship-with-another-major-jquery-change\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5137:\"<img />\n\n\n\n<p class=\"has-drop-cap\">WordPress 5.6 will ship with the latest jQuery library next month. This is a major update that all plugin and theme developers should begin testing against. Last week, Marius Jensen <a href=\"https://make.wordpress.org/core/2020/11/05/updating-core-jquery-to-version-3-part-2/\">announced the change</a> on the Make Core blog.</p>\n\n\n\n<p>The following jQuery-related libraries are expected to ship in the update (<a href=\"https://core.trac.wordpress.org/ticket/50564\">WordPress Trac ticket</a>):</p>\n\n\n\n<ul><li>jQuery 3.5.1</li><li>jQuery Migrate 3.3.2</li><li>jQuery UI 1.12.1</li></ul>\n\n\n\n<p>This change is not surprising. Lead developer Andrew Ozz announced the <a href=\"https://make.wordpress.org/core/2020/06/29/updating-jquery-version-shipped-with-wordpress/\">original three-phase transition</a> to update the jQuery library earlier this June. The end goal is for WordPress to bundle the most up-to-date version and keep it updated going forward. WordPress has fallen behind and relied on an older version for several release cycles. As a result, much of the plugin and theme ecosystem has relied on outdated features.</p>\n\n\n\n<p>The three steps of the process are as follows:</p>\n\n\n\n<ul><li><strong>WordPress 5.5:</strong> Remove the jQuery Migrate 1.x script.</li><li><strong>WordPress 5.6:</strong> Update to the latest jQuery, jQuery UI, and jQuery Migrate scripts.</li><li><strong>WordPress 5.7:</strong> Remove the jQuery Migrate script.</li></ul>\n\n\n\n<p>If the removing, adding, and once again removing jQuery Migrate sounds confusing, it is because it can be. jQuery Migrate is essentially a helper script that allows developers to “migrate” to newer versions of jQuery. It is a backward-compatibility fix. The version of jQuery Migrate being re-added in WordPress 5.6 corresponds to newer versions of jQuery. It is being added as a temporary fix to give plugin and theme developers time to update their code. The hope is that developers will no longer rely on it by the time WordPress 5.7 ships.</p>\n\n\n\n<p>“Following the best practices and the recommendations of the jQuery team, Migrate should be used as a helper tool, not as a permanent backwards compatibility solution,” said Ozz in our <a href=\"https://wptavern.com/major-jquery-changes-on-the-way-for-wordpress-5-5-and-beyond\">discussion a few months ago</a>. “Ideally, WordPress will be able to do this.”</p>\n\n\n\n<p>Whether jQuery Migrate is removed in WordPress 5.7 remains to be seen. Right now, it is a tentative goal. Thus far, the process is still on track. Much of this also depends on how smooth the WordPress 5.6 ship sails. The <a href=\"https://wptavern.com/enable-jquery-migrate-helper-plugin-passes-10k-active-installs\">5.5 release sunk</a>, at least for many users. This is a result that we do not want to repeat.</p>\n\n\n\n<p>Navigating all of this is no small feat for end-users. They rely on WordPress, plugin, and theme developers to keep things running smoothly. With a month left before the launch of WordPress 5.6, plugin and theme authors need to start testing to make sure their projects work with the latest version of WordPress.</p>\n\n\n\n<p>Expecting some issues with WordPress 5.5, the WordPress development team created the <a href=\"https://wordpress.org/plugins/enable-jquery-migrate-helper/\">Enable jQuery Migrate Helper</a> plugin to ease the transition for users on WordPress 5.5. In the first week, the plugin had over 10,000 active installations. Today, it has over 200,000 users. This number is not necessarily indicative of plugins and themes with outdated code. Presumably, some percentage of these users no longer need the plugin because their extensions have been updated while they have yet to deactivate it. There is no public data on who is using the plugin and why.</p>\n\n\n\n<p>The plugin is still useful right now. It logs deprecation notices and makes them available to users. If the plugin does not log any notices after a week or two, users are encouraged to deactivate the plugin. If they are still seeing notices, they should contact their theme or plugin developers, depending on what is triggering the notices. When users update to WordPress 5.6, they should no longer need the plugin.</p>\n\n\n\n<p>We will be six months into this process for the next major release. Developers have had ample time to make adjustments. Let this be a friendly reminder to test plugins and themes during the 5.6 beta cycle.</p>\n\n\n\n<p>Plugin and theme authors should test with the <code>SCRIPT_DEBUG</code> constant enabled in their <code>wp-config.php</code> files. More information is available via the <a href=\"https://wordpress.org/support/article/debugging-in-wordpress/\">Debugging in WordPress</a> documentation.</p>\n\n\n\n<p>Jensen has published a guide on <a href=\"https://clorith.net/updating-jquery-code-in-your-unmaintained-wordpress-plugin-or-theme/\">updating jQuery in unmaintained themes or plugins</a>. It is primarily geared toward end-users who are comfortable enough going the DIY route. However, developers can find some useful information in the tutorial too.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Nov 2020 21:31:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: Editor Plus 2.1 Overhauls Block Controls UI and Adds Lottie Animations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107421\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"https://wptavern.com/editor-plus-2-1-overhauls-block-controls-ui-and-adds-lottie-animations?utm_source=rss&utm_medium=rss&utm_campaign=editor-plus-2-1-overhauls-block-controls-ui-and-adds-lottie-animations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4629:\"<p class=\"has-drop-cap\">Yesterday, Munir Kamal released version 2.1 of the <a href=\"https://wordpress.org/plugins/editorplus/\">Editor Plus</a> plugin. The biggest change is a complete overhaul of its design controls. The developer also added a new Lottie animation block.</p>\n\n\n\n<p>I probably sound like a broken record after covering the last several releases of the plugin, but Kamal is doing some amazing things with the block editor. He is pushing limits and experimenting in areas that few others have yet to attempt. I am beginning to wonder if he has some secret, never-ending checklist of feature ideas in which he ticks off a few boxes every couple of weeks.</p>\n\n\n\n<p>The plugin has only 1,000+ active installs at the moment. However, it has maintained growth of over 11% since the midway point in 2020. I expect this to accelerate in the coming year as Kamal continues placing individual pieces of the larger puzzle, which includes the free blocks, patterns, and templates at <a href=\"https://gutenberghub.com/\">Gutenberg Hub</a>. He has laid the groundwork and now has one of the largest block editor resources on the web.</p>\n\n\n\n<h2>Design Controls Overhaul</h2>\n\n\n\n<img />More compact block design controls.\n\n\n\n<p class=\"has-drop-cap\">My biggest complaint about Editor Plus has always been how overwhelming some of the block options have felt. Too many choices can be blinding, and they make it tough to figure out where to start when customizing blocks.</p>\n\n\n\n<p>In our last discussion a couple of weeks ago, Kamal said that “other UI improvements are yet to come.” He was already working on tightening up controls, creating what he referred to as a more compact UI. He was drawing inspiration from the Figma and Sketch design tools.</p>\n\n\n\n<p>On the whole, this update creates that cleaner UI that he was shooting for. Some of the biggest improvements come from moving controls and labels inline with one another. The change means that users must do less scrolling to go through a multitude of options.</p>\n\n\n\n<p>There are still areas that could be cleaned and made more intuitive. Right now, Editor Plus adds custom block options tabs where WordPress already has the same tabs. For example, the plugin creates its own “+ Typography” tab. Instead, it should mount its custom options on the existing core Typography tab. From a purely user-experience perspective, it is confusing to see the similarly-named tabs. This would also create a more compact list of top-level tabs. The plugin has other tabs or controls with the same issue.</p>\n\n\n\n<h2>Lottie Animation Block</h2>\n\n\n\n<img />Still shot of the <a href=\"https://lottiefiles.com/37722-bouncy-car\">Bouncy Car</a> Lottie animation.\n\n\n\n<p class=\"has-drop-cap\">Kamal added the plugin’s first seven blocks in the <a href=\"https://wptavern.com/editorplus-introduces-its-first-blocks-and-adds-a-custom-block-creator\">last plugin update</a>. His primary goal is to stretch what the default WordPress blocks can do. However, he needed to create some new blocks to handle some of the layouts that were not possible with core alone. The latest update adds a Lottie animation block, which allows users to link to or upload a JSON file for a Lottie animation.</p>\n\n\n\n<p>Created by Airbnb, Lottie is a library that parses Adobe After Effects animations that are exported as JSON with Bodymovin. It then renders them natively on mobile devices or the web. The file sizes are smaller than many other options, and the animations can be scaled up or down without pixelation.</p>\n\n\n\n<p><a href=\"https://lottiefiles.com/\">LottieFiles</a> is one of the largest libraries of free Lottie animations on the web. It has 1,000s of animations for users to choose from.</p>\n\n\n\n<p>Kamal has already begun making use of the new Lottie animation block in Gutenberg Hub’s <a href=\"https://gutenberghub.com/template-category/patterns/\">section patterns library,</a> which houses block code that users can copy and paste into the editor, provided they have the Editor Plus plugin installed. Thus far, he has added three Lottie patterns with Black Friday animations — just in time for the shopping season.</p>\n\n\n\n<img />Still shot of an animated <a href=\"https://gutenberghub.com/templates/lottie-2/\">Black Friday pattern</a>.\n\n\n\n<p>While the Lottie animation JSON files are small, the script to play the animations is not. The JavaScript file comes in at a whopping 294 kb. This file is only loaded if the Lottie block is in use. The size may be a deal-breaker for some users. However, for animation-heavy websites, it might be worth considering.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Nov 2020 22:03:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: WooCommerce Patches Vulnerability that Allowed Spam Bots to Create Accounts at Checkout\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107352\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:239:\"https://wptavern.com/woocommerce-patches-vulnerability-that-allowed-spam-bots-to-create-accounts-at-checkout?utm_source=rss&utm_medium=rss&utm_campaign=woocommerce-patches-vulnerability-that-allowed-spam-bots-to-create-accounts-at-checkout\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4502:\"<p><a href=\"https://developer.woocommerce.com/2020/11/05/woocommerce-4-6-2-fix-release/\">WooCommerce 4.6.2</a> was released yesterday with a fix for a vulnerability that allowed account creation at checkout, even when the “Allow customers to create an account during checkout” setting is disabled. The WooCommerce team discovered it after several dozen users <a href=\"https://wordpress.org/support/topic/failed-orders-fake-information/\">reported</a> their sites were receiving spam orders, or “failed orders” where the payment details were fake.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Source: <a href=\"https://developer.woocommerce.com/2020/11/05/developer-advisory-spam-orders-and-accounts-from-bots/\">WooCommerce Developer Advisory</a></div>\n\n\n\n<p>WooCommerce developer Rodrigo Primo described how the bot is attacking stores: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The gist of it is that the bot is able to create a user when placing an order exploiting the bug fixed by 4.6.2. After creating the user, the bot tries to find vulnerabilities in other plugins installed on the site that require an unprivileged authenticated account.</p></blockquote>\n\n\n\n<p>WooCommerce recommends users update to 4.6.2 to stop bots from creating users at checkout and then remove any accounts the bot previously created. This will not stop the bots from creating fake orders so store owners are advised to <a href=\"https://woocommerce.com/search/?q=spam&categories=WooCommerce+Extensions&collections=product\">install additional spam protection</a> from the WooCommerce Marketplace. Some users in the support forum are trying free plugins like <a href=\"https://wordpress.org/plugins/advanced-nocaptcha-recaptcha/\">Advanced noCaptcha & Invisible Captcha</a> and <a href=\"https://wordpress.org/plugins/woo-blocker-lite-prevent-fake-orders-and-blacklist-fraud-customers/\">Fraud Prevention Plugin for WooCommerce</a>.</p>\n\n\n\n<p>The first <a href=\"https://wordpress.org/support/topic/failed-orders-fake-information/\">logged instance</a> happened nine days before WooCommerce was able to issue a fix. In the meantime, some users reported having their site’s URL changed and other hacking attempts. Dave Green, WordPress engineer at <a href=\"https://www.makedo.net/\">Make Do</a>, used log files to determine that the script relies on exploiting other vulnerabilities in order to gain access to the database. </p>\n\n\n\n<p>“That script is creating the order, and is also likely to be exploiting whatever vulnerability is available to bypass customer account settings and create a new user; it may or may not be relying upon other exploits for this,” Green <a href=\"https://wordpress.org/support/topic/failed-orders-fake-information/page/8/#post-13611713\">said</a>.</p>\n\n\n\n<p>“Assuming it has successfully gained access to the system, it then tries to update the DB. It either fails and leaves you with nuisance orders, or succeeds and points your site to the scam URL.”</p>\n\n\n\n<p>The WooCommerce team has also fixed this same bug in <a href=\"https://developer.woocommerce.com/2020/11/05/woocommerce-blocks-3-7-1-release-notes/\">WooCommerce Blocks 3.7.1</a>, preventing checkout from creating accounts when the related setting is disabled. </p>\n\n\n\n<p>WooCommerce did not publish the names of any of extensions that have vulnerabilities being exploited by this script. However, some one user <a href=\"https://wordpress.org/support/topic/failed-orders-fake-information/page/2/#post-13592568\">reported</a> an attack that coincided with the fake orders:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I had a failed order yesterday with similar info to the OP as well.</p><p>At the exact same time that failed order came in, my WAF blocked two attempted attacks from the same user/IP (bbbb bbbb) for “TI WooCommerce Wishlist < 1.21.12 – Authenticated WP Options Change”</p></blockquote>\n\n\n\n<p>The script may have been probing for a vulnerability in the <a href=\"https://wordpress.org/plugins/ti-woocommerce-wishlist/\">TI WooCommerce Wishlist</a> plugin, which was <a href=\"https://blog.nintechnet.com/critical-zero-day-vulnerability-fixed-in-wordpress-ti-woocommerce-wishlist-plugin/\">patched</a> approximately two weeks ago. The plugin is active on more than 70,000 WordPress sites.</p>\n\n\n\n<p>The WooCommerce team is still researching the origin and impact of this vulnerability and will publish more information as it becomes available.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Nov 2020 20:37:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"WPTavern: WordPress.com Drops Over 100 Block Patterns, Carving a Path the Design Community Should Follow\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107332\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:251:\"https://wptavern.com/wordpress-com-drops-over-100-block-patterns-carving-a-path-the-design-community-should-follow?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-drops-over-100-block-patterns-carving-a-path-the-design-community-should-follow\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5024:\"<p class=\"has-drop-cap\">Automattic <a href=\"https://wordpress.com/blog/2020/10/28/introducing-patterns/\">released over 100 block patterns</a> to its users on WordPress.com last week. Patterns are a set of blocks that users can insert into their posts or pages for predefined yet customizable sections of content. Most of WordPress.com’s new patterns are general enough in design to cover a range of uses. However, the choices also cover some niches like restaurants.</p>\n\n\n\n<p>“The WordPress Editor is a powerful tool that can help bring your design ideas to life but one of the best parts is, you don’t have to start from scratch,” wrote Ian Stewart, the WordPress.com Design Team Lead, in the announcement. “Building sophisticated designs can be as easy as picking Patterns from our growing library, and snapping them together to create beautiful-looking posts and pages.”</p>\n\n\n\n<p>Aside from the work that Gutenberg Hub has done with its <a href=\"https://wptavern.com/gutenberg-hub-launches-collection-of-100-block-templates\">template library</a>, this is one of the largest dumps of block patterns from anyone in the WordPress community at once. The big question right now is whether the larger WordPress community will see them in some form.</p>\n\n\n\n<p>“No immediate plans to bring those out to the larger community outside of WordPress.com just yet,” said Stewart in a quick chat. “I expect us to contribute in some fashion to the potential block pattern directory but no immediate plans there yet either.”</p>\n\n\n\n<p>Admittedly, I was a little disappointed in the response. I bought into the idea of block patterns from day one and have been patiently awaiting an explosion of layouts from the development community. As a former theme business owner, I see the dozens of problems that patterns would have solved for me five, six, or seven years ago. And, this is a feature that could win over some holdouts who are waiting for the block editor to mature enough to build more advanced layouts.</p>\n\n\n\n<img />Grouping Quote, Spacer, and Columns creates custom Quote pattern.\n\n\n\n<p>“The team’s current focus is on making great-looking WordPress.com patterns and contributing back to the Gutenberg Project when we see potential for improvement with the tools for creating them,” said Stewart. “I think, like you, we’re pretty excited about the potential for Patterns and improved design controls in the Block Editor. So we’re plugging away at that right now. There’s a lot of exciting designs that can be made today and even more that we’ll be able to make in the future.”</p>\n\n\n\n<p><em>Not now</em> is not a <em>no</em>, however. Automattic has a gluttony of talented designers. If a <a href=\"https://wptavern.com/wordpress-contributors-discuss-launching-an-official-block-pattern-directory\">block pattern directory emerges</a> from recent discussions (it’s still an early idea), I have little doubt that individuals from the company would submit patterns. Users of the WordPress software will also see new patterns in themes that the design team releases publicly, such as those within <a href=\"https://wptavern.com/exploring-seedlet-automattics-block-first-wordpress-theme\">Seedlet</a>.</p>\n\n\n\n<img />Heading, Paragraph, Spacer, and YouTube blocks create this pattern.\n\n\n\n<p>The great thing about patterns is that they are easy to recreate. Even if the WordPress.com design team decides to keep them in-house for the foreseeable future, they can offer inspiration to theme authors who are looking to dive into this feature. Most of the patterns use only the core WordPress blocks. However, some of the contact-related patterns use the Form block, which is available via the Jetpack plugin.</p>\n\n\n\n<p>Other patterns make use of the <a href=\"https://wordpress.org/plugins/layout-grid/\">Layout Grid block</a>, which is in the official plugin directory. This is one area that the block editor still lags a bit behind in, so it is necessary to use a plugin to make some of the more complex pattern designs work. However, there is an <a href=\"https://github.com/WordPress/gutenberg/issues/16271\">open discussion on a grid system</a> for core. Tavern readers seemed to be <a href=\"https://wptavern.com/should-the-block-editor-have-a-grid-system\">receptive to the idea</a> earlier this year too.</p>\n\n\n\n<img />Grids within grids — nesting for a complex layout.\n\n\n\n<p>The design team put together an extensive array of call-to-action patterns. With over 20 to choose from in this category alone, just about any site owner who wants to sell a product, service, or content should be able to find something that suits them.</p>\n\n\n\n<img />Call to Action block pattern for shops.\n\n\n\n<p>For now, those using WordPress.com can fully enjoy one of the better parts of the block editor. As for theme authors who are building for the open-source WordPress platform, remember that <em>great artists steal</em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Nov 2020 23:09:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WPTavern: Frontity Inks Partnership with 10up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106861\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:135:\"https://wptavern.com/frontity-inks-partnership-with-10up?utm_source=rss&utm_medium=rss&utm_campaign=frontity-inks-partnership-with-10up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4280:\"<img />photo credit: <a href=\"https://stocksnap.io/photo/laptop-desk-2BJQISGWND\">Matt Moloney</a>\n\n\n\n<p><a href=\"https://frontity.org/\">Frontity</a> has launched a <a href=\"https://frontity.org/partners/\">partnership program</a> to support the maintenance of its open source framework for building React-based WordPress sites. <a href=\"https://10up.com/\">10up</a>, a large agency that provides headless solutions to enterprise customers, is the first partner to join in support of the project.</p>\n\n\n\n<p>“Since we launched Frontity Framework last year, dozens of WordPress publishers have asked our team about consulting services and for help on their migration to Frontity,” Frontity communications director Reyes Martínez said. “It was great to see an increasing interest in using Frontity at an enterprise-level but, unfortunately, we didn’t have an efficient way to help them all and fulfill the custom requirements these projects usually need.”</p>\n\n\n\n<p>This partnership allows Frontity to funnel requests for consulting to 10up and other future agency partners. Reyes said the partnership does not have a monetary aspect but rather 10up is supporting the project by maintaining and extending the framework through contributions. </p>\n\n\n\n<p>Prior to this arrangement, the agency had already contributed to the core framework, most notably by developing the <a href=\"https://github.com/frontity/frontity/pull/507\">Link Component</a> and <a href=\"https://github.com/frontity/frontity/pull/518\">Auto-Prefetching</a> features. 10up also created the <a href=\"https://github.com/10up/frontity-packages/tree/develop/packages/elasticpress\">ElasticPress package</a>, which improves search for sites using Elasticsearch.</p>\n\n\n\n<p>“Frontity provides an easy to use package management interface that enables us to quickly extend the platform — similar to how plugins work in the WordPress ecosystem,” 10up VP of Engineering Taylor Lovett <a href=\"https://10up.com/blog/2020/10up-frontity-partnership/\">said</a>, explaining why the company formalized a partnership with the framework’s creators. “It includes features that typically require custom engineering, such as Google Analytics integration, routing, and integration with plugins (like SEO tools).”</p>\n\n\n\n<p>Earlier this year Frontity raised €1M in funding in a round led by <a href=\"https://kfund.co/\">K Fund</a>, with <a href=\"https://automattic.com/\">Automattic</a> covering 22%. This funding keeps the maintainers free to focus on the open source project. Frontity recently <a href=\"https://runacap.com/ross-index/\">ranked #9</a> on Runa Capital’s Open Source Startup (ROSS) Index, which ranked the top 20 startups by Github star growth for Q3 2020.</p>\n\n\n\n<p>The project’s partnership program is an interesting and somewhat uncommon approach to sustaining the framework’s growth. It redirects a steady stream of leads for custom work to partners, helping potential users find expertise, while ensuring the project is well maintained. As the WordPress ecosystem demonstrates increasing interest in building React-powered websites, Frontity is turning the growing demand for custom work into an opportunity to bolster the open source project and ensure the framework’s future.</p>\n\n\n\n<p>“Some companies are aware of the advantages of a decoupled React front-end and contact us because they are interesting in using Frontity, but don’t have the team or the internal resources to build or migrate a project from scratch,” Reyes said. “Others that have the resources and already tried (or know) Frontity, contact us because they still want a freelancer or agency to help with the development, design or maintenance of the project.”</p>\n\n\n\n<p>Frontity is in conversation with some agencies from the WordPress VIP Agency Partner Program and other hosting companies but could not share more details at this time. The basic qualifications for partners include previous experience with enterprise customers in the WordPress space, expertise with headless WordPress and React frontends, and willingness to actively contribute to the Frontity framework.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Nov 2020 03:18:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"WPTavern: Gutenberg 9.3 Provides Indicator of Where Full-Site Editing Is Going, a Future Without Widgets and Customizer Screens\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107286\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:297:\"https://wptavern.com/gutenberg-9-3-provides-indicator-of-where-full-site-editing-is-going-a-future-without-widgets-and-customizer-screens?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-9-3-provides-indicator-of-where-full-site-editing-is-going-a-future-without-widgets-and-customizer-screens\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7817:\"<p class=\"has-drop-cap\">Version 9.3 of the Gutenberg plugin <a href=\"https://make.wordpress.org/core/2020/11/04/whats-new-in-gutenberg-4-november/\">dropped earlier today</a>. It is the first version of the plugin during the WordPress 5.6 release cycle that will not see its new features land in the core platform. However, bug fixes have been backported to WordPress 5.6 beta 2 and 3. Much of the work for the release focused on full-site editing (FSE) features and fixes. However, some minor enhancements outside of the site editor landed in the update.</p>\n\n\n\n<p>The Social Links block now supports Patreon, Telegram, and Tiktok, which brings the total number of social icons to 43. The Buttons block also has an overhauled alignment option.</p>\n\n\n\n<p>Overall, the release mostly adds polish to existing areas. The development team fixed over 20 bugs and has continued pushing forward with improvements to the site editor.</p>\n\n\n\n<h2>Removal of Widgets and Customizer Screens</h2>\n\n\n\n<img />Widgets and Customizer no longer under Appearance menu.\n\n\n\n<p class=\"has-drop-cap\">The biggest story around Gutenberg 9.3 is not in measurable code or user-facing design changes. Instead, it is within a <a href=\"https://github.com/WordPress/gutenberg/pull/26594\">discussion on a ticket</a> about removing the Customizer and Widgets screens when a user has FSE enabled.</p>\n\n\n\n<p>Version 9.3 hides the Widgets and Customizer items from the WordPress admin menu. However, they are still accessible by directly going to the URL or lingering links within various parts of the WordPress admin like on the Themes screen. This change could have implications for the future of those screens.</p>\n\n\n\n<p>“I think it would be a bad move to hide them now without clearly communicating to the WordPress community what the future of widgets and the customizer is,” <a href=\"https://github.com/WordPress/gutenberg/pull/26594#issuecomment-720260197\">wrote Carolina Nymark</a>, a Themes Team representative, in the ticket. “Hiding them is going to lead to more questions from worried users and developers. I think hiding them without answering these questions publicly is a bad idea. I’m not asking you to answer me in this pull request, I am asking that ‘WordPress,’ be it the core-editor team or someone else, presents the long term plan for these core features.”</p>\n\n\n\n<p>She lists several questions that should be answered by project leaders. Most of them boil down to the central question of what role the customizer will play in the long term:</p>\n\n\n\n<ul><li>Even if the menu item is hidden, the customizer can still be accessed, will the options still work?</li><li>What role will the customizer have with FSE themes?</li><li>Will it be deprecated, how and when? If it is not going to be deprecated, why hide them?</li><li>Will it also be deprecated for non-FSE themes? How and When?</li><li>How do I convert existing customizer options for my updated theme?</li><li>What about the WordPress options that are only available in the customizer, like the site icon?</li></ul>\n\n\n\n<p>“The idea here is that since FSE themes don’t have widget areas, the widgets screen is useless,” <a href=\"https://github.com/WordPress/gutenberg/pull/26594#issuecomment-720347060\">responded Riad Benguella</a>. “For the customizer, it’s a duplicate of the Site Editor screen (similar capabilities), so we need to make sure the Site Editor fills the gaps left by the Customizer. Global styles and Site blocks address most of the site options required for FSE themes and making the switch (hiding the customizer) will allow us to discover gaps we’re missing.”</p>\n\n\n\n<p>That FSE themes will not have widget areas does leave one to wonder why so much work has been put into converting the sidebar/widgets system to use blocks over the past year. It was also a planned feature for WordPress 5.6 that <a href=\"https://wptavern.com/wordpress-5-6-release-team-pulls-the-plug-on-block-based-widgets\">did not make the cut</a>.</p>\n\n\n\n<p>Benguella’s thoughts seem to be in line with 5.6 release lead Josepha Haden’s recent comments. “There’s a lot of interest in reducing the number of workflows, and I’m hopeful that we can consolidate down to just one beautiful, intuitive interface,” she said in response to pulling the plug on widgets for 5.6.</p>\n\n\n\n<p>Benguella’s comment is also one of the first public indications that I have seen about what such a consolidation would look like. Presumably, there will be no need for the Nav Menus, Widgets, or Customizer screens as WordPress progresses in the coming releases.</p>\n\n\n\n<p>I still question whether the work that the team is putting into making those screens handle blocks is worth it. Traditional themes should simply use traditional nav menus, widgets, and customizer options. New block-based themes should use the site editor when it lands.</p>\n\n\n\n<p>There are still some unanswered questions from Nymark’s list. We will need to wait for further feedback from someone in the know. She is right about the need for clear and public communication.</p>\n\n\n\n<h2>Automatic Switching to FSE</h2>\n\n\n\n<img />Notice given to users when they are using an FSE-capable theme.\n\n\n\n<p class=\"has-drop-cap\">One of the biggest improvements, particularly for people testing FSE, is that Gutenberg now <a href=\"https://github.com/WordPress/gutenberg/pull/26500\">automatically enables FSE</a> when a user activates an FSE-capable theme. It will also disable FSE when switching back to a traditional theme.</p>\n\n\n\n<p>Some good themes to test FSE with are <a href=\"https://wordpress.org/themes/q/\">Q</a>, <a href=\"https://github.com/WordPress/theme-experiments/tree/master/twentytwentyone-blocks\">Twenty Twenty-One Blocks</a>, and <a href=\"https://github.com/Automattic/themes/tree/trunk/seedlet-blocks\">Seedlet Blocks</a>.</p>\n\n\n\n<p>Users can also no longer enable FSE via the Gutenberg Experimental settings screen. Using a block-based theme is now a requirement to test this part of the Gutenberg experience. This is probably a good call at this stage. Despite being clearly labeled as experimental, thousands of users run Gutenberg in a production environment and may enable it. Plus, it keeps people from testing a broken experience when their theme does not support it.</p>\n\n\n\n<h2>Buttons Block Content Alignment</h2>\n\n\n\n<img />New inner content alignment option for the Buttons block.\n\n\n\n<p class=\"has-drop-cap\">For theme authors who do not rely on the Gutenberg base styles, they may need to update their theme stylesheets to handle content-alignment classes on the Buttons block. However, they will also need to continue supporting the old classes for backward compatibility.</p>\n\n\n\n<p>This change means that users can use wide and full-width alignment on the block while separately aligning the block’s content.</p>\n\n\n\n<p>The update <a href=\"https://github.com/WordPress/gutenberg/pull/23168\">adds a content justification option</a> to the editor toolbar for the Buttons block. It makes sense to use this method because the Buttons block is technically a container. It merely houses one or more inner Button blocks. The previously-used alignment system is meant for aligning the entire block rather than the block’s content.</p>\n\n\n\n<p>In past versions of the block editor, the Buttons block used the traditional <code>align*</code> classes for left, right, and center alignment. This Gutenberg update switches the classes to <code>is-content-justification-*</code>.</p>\n\n\n\n<p>The editor will automatically transition the Buttons block to the new classes when a user edits a specific post with the block. Otherwise, they will still have the old <code>align*</code> classes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Nov 2020 20:36:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"WPTavern: WordPress 5.6 to Add UI for Enabling Major Version Auto-Updates, Contributors Discuss Adding a Filter to Hide It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107214\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:287:\"https://wptavern.com/wordpress-5-6-to-add-ui-for-enabling-major-version-auto-updates-contributors-discuss-adding-a-filter-to-hide-it?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-6-to-add-ui-for-enabling-major-version-auto-updates-contributors-discuss-adding-a-filter-to-hide-it\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4409:\"<p>WordPress 5.6 is set to add <a href=\"https://make.wordpress.org/core/2020/11/02/introducing-auto-updates-interface-for-core-major-versions-in-wordpress-5-6/\">a UI that allows users to opt into auto-updates for major versions</a> of core. Previously, developers could turn these updates on by setting the <code>WP_AUTO_UPDATE_CORE</code> constant to <code>true</code> or by using the <code>allow_major_auto_core_updates</code> filter. Version 5.6 exposes this setting in the UI to make it more accessible for users. </p>\n\n\n\n<img />\n\n\n\n<p>Jb Audras posted a <a href=\"https://make.wordpress.org/core/2020/11/02/introducing-auto-updates-interface-for-core-major-versions-in-wordpress-5-6/\">dev note</a> on the feature yesterday with instructions for how developers can extend it to add more options.</p>\n\n\n\n<p>A previous version of this UI specified that the setting refers to major versions: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Keep my site up-to-date with regular feature updates (major versions).</p></blockquote>\n\n\n\n<p>This was <a href=\"https://core.trac.wordpress.org/changeset/49285\">changed</a> 11 days ago to remove the wording that tells users which versions the setting controls. </p>\n\n\n\n<p>“The idea was to make the wording more general, and maybe easier to understand,” Jb Audras said. “As minor updates are already automatically updated (since 3.7), new users may not understand what is behind the ‘major versions’ term.”</p>\n\n\n\n<p>This new wording makes the setting unclear. Users may not understand what “major versions” are but “feature updates” is even less clear. Does it include updates to existing features? Or only the introduction of brand new features? A better option might be to link “major versions” to documentation on HelpHub.</p>\n\n\n\n<p>In the current climate, where <a href=\"https://wptavern.com/wordpress-2019-survey-results-show-professionals-slow-to-adopt-block-editor-2020-survey-now-open\">positive sentiment regarding auto-updates is declining</a>, shipping the new UI with a nebulous term like “feature updates” is not going to inspire as much confidence as explicitly identifying what updates the setting controls.</p>\n\n\n\n<p>Audras said he is open to having the wording changed but that so far those testing the beta don’t seem to have a problem with it. String freeze is scheduled for November 10, and after that no more wording updates can be committed. </p>\n\n\n\n<p>Contributors are also discussing adding a filter that would allow developers to <a href=\"https://core.trac.wordpress.org/ticket/51698\">hide the auto-updates UI for major versions</a>. Mike Schroder noted that this would be especially useful for hosting companies that are handling updates in a different way. Some developers or agencies may want to use the filter to prevent their clients from turning auto-updates on for major versions.</p>\n\n\n\n<p>Core Committer Jonathan Desrosiers <a href=\"https://core.trac.wordpress.org/ticket/51698#comment:5\">said</a> he is not in favor of using a filter to hide the UI on a page that is not likely to be accessed by users who have the ability to update core:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>If that change is made (disabling the form when the constant is defined or <code>allow_major_auto_core_updates</code> filter is used), then I am not sure the UI should ever be hidden. As raised by <a href=\"https://profiles.wordpress.org/aaroncampbell\">@aaroncampbell</a> in today’s weekly meeting, the update page is only accessible to those with the <code>update_core</code> capability (trusted users). While there may be valid use cases for wholesale hiding the new feature, I haven’t seen one yet. To me, disabling the form and explaining why the form cannot be used to update the desired behavior is more valuable to the site owner, as they would be better equipped to make an adjustment.</p></blockquote>\n\n\n\n<p>If you want to contribute to the conversation, check out the <a href=\"https://make.wordpress.org/core/2020/11/02/introducing-auto-updates-interface-for-core-major-versions-in-wordpress-5-6/\">dev note</a> on the new auto-updates interface for major versions and the Trac <a href=\"https://core.trac.wordpress.org/ticket/51698\">ticket</a> for a filer that would hide the UI.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Nov 2020 23:32:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: Automattic Releases Spearhead, a Seedlet Child Theme Aimed at Podcasters and Content Creators\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107225\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:249:\"https://wptavern.com/automattic-releases-spearhead-a-seedlet-child-theme-aimed-at-podcasters-and-content-creators?utm_source=rss&utm_medium=rss&utm_campaign=automattic-releases-spearhead-a-seedlet-child-theme-aimed-at-podcasters-and-content-creators\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5128:\"<img />Spearhead theme blog/posts page.\n\n\n\n<p class=\"has-drop-cap\">Last Thursday, Automattic announced its <a href=\"https://wordpress.com/blog/2020/10/29/spearhead/\">new Spearhead theme</a> to WordPress.com users, which primarily focuses on podcasters. However, the team has marketed it toward content creators in general. It is a child theme of the company’s recently-released <a href=\"https://wptavern.com/exploring-seedlet-automattics-block-first-wordpress-theme\">Seedlet theme</a>. Cece Yu originally created the design for the <a href=\"https://spearhead.co/\">Spearhead</a> podcast, which is currently in use on the website.</p>\n\n\n\n<p>Spearhead is not just a theme for WordPress.com users. Self-hosted WordPress users can expect availability in the future. “Adding Spearhead to the themes directory is on our to-do list,” said Jeff Ong, a designer at Automattic. “Just haven’t gotten round to it yet.”</p>\n\n\n\n<p>For self-hosted users who want to give the child theme a spin right now, Automattic hosts all of its free themes in a <a href=\"https://github.com/Automattic/themes\">GitHub mono-repository</a>. The Spearhead theme is located in its own <code>/spearhead</code> sub-directory.</p>\n\n\n\n<p>The announcement post said that the theme is fully block powered. This would be better reworded to say that it is a block-first WordPress theme. When full-site editing lands in core WordPress, we can start saying that themes are fully powered by blocks. Until then, it is just the content that is made of blocks. And, Spearhead’s parent theme is a prime example of a solid block-first theme. I imagine it will be the springboard of many upcoming themes from Automattic’s theme designers, whether that is in the form of a building child themes or using it as a starter.</p>\n\n\n\n<p>Given Spearhead’s podcast roots, the development team wrote a small function to locate an Audio block from the post content and present it on the blog and other archive-type pages below the excerpt. In the past, this sort of feature was difficult to achieve because of little-to-no standardization on audio output. However, the block system makes it possible with just a few lines of code.</p>\n\n\n\n<h2>Automatic Dark Mode Support</h2>\n\n\n\n<img />Light vs. dark modes based on OS settings.\n\n\n\n<p class=\"has-drop-cap\">One of the more interesting aspects of Spearhead is its support for users who are browsing the web in dark mode. This setting is located in various locations based on the user’s operating system. However, when enabled by the user, the theme automatically detects this and switches its color scheme.</p>\n\n\n\n<p>This system uses the <code>prefers-color-scheme</code> <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme\">CSS media feature</a> to style for dark mode. This feature is generally <a href=\"https://caniuse.com/?search=prefers-color-scheme\">supported</a> by most modern web browsers. For browsers and operating systems without dark/light mode support, users will see the default light color scheme for the theme.</p>\n\n\n\n<p>I generally prefer light color schemes, but this is one of the few dark color schemes that is at least comparable or maybe better than the light one. Far too often, I find dark schemes unreadable for long-form content, but the development team took care to select a palette that works well for whatever the site visitor chooses.</p>\n\n\n\n<h2>Custom Block Patterns</h2>\n\n\n\n<img />Inserting the Podcast Links block pattern.\n\n\n\n<p class=\"has-drop-cap\">Spearhead removes the three patterns registered by the Seedlet parent theme. It then registers four of its own patterns:</p>\n\n\n\n<ul><li>Related Posts</li><li>Archive Page</li><li>Podcast Links</li><li>Podcast Links List</li></ul>\n\n\n\n<p>The Related Posts pattern requires the Jetpack plugin to be installed. Currently, the theme does not check if the plugin is active before registering the pattern. Presumably, this is because Jetpack features are available on all WordPress.com sites. However, the development team will need to address this before submitting it to the WordPress.org theme directory.</p>\n\n\n\n<p>The Archive pattern allows users to create an archive page on their site. It displays a search form, the latest posts, and the site’s categories. It is not quite as fully featured as a complete archive plugin. However, it does replace what is often the traditional archive page template shipped with many themes. The use of a pattern is a nice shift that gives users more flexibility to change the output than what is possible with page templates. </p>\n\n\n\n<p>It will be interesting to see if more theme authors follow suit and reevaluate their theme’s page templates. Transitioning to a block pattern may be a better option in many cases.</p>\n\n\n\n<p>The Podcast Links pattern outputs a Navigation block with links to sites that host podcasts. End-users will want to update the link URLs. The Podcast Links List pattern is similar. Surprisingly, it is not actually a list. It is a paragraph of links and does not have the same prefix text.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Nov 2020 22:24:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: WordPress 2019 Survey Results Show Professionals Slow to Adopt Block Editor, 2020 Survey Now Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106946\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:257:\"https://wptavern.com/wordpress-2019-survey-results-show-professionals-slow-to-adopt-block-editor-2020-survey-now-open?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-2019-survey-results-show-professionals-slow-to-adopt-block-editor-2020-survey-now-open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7439:\"<p>WordPress has opened its <a href=\"https://wordpress.org/news/2020/10/take-the-2020-wordpress-annual-survey-and-view-the-2019-results/\">2020 Annual Survey</a>, a short set of questions designed to collect more information on how different groups of people are using the software. It takes approximately 5 minutes to complete and all data is anonymized. </p>\n\n\n\n<p>WordPress Executive Director Josepha Haden Chomphosy <a href=\"https://twitter.com/JosephaHaden/status/1321227911462936576\">said</a> she uses the results from the survey to inform her plans and recommendations all year long. In addition to providing valuable information for WordPress’ leadership, the results will also be shared with the wider community. </p>\n\n\n\n<p>The Community Team has prepared a report with results from the 2015 and 2019 surveys, which had not been previously published. The <a href=\"https://docs.google.com/presentation/d/1FI7eEvSB5SHTSILIBpwOmH9rBffgD6mFnnqSkrEScYo/edit\">2019 results</a> are summarized in a set of Google slides and are also <a href=\"https://www.dropbox.com/sh/bq62sficymopgos/AAA-wx73cDviVG84NSCTgjNDa?dl=0\">available as a PDF or PPT</a>. </p>\n\n\n\n<p>Despite 2019 being the first year that the survey was translated into five different languages, it only received 6,203 respondents, as compared to nearly 46,000 in 2015. The highest number of responses came from Europe (62%) and Asia (12%), while North American engagement has declined drastically to just 10%. Unchanged from previous years, most WordPress users identify as male (79%).</p>\n\n\n\n<h2>2019 NPS Results: Detractors are Steadily Shrinking</h2>\n\n\n\n<p>The 164-page report has a lot of information to digest but one of the highlights is the Net Promoter Score (NPS). It is a loyalty metric derived from users’ responses to the question of how likely they are to recommend WordPress to friends, colleagues, or clients. It provides an informal measurement of user satisfaction or perception.</p>\n\n\n\n<p>WordPress’ 2019 NPS was 54, an increase from previous scores of 50 and 52. Promoters remain static while Detractors are steadily shrinking. This score, however, is skewed towards representing those who have a favorable enough opinion of WordPress to take the time to respond to the survey. The software’s truest detractors have likely already moved on to following other tech communities and may be underrepresented in the NPS score.</p>\n\n\n\n<img />\n\n\n\n<p>More than 75% of respondents have been using WordPress for three years or more. Results indicated the project’s open source community is an important driver for why people use the software:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“Nearly six-in-ten (59%) of survey respondents choose WordPress because it’s what they know best. Half (50%) say they enjoy its open source community. Nearly half (48%) say WordPress has the features they need.”</p></blockquote>\n\n\n\n<p>This indicates that the WordPress community provides a factor of “stickiness” equal to that of the features the software offers. Improving and maintaining a healthy community is an important consideration for user retention, since a user sticking with WordPress is just as important as attracting new users. </p>\n\n\n\n<h2>CMS Usage on the Rise Among Professionals, Blogging Is Declining</h2>\n\n\n\n<p>The 2019 survey found that 76% of professionals are using WordPress as a CMS, with slightly higher numbers (79%) for the WordPress Company Pros segment (those who work for a company that designs/develops websites). Blogging usage among professionals is consistently declining. </p>\n\n\n\n<img />\n\n\n\n<p>In the segment of respondents reporting as Users, blogging is also on the decline, with 49% using WordPress as a personal blog in 2019 vs. 63% in previous years (2015-2017).</p>\n\n\n\n<h2>WordPress Professionals Slow to Adopt the Block Editor</h2>\n\n\n\n<p>One noteworthy section in the 2019 results includes data on block editor adoption. When asked “Which editor do you currently use?”, 53% of respondents who identified as professionals said they are using the Classic Editor. This indicates the block editor is still finding its footing among professionals. An increasing percentage of these professionals are also self-employed (44% in 2019 vs 36% in 2016).</p>\n\n\n\n<p>Another question asked, “Have you or your team built blocks for the new editor?” Less than half of those using the new editor confirmed they have new blocks added for using it, and 17% were not sure. If more than half of professionals have yet to adopt the new editor, it seems the market for block-based products has a great deal of room to grow.</p>\n\n\n\n<img />\n\n\n\n<p>Block editor adoption among Users could be as low as 36% or as high as 56%, but a large portion of users (20%) are unsure which editor they are using. This is not a bad thing, as most new users will have no prior knowledge of the Classic editor. Results from the 2020 survey should be useful for tracking adoption of the block editor over a longer period of time since its debut in WordPress 5.0 (2018.)</p>\n\n\n\n<img />\n\n\n\n<p>Attendance at WordPress community events, such as meetups and WordCamps, seemed to be on the rise, as well as submitting bug reports and contributing to documentation. However, 2019 saw a sharp decline in the percentage of those who report having created their own theme (61% to 42%) or plugin (50% to 38%), when compared with previous years. The percentage of core contributors (5%) has remained steady. This might mean that creating themes and plugins is becoming more difficult or less rewarding, or perhaps the survey attracted more of a different type of user than it did in previous years. There are any number of explanations but this may be a trend to continue watching.</p>\n\n\n\n<img />\n\n\n\n<h2>WordPress Users Remain Uneasy about Auto-Updates, Positive Sentiment is Declining</h2>\n\n\n\n<p>In light of the incident last week where <a href=\"https://wptavern.com/wordpress-auto-update-system-misfires-updating-live-sites-to-an-alpha-release\">WordPress’ auto-update system misfired</a>, updating live sites to an alpha version, the survey includes valuable data about how users are feeling about this feature. The data from 2019 indicates that positive sentiments regarding auto-updates were already on the decline since 2015. </p>\n\n\n\n<img />\n\n\n\n<p>Those reporting that they loved auto-updates declined from 41% to 35%. The percentage of those who would like to see auto-updates for major releases of WordPress declined from 24% to 15%. Positive sentiment regarding theme and plugin auto-updates also decreased. Meanwhile, awareness of auto-updates increased in 2019, and slightly more users reported the feature makes them nervous or that they hate it.</p>\n\n\n\n<p>These are just a few major highlights from the 2019 survey results, but the report includes much more detailed data regarding contributor satisfaction, time spent contributing, contributors’ experiences, and other topics. Check out all the summaries in the Google docs <a href=\"https://docs.google.com/presentation/d/1FI7eEvSB5SHTSILIBpwOmH9rBffgD6mFnnqSkrEScYo/edit#slide=id.g71a4c4edc6_3_232\">presentation</a>, and make sure to <a href=\"https://wordpress.org/news/2020/10/take-the-2020-wordpress-annual-survey-and-view-the-2019-results/\">take the 2020 survey</a> to improve the representation of WordPress users this year. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Nov 2020 23:12:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: Full-Site Editing Is Not the End of Artistic WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106872\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:187:\"https://wptavern.com/full-site-editing-is-not-the-end-of-artistic-wordpress-themes?utm_source=rss&utm_medium=rss&utm_campaign=full-site-editing-is-not-the-end-of-artistic-wordpress-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7258:\"<blockquote class=\"wp-block-quote\"><p>These plain canvas-like themes have until now been a choice for those who prefer it (those who like to design their own thing), but this article makes it sound like these types of themes should be the only choice in the future of WP.</p><p>This is worrisome to me as a non-designer who looks for themes specifically based on things like attractive button styles.</p><p>FSE sounds bad for people like me, who aren’t artistic, can’t coordinate colors, and want themes to do the artistic stuff.</p></blockquote>\n\n\n\n<p>This was the <a href=\"https://wptavern.com/q-first-fse-wordpress-theme-now-live#comment-350166\">response by a Tavern reader</a> named Isabel on the recent <a href=\"https://wptavern.com/q-first-fse-wordpress-theme-now-live\">coverage of the Q theme</a>, an experimental project for the upcoming full-site editing (FSE) feature of WordPress. More specifically, she was worried about a thought that Ari Stathopoulos, the theme designer, had made asking that theme authors not get too opinionated with their default styles for things like buttons and so on. His view seemed to lean more toward creating open and customizable themes. However, it is not the only valid opinion on what themes should look like.</p>\n\n\n\n<p>This is not much different than what we have experienced over the previous decade or more. Some theme authors build open canvasses for users to customize. Other theme authors build intricately-designed layouts with unique textures, shapes, and forms.</p>\n\n\n\n<p>This is not going to change when FSE lands in core WordPress. Themes are merely the expression of the designer’s vision for what a site could look like, and not all theme authors think about design in the same ways.</p>\n\n\n\n<p>The Q theme is meant as a starting point or testbed for FSE. There will be many open-canvas themes. These types of themes are already wildly popular, particularly when used in conjunction with a page builder. Astra has over a million installs. Hello Elementor has surpassed 400,000. GeneratePress has over 300,000. There is big money in this segment of the theme market. FSE will undoubtedly help to increase the competition.</p>\n\n\n\n<p>However, that is not all that themers are giving us. The recently-released <a href=\"https://wordpress.org/themes/photofocus/\">PhotoFocus</a> theme by Catch Themes is on the upward trend, inching its way into the popular themes list on WordPress.org. And, there are hundreds of other options that go beyond the plain ol’ open, black-text-on-white-background themes built for customization by the end-user.</p>\n\n\n\n<p>I simply do not see the current trends shifting too much. Yes, those trends already lean heavily toward open-canvas themes. FSE will allow developers to build those types of themes for core WordPress instead of page builders much more easily. </p>\n\n\n\n<p>However, this is also an opportunity for those who want to experiment with more artistry to do so.</p>\n\n\n\n<p>Stathopoulos did say:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>It’s tempting to add extremely opinionated styles, for buttons for example, but more and more things get added every day to the editor like a border-radius setting for buttons.</p></blockquote>\n\n\n\n<p>But, we must put that into the context of his followup remarks:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Theme authors should avoid the trap of designing an FSE theme having in mind what the editor currently does. Instead, theme authors should strive to build something having in mind a vision of what the editor will eventually become.</p></blockquote>\n\n\n\n<p>He is not saying that every theme needs to be plain and boring. He is not saying that theme authors should be reluctant to put a unique spin on the Button block, for example. He is saying that theme authors need to evaluate how they approach design based on what block options are available for end-users.</p>\n\n\n\n<p>Buttons are a good example of this. With the border-radius option that allows end-users to control rounded corners for buttons, he means that theme authors should not overwrite border-radius styles in their CSS. Users should have the <em>option</em> to control it if they want. He is also talking about using the eventual Global Styles system to set up defaults. If theme authors want rounded buttons by default, they should use the system that WordPress provides rather than writing the CSS. He wants theme authors to be aware of the current block options and styles while preparing for new options in the future.</p>\n\n\n\n<p>This upcoming era of theming changes how theme authors work with the system. It does not mean they cannot branch out in terms of design.</p>\n\n\n\n<p>Here’s where the block editor project makes things more interesting for those users who want things like “attractive button styles” but lack some of the artistic skills expected from the theme’s designer. The block system is set up for unlimited variations on what themes can provide to end-users.</p>\n\n\n\n<p>Sticking with the Button block example, users can already see two block styles named Fill and Outline in WordPress as shown in the following screenshot.</p>\n\n\n\n<img />Using the Outline block style.\n\n\n\n<p>Theme authors can add all sorts of style variations today, and some have already done so. Block styles offer a lot of variety, and WordPress allows users to further customize these if they wish to do so.</p>\n\n\n\n<p>WordPress also offers two different block patterns that utilize the Buttons block. They are basic two and three-button layouts. However, theme authors can use the Patterns API to create any number of layout options using buttons.</p>\n\n\n\n<img />Inserting the “two buttons” block pattern into the editor.\n\n\n\n<p>Stathopoulos’s comments on not being too opinionated should also be taken in the context of the upcoming Global Styles system, which is currently being tested in the Gutenberg plugin. This system allows theme authors to set up global, default options for everything. They can also drill down and set up default options for individual blocks. For example, a theme author can set a default background gradient, rounded corners, and any other options available for the Button block. These default options can span the width of the spectrum, from a simple and understated square button to a rounded button with a vibrant gradient background and a drop-shadow. The more block options that WordPress’s editor offers in the future, the more flexible theme authors can be with their designs.</p>\n\n\n\n<img />Experimental, per-block global styles in the site editor (feature not finished).\n\n\n\n<p>Isabel’s concern is valid. It is tough to keep up with all the changes happening and those that are on the feature list of the future. The Gutenberg project moves fast, and when we write about features or experimental themes, it is easy to overlook some of those questions that the average user might have.</p>\n\n\n\n<p>To put some users’ minds at ease, future WordPress themes will undoubtedly offer a breadth of artistic designs that are suitable for all sorts of websites. Designers and non-designers alike should look forward to the months and years ahead.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Nov 2020 22:12:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.6 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9234\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5120:\"<p>WordPress 5.6 Beta 3 is now available for testing!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we recommend that you run this version on a test site.</p>\n\n\n\n<p>You can test the WordPress 5.6 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option).</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-beta3.zip\">download the beta here (zip)</a>.</li></ul>\n\n\n\n<p>The current target for the final release is December 8, 2020. This is just <strong>five weeks away</strong>, so your help is needed to ensure this release is tested properly.</p>\n\n\n\n<p>Thank you to all of the contributors that tested the <a href=\"https://wordpress.org/news/2020/10/wordpress-5-6-beta-2/\">beta 2 </a>development release and provided feedback. Testing for bugs is an important part of polishing each release and a great way to contribute to WordPress.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since beta 2, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F28%2F2020..11%2F03%2F2020&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">20 bugs</a> have been fixed. Here is a summary of a few changes included in beta 3:</p>\n\n\n\n<ul><li>Added block patterns for Twenty Twenty (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51098\">#51098</a>) and Twenty Nineteen (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51099\">#51099</a>) themes.</li><li>Added theme support for navigation-widgets (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51445\">#51445</a>).</li><li>Fixed incorrect slashes in the URL if the parent is empty for REST API (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/44745\">#44745</a>).</li><li>Added a test to Site Health to verify that the <code>Authorization</code> header is working as expected for Application Passwords (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51638\">#51638</a>).</li><li>10 additional bugs fixed in the block editor (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://github.com/WordPress/gutenberg/pull/26588\">#26588</a>).</li></ul>\n\n\n\n<p>To see all of the features for each Gutenberg release in detail, check out the release posts: <a href=\"https://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">8.6</a>, <a href=\"https://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a>, <a href=\"https://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>, <a href=\"https://make.wordpress.org/core/2020/09/03/whats-new-in-gutenberg-2-september/\">8.9</a>, <a href=\"https://make.wordpress.org/core/2020/09/16/whats-new-in-gutenberg-16-september/\">9.0</a>, <a href=\"https://make.wordpress.org/core/2020/10/01/whats-new-in-gutenberg-30-september/\">9.1</a>, <a href=\"https://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">9.2</a>, and <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v9.3.0-rc.1\">9.3</a>.</p>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.6 has lots of refinements to the developer experience as well. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-6+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/query?status=new&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">known bugs</a>.</p>\n\n\n\n<p><em>Props to <a href=\"https://profiles.wordpress.org/hellofromtonya/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hellofromtonya</a> for help and <a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a> for final review.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Nov 2020 21:23:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.org blog: The Month in WordPress: October 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9225\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2020/11/the-month-in-wordpress-october-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11859:\"<p>October 2020 was a notable month for WordPress lovers, thanks to the release of several products and updates. Read on to keep up with all the latest news!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The 2020 WordPress Annual Survey is out</h2>\n\n\n\n<p>The team published the <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-english\">2020 WordPress Annual survey</a> — to help those who build WordPress to understand more about our software usage and our contributors’ experience. The Annual Survey will be open for at least 6 weeks and is available in <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-french\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-german\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-japanese\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-russian\">Russian</a>, and <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-spanish\">Spanish</a>. The survey results (once complete) will be posted on <a href=\"https://wordpress.org/news/\">WordPress.org/news</a>. The<a href=\"https://wordpress.org/news/2020/10/take-the-2020-wordpress-annual-survey-and-view-the-2019-results/\"> 2019 survey results</a> have also been released and can now be viewed as <a href=\"https://docs.google.com/presentation/d/1FI7eEvSB5SHTSILIBpwOmH9rBffgD6mFnnqSkrEScYo/edit\">slides</a> or downloaded in <a href=\"https://www.dropbox.com/sh/bq62sficymopgos/AAA-wx73cDviVG84NSCTgjNDa?dl=0\">PDF format</a>. </p>\n\n\n\n<h2>WordPress Translation celebrations spanned four weeks</h2>\n\n\n\n<p>The last week of September and most of October were focused on recruiting and encouraging polyglot contributors to the WordPress translation project. What was originally envisioned as a single-day event lasted 24 days! The Polyglots and Marketing Teams are exploring how future mini-events can be supported to continue building the momentum. Recordings of the live talks and interviews with contributors are available <a href=\"https://www.youtube.com/playlist?list=PLCVEqsAbLfffK5WzOT9BhPsh82HgM8vj1\">on YouTube</a>. Write-ups from the different events are <a href=\"https://wptranslationday.org/\">on the WPTranslationDay website</a>. </p>\n\n\n\n<p>Want to help WordPress speak your own language? Follow <a href=\"https://make.wordpress.org/polyglots\">the Polyglots team blog</a> and join the <a href=\"https://wordpress.slack.com/archives/C02RP50LK\">#polyglots</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. </p>\n\n\n\n<h2>WordPress maintenance and beta releases</h2>\n\n\n\n<p>The Core team released <a href=\"https://make.wordpress.org/core/2020/10/30/wordpress-5-5-3-release-some-technical-details/\">WordPress 5.5.3 on Oct. 31</a>, following the release of Version <a href=\"https://wordpress.org/news/2020/10/wordpress-5-5-2-security-and-maintenance-release/\">5.5.2 on Oct. 29</a>. Both releases fix several bugs and security issues with WordPress. You can update to the latest version directly from your WordPress dashboard or <a href=\"https://wordpress.org/download/\">download</a> it now from WordPress.org. The team also released WordPress 5.6 <a href=\"https://wordpress.org/news/2020/10/wordpress-5-6-beta-1/\">Beta 1</a> on Oct. 20, followed by <a href=\"https://wordpress.org/news/2020/10/wordpress-5-6-beta-2/\">Beta 2 </a>on Oct. 27. When ready, the final release will include improvements to the editor, auto-updates for major releases, PHP 8 support, and the Twenty Twenty One theme. You can test the Beta versions by <a href=\"https://wordpress.org/wordpress-5.6-beta2.zip\">downloading them from WordPress.org</a> or using the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin.<br /></p>\n\n\n\n<p>Want to be involved in the next release? Follow WordPress 5.6 updates on the <a href=\"https://make.wordpress.org/core/5-6/\">development cycle</a> and sign-up for the <a href=\"https://make.wordpress.org/core/2020/10/22/code-review-commit-office-hours-for-5-6/\">code review/commit office hours</a>. You can help build WordPress Core by following<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a> and joining the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. If you would like to help out with WordPress 5.6 outreach, contact the <a href=\"https://make.wordpress.org/marketing/\">WordPress Marketing team</a> on the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel.</p>\n\n\n\n<h2>Gutenberg 9.2 is released</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">Version 9.2</a> of the Gutenberg plugin came out on Oct. 21. This release offers support for video subtitles, the ability to transform selected blocks into the columns block, background patterns in cover blocks, along with several exciting features such as improvements to the widget screen, as well as bug fixes. You can find out more about the Gutenberg roadmap in the <a href=\"https://make.wordpress.org/core/2020/10/01/whats-next-in-gutenberg-october/\">What’s next in Gutenberg blog post</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Learn WordPress is gearing up for launch</h2>\n\n\n\n<p>The <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> initiative, which offers <a href=\"https://learn.wordpress.org/workshops/\">WordPress video workshops</a> followed by <a href=\"https://www.meetup.com/learn-wordpress-discussions/\">interactive discussions</a>, is aiming to put out two courses by the end of the year as part of its full launch. The team is working on creating courses and is requesting feedback from community members on the <a href=\"https://make.wordpress.org/community/2020/10/23/learn-wordpress-course-planning/\">planned list of courses</a>.<br /><br />Want to contribute to Learn WordPress? You can now submit a <a href=\"https://learn.wordpress.org/workshop-presenter-application/\">workshop application</a> (submissions in non-English languages are welcome), apply to become a <a href=\"https://learn.wordpress.org/discussion-group-leader-application/\">discussion group leader</a>, organize <a href=\"https://make.wordpress.org/community/handbook/virtual-events/organize-learn-wordpress-discussion-groups-for-your-wordpress-meetup/\">discussions for your local WordPress meetup group</a>, or <a href=\"https://make.wordpress.org/training/2020/10/14/call-for-screenshots-contributors/\">update screenshots</a> on existing <a href=\"https://learn.wordpress.org/lesson-plans/\">lesson plans</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The <a href=\"https://make.wordpress.org/updates/2020/10/20/quarterly-updates-q3-2020/\">Q3 2020 update</a> from the WordPress project is now out!</li><li>The <a href=\"https://make.wordpress.org/marketing/\">WordPress Marketing team</a> has put together a list of <a href=\"https://github.com/wpmarketingteam/WP5.5\">WordPress 5.5 marketing resources</a> consisting of video presentations, slides, questions & answers, social media posts, and more – aimed at both developers and non-developers. The team has also prepared a list of <a href=\"https://www.youtube.com/playlist?list=PLCVEqsAbLffcS1Rx-COZ5CZBOmXZJEe6k\">captioned screen-recordings</a> in several languages to aid new contributors. Contact the team on the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel if you would like to contribute to these and upcoming projects. </li><li>The <a href=\"https://make.wordpress.org/core\">WordPress Core team</a> has <a href=\"https://make.wordpress.org/core/2020/09/23/proposal-rest-api-authentication-application-passwords/\">announced a proposal</a> to introduce application passwords for REST API integrations.</li><li>Five online WordCamps took place in October: <a href=\"https://2020.rochester.wordcamp.org/\">WordCamp Rochester, NY</a>, <a href=\"https://austin.wordcamp.org/2020/\">WordCamp Austin, TX</a>, <a href=\"https://2020.italia.wordcamp.org/\">WordCamp Italia Online</a>, <a href=\"https://la.wordcamp.org/2020/\">WordCamp Los Angeles, CA</a>, and <a href=\"https://bulgaria.wordcamp.org/2020/\">WordCamp Bulgaria Online</a>. You can find livestream recaps of these camps on their websites. The camps are also in the process of uploading their videos to <a href=\"https://wordpress.tv/\">WordPress.tv</a>. Check out the <a href=\"https://central.wordcamp.org/schedule/\">WordCamp Schedule</a> to catch up with upcoming online WordCamps.</li><li>Contributor teams have started work on <a href=\"https://make.wordpress.org/core/2020/10/22/twenty-twenty-one-dark-mode-discussion/\">adding dark mode support for the Twenty Twenty One theme</a>. Additionally, the development of the <a href=\"https://make.wordpress.org/themes/2020/10/23/developing-the-full-site-editing-version-of-twenty-twenty-one/\">Full Site Editing version of Twenty Twenty One</a> has also kicked-off in the <a href=\"https://github.com/WordPress/theme-experiments/tree/master/twentytwentyone-blocks\">Theme Experiments GitHub repository</a>.</li><li><a href=\"https://buddypress.org/2020/10/buddypress-7-0-0-beta1/\">BuddyPress 7.0 beta</a>, which comes with new administration screens, blocks, and improved CLI support – is now available! </li><li>The Core team is <a href=\"https://make.wordpress.org/core/2020/10/06/revisiting-starter-content-on-org-and-beyond/\">revisiting starter content for WordPress themes</a> as part of the 5.6 release. The team also decided not to ship the widgets screen in WordPress 5.6 and have started discussions on <a href=\"https://make.wordpress.org/core/2020/10/29/discussion-align-the-wordpress-release-cycle-with-the-industry-standard/\">aligning the WordPress release cycle with industry standards</a>.</li><li>WordPress Accessibility enthusiasts all over the world joined hands for the first ever 24 hour <a href=\"https://wpaccessibilityday.org/\">WP Accessibility day</a> event on Oct. 2. You can find the recorded livestream of the event on its <a href=\"https://www.youtube.com/channel/UCes9XCUZd51CAigbBEGlfNg/featured?view_as=subscriber\">YouTube channel</a>.</li><li>The <a href=\"https://make.wordpress.org/meta\">Meta</a> team has <a href=\"https://make.wordpress.org/meta/2020/10/27/block-pattern-directory-ideas-and-discussion/\">kicked off a discussion</a> on setting up a <a href=\"https://developer.wordpress.org/block-editor/developers/block-api/block-patterns/\">Block pattern</a> directory (similar to the <a href=\"https://wordpress.org/support/article/block-directory/\">existing block directory</a>). </li><li>The <a href=\"https://make.wordpress.org/themes\">Themes</a> team has published a post clarifying <a href=\"https://make.wordpress.org/themes/2020/10/07/block-based-themes-and-wordpress-5-6/\">how Block based themes will work with WordPress 5.6</a>. Check out the <a href=\"https://developer.wordpress.org/block-editor/tutorials/block-based-themes/\">block-based theme tutorial</a> and its <a href=\"https://github.com/WordPress/gutenberg/blob/master/docs/designers-developers/developers/themes/block-based-themes.md\">documentation</a> to learn how to build block-based themes. </li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Nov 2020 18:14:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: WordPress Auto-Update System Misfires, Updating Live Sites to an Alpha Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107076\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:219:\"https://wptavern.com/wordpress-auto-update-system-misfires-updating-live-sites-to-an-alpha-release?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-auto-update-system-misfires-updating-live-sites-to-an-alpha-release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6634:\"<p>WordPress’ Core systems team had an eventful Friday when an error in the auto-update system caused sites to update to WordPress 5.5.3-alpha-49449, including live production sites with no auto-update constants defined. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I just had a random production site auto-update itself to <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> 5.5.3-alpha 😨 Anyone else seeing this?</p>— Mark Root-Wiley (@MRWweb) <a href=\"https://twitter.com/MRWweb/status/1322199942333526018?ref_src=twsrc%5Etfw\">October 30, 2020</a></blockquote>\n</div>\n\n\n\n<p>Those who received an email about the update logged into their sites to see the message: “BETA TESTERS: This site is set up to install updates of future beta versions automatically.” </p>\n\n\n\n<p>Shaun Rieman logged the first ticket about <a href=\"https://core.trac.wordpress.org/ticket/51679\">sites being updated to 5.5.3-alpha-49449</a>, which was also incidentally his first WordPress trac ticket. More users and developers confirmed the issue.</p>\n\n\n\n<p>“It’s worth noting that there’s no functional difference between 5.5.2 and 5.5.3-alpha, so there’s no need to worry in that regard,” core committer John Blackbourn said. </p>\n\n\n\n<p>Sites that were accidentally updated also installed all the default themes released over the last decade, as well as Akismet. Developers will need to manually delete the bundled themes that they don’t need.</p>\n\n\n\n<p>In under an hour, all affected sites were automatically returned to 5.5.2, but the incident has eroded trust and damaged confidence in the auto-update system. Several commenting on the ticket asked how they can explicitly disable development updates.</p>\n\n\n\n<p>“The worrying thing is that a single developer can do this, seemingly without any checking or confirmation by other developers,” UK-based developer Paul Stenning said. “This is a serious security concern as a rogue developer could push out malicious code in an update that nobody else checks.”</p>\n\n\n\n<p>WordPress agency owner Rob Migchels, who had approximately 50 websites affected, tracked 18 minutes between the the trac ticket (<a href=\"https://core.trac.wordpress.org/ticket/51679\">#51679</a>) and receiving the fix. </p>\n\n\n\n<p>“The 5.5.3-alpha issue is a side effect of another issue that occurred on 5.5.2,” WordPress engineer and 5.6 Triage release lead Tonya Mork said. Jake Spurlock published an official statement regarding the incident as part of the <a href=\"https://wordpress.org/news/2020/10/wordpress-5-5-3-maintenance-release/\">5.5.3 release notes</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“Earlier today — between approximately 15:30 and 16:00 UTC — the auto-update system for WordPress updated some sites from version 5.5.2 to version 5.5.3-alpha. This auto-update was due to an error in the Updates API caused by the 5.5.3 release preparations.”</p></blockquote>\n\n\n\n<p>Spurlock elaborated on the <a href=\"https://make.wordpress.org/core/2020/10/30/wordpress-5-5-3-release-some-technical-details/\">technical details</a> in a separate post on the WordPress development blog:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>While work was being done to prepare for WordPress 5.5.3, the release team attempted to make 5.5.2 unavailable for download on WordPress.org to limit the spread of the issue noted in the section above, as the error only affected fresh installations. This action resulted in some installations being updated to a pre-release “5.5.3-alpha” version.</p></blockquote>\n\n\n\n<p>In a situation like this, where users who haven’t elected to run their live sites on beta releases are getting a forced update, site owners might wonder whether this update is actually arriving from WordPress, or if the system has been hijacked. </p>\n\n\n\n<p>Security researcher Slavco Mihajloski, who <a href=\"https://wptavern.com/loginizer-plugin-gets-forced-security-update-for-vulnerabilities-affecting-1-million-users\">commented</a> last week on the lack of transparency regarding how automatic updates are tested and performed, said this incident highlights the need for more openness surrounding the process.</p>\n\n\n\n<p>“Why is transparency important? Because procedure will become public and when public, the community will be able to contribute in order to improve it,” Mihajloski said. “At the moment it is more than obvious that this process and the whole security at WP.dot org lacks QA and QC. Each task is left to an individual or closed group. Imagine the following: what if an automatic security update could be pushed only if: – X out of Y (where X < Y) authorities agree that update is fine – have a pilot update on let’s say 100 different servers (I hope .org could afford this) where regression tests will be fired against each one. The current problems would not occur.”</p>\n\n\n\n<p>Automatic background updates for minor releases have saved developers thousands of hours in updating sites. A UI for allowing users to opt into automatic updates for major releases is on the roadmap for WordPress 5.6, expected in early December. </p>\n\n\n\n<p>This particular accidental update has betrayed for many developers what was already a somewhat fragile trust in the auto-update system. It doesn’t shore up more confidence for selling the idea of core updates when 5.6 is released, but it doesn’t mean that auto-updates are not a good idea. WordPress.org will need to put better processes in place in order to win back users’ trust.</p>\n\n\n\n<p>The incident affected more than 100 sites for WordPress agency owner Robert Staddon. He reports that they all displayed the “Update now” button with the confusing and incorrect text seen below. Staddon said the incident has not yet caused him to change his approach to allowing clients to receive auto-updates. </p>\n\n\n\n<img />\n\n\n\n<p>“I was very grateful for the extraordinarily fast response time to get the problem fixed,” Staddon said. “However, it did shake my confidence in the WordPress auto-update process. Considering the number of websites using WordPress, a mistake of this magnitude could end up having a rather catastrophic effect around the web. I would hope that the core team would be able to evaluate how this happened and consider putting some checks in place to make sure it doesn’t happen again.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Oct 2020 22:57:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Twenty Twenty-One Blocks Theme Launching as a Separate Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107065\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"https://wptavern.com/twenty-twenty-one-blocks-theme-launching-as-a-separate-project?utm_source=rss&utm_medium=rss&utm_campaign=twenty-twenty-one-blocks-theme-launching-as-a-separate-project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4519:\"<img />Twenty Twenty-One in the Gutenberg site editor.\n\n\n\n<p class=\"has-drop-cap\">Last Friday, Themes Team representative Carolina Nymark announced the <a href=\"https://make.wordpress.org/themes/2020/10/23/developing-the-full-site-editing-version-of-twenty-twenty-one/\">Twenty Twenty-One Blocks </a>theme project. It is a block-based version of the Twenty Twenty-One default theme that is shipping along with WordPress 5.6. It will work with the site editor available in the Gutenberg plugin. Developers will work on the two themes as separate projects.</p>\n\n\n\n<p>The original plan was to <a href=\"https://make.wordpress.org/core/2020/09/23/introducing-twenty-twenty-one/\">explore support for full-site editing</a> after the WordPress Beta 1 release for Twenty Twenty-One. Some had hoped that support would land in the theme itself. However, a second theme could be a better path in the long run.</p>\n\n\n\n<p>As I wrote in my <a href=\"https://wptavern.com/first-look-at-twenty-twenty-one-wordpresss-upcoming-default-theme\">original coverage of Twenty Twenty-One</a>, it did not seem likely that full-site editing would be far enough along in development for it to be a primary feature for the theme. Since the feature will not be in WordPress 5.6, it makes sense to develop for it outside of the primary theme for the time being.</p>\n\n\n\n<p>“Twenty Twenty-One Blocks is an experimental theme created as an example to highlight what is possible with Full Site Editing,” wrote Nymark in the announcement. “The theme will need Gutenberg and the Full Site Editing experiment to be enabled. It will not be part of Core, but once complete it will be available in the theme directory.”</p>\n\n\n\n<p>Currently, there are no plans to integrate the two themes down the road. They will be maintained as separate projects. This sounds like a smart strategy for this theme. It will allow developers to work on the Blocks theme as a separate entity in the coming months without having to worry about potential problems with merging.</p>\n\n\n\n<p>I am excited about this project because it means we get a somewhat official, though not technically a default, theme that supports full-site editing. Otherwise, the community would have had to wait another year for the Twenty Twenty-Two theme, which will presumably be 100% built with blocks.</p>\n\n\n\n<p>The <a href=\"https://wptavern.com/q-first-fse-wordpress-theme-now-live\">Q theme</a> by Ari Stathopoulos, a Themes Team representative, is a little farther along at the moment. It is a solid starting point and learning tool. However, there should be a theme project coming from core WordPress developers that is leading the way for other theme authors. There is a sense of trust, particularly for first-time theme authors, when picking apart an officially-supported theme that it is built to current standards. That is why Twenty Twenty-One Blocks is important.</p>\n\n\n\n<p>Thus far, little work has gone into the theme, much of it coming from the <a href=\"https://github.com/WordPress/theme-experiments/pull/57\">original pull request</a> to kick off development from Kjell Reigstad. The theme is currently stored in the WordPress <a href=\"https://github.com/WordPress/theme-experiments/tree/master/twentytwentyone-blocks\">Theme Experiments repository</a>. Ideally, the team will split this theme into its own GitHub repository since it will be added to the theme directory and not merely an experiment.</p>\n\n\n\n<p>For theme authors who want to cut their teeth on building block-based themes, this would be a good place to begin taking those initial steps. Or, it will at least be a good project to follow because this is as close to an “official” theme that supports full-site editing that we will see for a while.</p>\n\n\n\n<p>At this point, the theme does not do a lot. It is minimal and nowhere near a block-based equivalent of Twenty Twenty-One. However, it works as well as most other themes supporting Gutenberg’s site editor.</p>\n\n\n\n<p>For now, template parts do not seem to be working on the front end. However, template parts have been hit or miss in my tests for a while, sometimes seemingly working only by some randomly magical force that rears its head when I close in on the limits of my frustration — it will likely begin working immediately after publishing this post. That is often the nature of testing alpha-level software. Nevertheless, I am excited about following the development of this theme in the coming weeks and months.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Oct 2020 20:35:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: WordPress 5.5.3 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9212\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2020/10/wordpress-5-5-3-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4116:\"<p>WordPress 5.5.3 is now available. </p>\n\n\n\n<p>This maintenance release fixes an issue introduced in WordPress 5.5.2 which makes it impossible to install WordPress on a brand new website that does not have a database connection configured. This release does not affect sites where a database connection is already configured, for example, via one-click installers or an existing <code>wp-config.php</code> file.</p>\n\n\n\n<h2>5.5.3-alpha Issue</h2>\n\n\n\n<p>Earlier today — between approximately 15:30 and 16:00 UTC — the auto-update system for WordPress updated some sites from version 5.5.2 to version 5.5.3-alpha. This auto-update was due to an error in the Updates API caused by the 5.5.3 release preparations (<a href=\"https://wordpress.org/support/topic/wordpress-5-5-3-alpha-auto-updates/\">see more here</a>). The 5.5.3-alpha version at this point was functionally identical to 5.5.2 as no development work had been started on 5.5.3; however, the following changes may have been made to your site:</p>\n\n\n\n<ul><li>The default “Twenty” themes installed as part of the pre-release package.</li><li>The “Akismet” plugin installed as part of the pre-release package.</li></ul>\n\n\n\n<p>These themes and plugins were not activated and therefore remain non-functional unless you installed them previously. It is safe to delete these features should you prefer not to use them. </p>\n\n\n\n<p>If you are not on 5.5.2, or have auto-updates for minor releases disabled, please manually update to the 5.5.3 version by downloading WordPress 5.5.3 or visiting Dashboard → Updates and click “Update Now.”</p>\n\n\n\n<p>For more technical details of the issue, we’ve <a href=\"https://make.wordpress.org/core/2020/10/30/wordpress-5-5-3-release-some-technical-details/\">posted on our Core Development blog</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>Thanks to those who contributed to the 5.5.3 release: <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a>, <a href=\"https://profiles.wordpress.org/barry/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>barry</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/clorith/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>clorith</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/desrosj/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>desrosj</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hellofromtonya</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jeffpaul</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>johnbillion</a>, <a href=\"https://profiles.wordpress.org/garubi/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>garubi</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>mukesh27</a>, <a href=\"https://profiles.wordpress.org/otto42/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>otto42</a>, <a href=\"https://profiles.wordpress.org/punitsoftac/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>punitsoftac</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sergeybiryukov</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>whyisjake</a>, and <a href=\"https://profiles.wordpress.org/xknown/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>xknown</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Oct 2020 20:25:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WordPress.org blog: WordPress 5.5.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9189\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2020/10/wordpress-5-5-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7222:\"<p>WordPress 5.5.2 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.5.2&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">14 bug fixes</a> in addition to 10 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.5.2 is a short-cycle security and maintenance release. The next major release will be version 5.6.</p>\n\n\n\n<p>You can download WordPress 5.5.2 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>Ten security issues affect WordPress versions 5.5.1 and earlier. If you haven’t yet updated to 5.5, all WordPress versions since 3.7 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Props to Alex Concha of the WordPress Security Team for their work in hardening deserialization requests.</li><li>Props to David Binovec on a fix to disable spam embeds from disabled sites on a multisite network.</li><li>Thanks to Marc Montas from Sucuri for reporting an issue that could lead to XSS from global variables.</li><li>Thanks to Justin Tran who reported an issue surrounding privilege escalation in XML-RPC. He also found and disclosed an issue around privilege escalation around post commenting via XML-RPC.</li><li>Props to Omar Ganiev who reported a method where a DoS attack could lead to RCE.</li><li>Thanks to Karim El Ouerghemmi from <a href=\"https://www.ripstech.com/\">RIPS</a> who disclosed a method to store XSS in post slugs.</li><li>Thanks to Slavco for reporting, and confirmation from Karim El Ouerghemmi, a method to bypass protected meta that could lead to arbitrary file deletion.</li><li>Thanks to Erwan LR from <a href=\"https://wpscan.com/\">WPScan</a> who responsibly disclosed a method that could lead to CSRF. </li><li>And a special thanks to <a href=\"https://profiles.wordpress.org/zieladam/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>zieladam</a> who was integral in many of the releases and patches during this release.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.5.2&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-5-2/\">version 5.5.2 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.5.2 release was led by <a href=\"https://profiles.wordpress.org/whyisjake/\">@whyisjake</a> and the following release squad: <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">@johnbillion</a>, <a href=\"https://profile.wordpress.org/metalandcoffee\">@metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">@noisysocks</a> <a href=\"https://profiles.wordpress.org/planningwrite/\">@planningwrite</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">@sarahricker</a> and <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.5.2 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey “Rarst” Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard/\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davisshaver/\">Davis Shaver</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kellybleck/\">kellybleck</a>, <a href=\"https://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/regankhadgi/\">Regan Khadgi</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/smub/\">Syed Balkhi</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I. Chowdhury</a>, <a href=\"https://profiles.wordpress.org/vinayakanivase/\">Vinayak Anivase</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Oct 2020 20:41:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: Log Into WordPress By Touch or Face ID Via the Passwordless WP Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106224\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:203:\"https://wptavern.com/log-into-wordpress-by-touch-or-face-id-via-the-passwordless-wp-plugin?utm_source=rss&utm_medium=rss&utm_campaign=log-into-wordpress-by-touch-or-face-id-via-the-passwordless-wp-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3722:\"<p class=\"has-drop-cap\">Last week, WP Busters released its first plugin titled <a href=\"https://wordpress.org/plugins/passwordless-wp/\">Passwordless WP</a>. It is a project from full-stack developer Ilya Zolotov that allows end-users to log into their WordPress websites via Touch ID, Face ID, or pin. The goal is to make accessing a site easier and more secure.</p>\n\n\n\n<p>Zolotov built the plugin after checking his email on a public database and finding old passwords. He said he now uses a safe browser for work purposes without extensions and scripts. He also said the millions of credentials stolen or compromised every year was a motivator for building the plugin.</p>\n\n\n\n<p>“I like this feature of my laptop, and I am using it every day,” he said. “As well, I am using it to avoid entering the ‘root’ password in terminal using my finger, it’s comfortable and any sniffer can’t capture my password.”</p>\n\n\n\n<p>Last year, he decided to check browser support for handling passwordless logins but was disappointed that Safari on iPhone only supported external USB keys at the time. He concluded that the technology was not ready yet.</p>\n\n\n\n<p>“In Apple’s summer news, I saw the update: the platform authenticator would be available in iOS 14 and BigSur on Safari, and passwordless authentication is working in Chrome now. Also, Microsoft will release Windows Hello support. 2020 is the passwordless year. Awesome!”</p>\n\n\n\n<p>He then began work on developing the first version using stable cryptographic libraries and building a simple user experience. He believes the technology that allows this plugin to work will be widely supported from now on.</p>\n\n\n\n<p>Zolotov assures users that it is a fast, secure, and certified protocol. The plugin does not store any personal data on the server or link to third-party services.</p>\n\n\n\n<p>“Other plugins which use SMS or Email to log in, send you code or link,” he said when asked about how Passwordless WP differs from similar plugins. “They make your life harder because you need to do more clicks — open email and link, unlock phone, etc. I prefer to enter a password using my manager, which uses my Touch ID.”</p>\n\n\n\n<p>Other plugins using the same technology do exist. <a href=\"https://wordpress.org/plugins/wp-webauthn/\">WP-WebAuthn</a>, for example, has a few additional features and has been around for about seven months.</p>\n\n\n\n<h2>How Passwordless WP Works</h2>\n\n\n\n<img />Logging into the site via fingerprint.\n\n\n\n<p class=\"has-drop-cap\">The plugin requires HTTPS, unless in use in a localhost test environment. It also has a minimum requirement of PHP 7.2. Outside of that, it will work for any WordPress installation. Passwordless logins are handled on the user level, which means that each user on a WordPress site must register a token from their profile page.</p>\n\n\n\n<p>The process is simple and takes only moments. Once on the register token screen, users merely need to click a button and choose the authentication method from their operating system.</p>\n\n\n\n<img />Registering a token for a user account.\n\n\n\n<p>From that point forward, when logging into the site, it is merely a matter of clicking on a username and using your Touch ID or Face ID to log in.</p>\n\n\n\n<p>The following is a quick video of the plugin in action:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>My experience is with Google Chrome on Windows. The latest release, version 1.1.6, is working well. The previous version had an issue with a missing PHP extension in testing, but the plugin author fixed it quickly and sent out an update once I notified him of the problem.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Oct 2020 19:04:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: EditorPlus Introduces Its First Blocks and Adds a Custom Block Creator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106470\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"https://wptavern.com/editorplus-introduces-its-first-blocks-and-adds-a-custom-block-creator?utm_source=rss&utm_medium=rss&utm_campaign=editorplus-introduces-its-first-blocks-and-adds-a-custom-block-creator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7433:\"<p class=\"has-drop-cap\">In what seems to be a never-ending onslaught of new features, Munir Kamal has released some major new features to his <a href=\"https://wordpress.org/plugins/editorplus\">EditorPlus</a> plugin in the last two updates. Version 2.0, which landed earlier today, includes a set of <a href=\"https://gutenberghub.com/gutenberg-blocks-by-editorplus/\">seven new blocks</a>. The previous release showcased a <a href=\"https://gutenberghub.com/how-to-create-a-custom-wordpress-editor-block/\"><em>create-a-block</em> feature</a> that puts more customization options in the hands of end-users.</p>\n\n\n\n<p>The block editor has fueled his creativity, and he has not run out of ideas for his block-sharing website GutenbergHub or EditorPlus plugin. Upcoming releases should see an overhaul of the UI for the plugin and a possible API for third-party developers.</p>\n\n\n\n<p>He said he will be making sure that EditorPlus is working alongside WordPress’s site editor when it lands in the future. Plus, eventual support of WooCommerce’s blocks is on the table. For now, the focus is on the plugin features he has launched in recent weeks.</p>\n\n\n\n<h2>Creating Custom Blocks</h2>\n\n\n\n<p class=\"has-drop-cap\">With WordPress’s core set of blocks already in the hands of users, nearly anything is already possible. These blocks essentially cover all the foundational elements of web design, such as headings, paragraphs, lists, quotes, and more. Sometimes the trick to building something unique is mixing and matching these elements to create something new. That is essentially what this new create-a-block feature is for EditorPlus.</p>\n\n\n\n<p>Saving a custom block is simple. Users must first wrap their blocks into a core Group block. Then, from the “more options” menu in the block toolbar, select the “Add to Custom Blocks” option. The plugin will ask for a block title before saving.</p>\n\n\n\n<img />Saving a custom block.\n\n\n\n<p>Not to be confused with reusable blocks, which are resources that remain the same from post to post, created blocks are like any other blocks. They are accessible via the block inserter under the “My Custom Blocks” category.</p>\n\n\n\n<img />Custom blocks available from the block inserter.\n\n\n\n<p>A couple of minor details are missing that would be great additions for the long term. The first is the ability to select a custom icon for the block. Currently, all custom blocks share an icon. The second is the ability to add a preview in the block inserter.</p>\n\n\n\n<p>Kamal built this feature so that end-users could create simple blocks for themselves. It is also a tool for developers to quickly create blocks for client websites.</p>\n\n\n\n<p>“For example, almost all business websites need a Testimonial block, but there is not one in core for that exact purpose,” he said. “Of course, you can create it using the combination of core blocks, and that’s the way to do it. I’ve seen many block plugins bringing such blocks like Testimonial, Team, Pricing, etc., but those can be easily created with core blocks.”</p>\n\n\n\n<p>He has already shown the community how far you can stretch the core blocks to create unique layouts with his <a href=\"https://wptavern.com/copy-and-paste-editor-blocks-via-gutenberghubs-block-library\">block</a> and <a href=\"https://wptavern.com/gutenberg-hub-launches-landing-page-templates-directory\">template</a> libraries. So, it is not outside the realm of possibility that users could build some of these things directly from the editor.</p>\n\n\n\n<p>The block creator seems like it would be better handled as a block <strong>pattern</strong> creator. In essence, users are creating custom patterns, which are groupings of blocks. Kamal said that a pattern creator is on the to-do list too.</p>\n\n\n\n<p>“As Gutenberg has both these pieces to use for creating content/layouts, I will add both features,” he said. “Save as block has been added, ‘save as pattern’ will be added too. It will be up to the user to use whatever way they want to according to their workflow.”</p>\n\n\n\n<p>I lean toward sticking with the existing pattern paradigm, a single feature that handles groups of blocks. However, it will be interesting to see what users prefer. In the long run, what matters most is that they have easy access to the tools they need to build their pages.</p>\n\n\n\n<h2>The “Missing” Blocks</h2>\n\n\n\n<img />Using the Progress Bar block in the editor.\n\n\n\n<p class=\"has-drop-cap\">Earlier today, Kamal released what he calls the “missing” blocks for WordPress. These are a set of seven custom-built blocks that handle types of content not possible with the existing core blocks. In the past, he has been hesitant to create any blocks, preferring to extend the tools that WordPress provided out of the box.</p>\n\n\n\n<p>“My original idea and still is to extend Gutenberg for what is missing and to make it more powerful for creating beautiful designs visually without code,” he said. “And, after creating hundreds of templates/designs, I’ve realized a need for some important missing blocks that are most commonly used around the website builders but missing in Gutenberg. So I am only adding those blocks in EditorPlus that are missing, must be needed to create modern designs, and can not be created using a combination of core blocks easily. For example, a tabs block, accordion block, or all other blocks added are those that fit these criteria.”</p>\n\n\n\n<p>The plugin includes the following new blocks:</p>\n\n\n\n<ul><li>Tabs</li><li>Toggle/Accordion</li><li>Icon</li><li>Rating</li><li>Progress Bar</li><li>Stats/Counter</li><li>Countdown Timer</li></ul>\n\n\n\n<p>Some of these require additional JavaScript, which is why they do not make good candidates for core WordPress. However, they are good options for plugin developers, and these are not uncommon blocks from other library-type plugins.</p>\n\n\n\n<p>The thing that sets them apart is the integration with the plugin’s styling system, which Kamal may be opening up to other plugin developers in a future release. The current plan is to create an independent Styles API for letting users customize any block. He has already <a href=\"https://www.facebook.com/groups/advancedwp/permalink/3597620730300115\">gotten some feedback</a> from the Advanced WP Facebook group on the idea. Much of the feedback is wishing that such a system would land in WordPress itself.</p>\n\n\n\n<p>One interesting feature of the plugin’s new blocks is that when clicking on a sub-element of a block, its design options are automatically triggered in the block options panel. For example, the star rating block has “title” and “rating” elements. When clicking on the title, its design options open in the sidebar, and the same happens for ratings. This is a departure from the typical organization of EditorPlus’s design options on the core blocks, which are grouped by CSS properties. The focus is put on the individual element, and it makes it much easier to find a specific option.</p>\n\n\n\n<p>This experimentation is a bit of a precursor to what Kamal is working on for a future update. One of his big goals is to do some cleanup of the UI — there are a lot of options in the plugin — and let users more quickly customize their blocks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Oct 2020 21:08:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: WordPress Contributors Discuss Launching an Official Block Pattern Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106892\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:217:\"https://wptavern.com/wordpress-contributors-discuss-launching-an-official-block-pattern-directory?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-contributors-discuss-launching-an-official-block-pattern-directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5577:\"<p><a href=\"https://developer.wordpress.org/block-editor/developers/block-api/block-patterns/\">Block patterns</a> were one of the most exciting and transformative features introduced in <a href=\"https://wptavern.com/wordpress-5-5-eckstine-introduces-block-directory-block-patterns-and-automatic-updates-for-themes-and-plugins\">WordPress. 5.5</a>, giving users a giant head start on building pages by allowing them to insert sets of pre-designed blocks. Core now includes a handful of default patterns available in the block inserter but contributors are exploring the idea of expanding this small selection into a full-blown pattern directory. </p>\n\n\n\n<p>Alex Shiels opened a <a href=\"https://make.wordpress.org/meta/2020/10/27/block-pattern-directory-ideas-and-discussion/\">discussion</a> on make.wordpress.org to get feedback on how it might be implemented. He suggested that the pattern directory would be similar to the block directory, minus the need to install plugins in the background. Community-contributed patterns could be searched and added via one-click installation from the block inserter.</p>\n\n\n\n<p>Shiels asked for feedback on several questions, such as how block patterns could be represented in search results and how previews could accurately reflect how a pattern might appear with different themes. One of the most important considerations he raised: <em>Should the Block Pattern Directory be limited to patterns using only core blocks?</em></p>\n\n\n\n<p>If patterns can only contain core blocks, that leaves it to third-party markets to provide patterns that include blocks from plugins. It seems more likely that block plugin developers would opt to ship their own selection of patterns inside their plugins, instead of contributing to the pattern directory. Having it open to all blocks hosted in the directory would encourage a more diverse range of patterns. Patterns requiring a non-core block might include a prompt to download it.</p>\n\n\n\n<p>The WordPress community has already created many different unofficial pattern libraries, although the terminology can be confusing. Gutenberg Hub’s <a href=\"https://gutenberghub.com/templates/\">template library</a> may be one of the most prominent. It provides section patterns and full page templates that users can browse and then copy the code to paste into their own sites. Jeffrey Carandang’s “<a href=\"https://shareablock.com/blocks/category/block-patterns/\">Share-a-Block”</a> site also offers a selection of patterns to download.</p>\n\n\n\n<img />\n\n\n\n<p>WordPress.com has just <a href=\"https://wordpress.com/blog/2020/10/28/introducing-patterns/\">launched</a> its own pattern library today with more than 100 patterns pre-designed patterns available. Automattic plans to add more patterns based on user feedback and requests. This new free library will make site building easier for millions of users and also creates a strong incentive for using the block editor.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<a href=\"https://cloudup.com/cNbSASbRH10\"><img src=\"https://cldup.com/TjpGkbXaLl.gif\" alt=\"Wpcom pattern library\" width=\"1277\" height=\"1139\" /></a>\n</div>\n\n\n\n<p>Patterns leverage all the best things about the new editor. Inserting a pattern is easier than wrangling shortcodes or wading through theme options to try to get the right combination to reproduce the demo. Patterns are more approachable than page builders and don’t require learning a new interface.</p>\n\n\n\n<p>As the momentum around block patterns increases, I think we will see more commercial theme and block plugin creators using patterns to showcase their products and provide starter packs. It is the best way to help users understand the wide range of possibilities that the block editor enables.</p>\n\n\n\n<p>Having an official directory of community-contributed patterns could be an interesting way for creators to cross-promote their free blocks and designs, while opening up a whole new world of design options for self-hosted WordPress users. How many times have you been shopping around for just the right WordPress theme and found that you like certain sections and layouts offered in several different themes? Patterns give you the ability to cherry pick different sections to create your own unique layout for each page/post, without having to wrestle with the limitations of your theme. </p>\n\n\n\n<p>The ability to browse and access community-contributed patterns directly within the editing interface may have a long list of technical challenges to solve, but it would undoubtedly put more design power into users’ hands. </p>\n\n\n\n<p>Not everyone can take a blank canvas and artfully combine blocks to produce sophisticated designs. Putting patterns at users’ fingertips would make site building more of a delight, especially for users who are new to the block editor. It might also allow users to save their favorite patterns for future use, in the same way you can save your favorite themes and plugins.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/meta/2020/10/27/block-pattern-directory-ideas-and-discussion/\">discussion</a> on WordPress.org is just getting underway. A few of the original contributors on the idea have created a <a href=\"https://github.com/WordPress/pattern-directory\">GitHub repository</a> to track and explore some of the more technical considerations of launching an official block patterns directory. If you have ideas to contribute on how this could be implemented or want to share other considerations, make sure to comment on the post.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Oct 2020 19:12:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"HeroPress: A Life Changing Journey With WordPress – जीवन में मिले रंग वर्डप्रेस के संग\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"https://heropress.com/essays/a-life-changing-journey-with-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=a-life-changing-journey-with-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24657:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/10/pooja_banner.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: A Life Changing Journey With WordPress\" /><p><a href=\"https://heropress.com/feed/#hindi\">वर्डप्रेसने मुझे मेरे ज़िंदगी में कुछ अलग करने का मौक़ा दिया।</a></p>\n<p>One fine day, I was checking my Twitter account and suddenly, got a message from HeroPress. I was astonished after getting a message from such a huge platform. I got to share a lot with Topher while having a long chat session with him. He then asked me to write an article for HeroPress.</p>\n<p>It took me a while to think about what to write as writing about technical never excites me that much. Soon, I realized that what’s better than writing my own story and telling the story about how an introvert girl from a small village of India chased her dreams and gave a direction to her life.</p>\n<h3>Early Life</h3>\n<p>I was born in Banera, a small village in India. After completing my primary education there, I moved to my uncle’s place in a nearby city for higher education. There I decided to become an engineer. Being from a rural background, people in my village refuse the idea of sending their girl child to another city for further studies. Fortunately, that was not the case with me because my parents are immensely supportive and loving. They’ve always encouraged me to believe in myself and fulfil my dreams. With their support, I pursued my engineering in Electronics & Communication, and yes, that’s an entirely different field looking at my current profile.</p>\n<h3>Introduction to Web Development</h3>\n<p>Although I did my engineering in Electronics and Communication, I was not sure about having a future in this field. I was completely blank about my career and had no clue of what to do next. First, I thought about doing masters, but I was already tired of studying all those subjects. I applied for jobs, but there was no success. That was when one of my friends suggested that I should explore Web Development. The idea interested me, and then I started looking for some learning resources. Later I got an Internship as a PHP Developer. It was an unpaid internship, but still, I did it because I thought it would be an excellent opportunity to learn with real professionals.</p>\n<h3>Getting Started with WordPress</h3>\n<p>After doing the internship for three months, I got my first job. Before knowing WordPress, I got the chance to explore many CMS. I’d worked on Joomla, Magento and ExpressionEngine. Then my boss assigned me a small project on WordPress. At first glance, I found it very interesting. I found it surpassing and much better as compared to the other platforms I’ve worked on earlier. Its vast knowledge base made it easy for me to learn. I soon got comfortable managing WordPress, playing with plugins and themes, and started exploring it more in-depth.</p>\n<p>There comes the next phase of my life. I was about to get married to Anand. He was in the same field as mine, and this helped me gain more confidence to pursue my interest. During our courtship period in 2015, he left his job and started his WordPress based Web Development Agency – WPVibes. Soon we got married, and I joined him as the first team member of WPVibes. Being part of a new startup gave me a lot of experience. I got to be involved in new processes. We started with Web Development, and soon we began exploring opportunities in plugin development. We started providing custom plugin development services as per the client’s requirement and created some free and paid plugins. We found it much more exciting and productive. Today, WPVibes is a team of 10 members.</p>\n<h3>Interaction with WordPress Community</h3>\n<p>I started following some WordPress based groups on Facebook, and there I got to know about WordCamps. Soon I got the opportunity to attend my first WordCamp – WordCamp Ahmedabad. There I learned how amazing WordPress Community is. WordCamp Ahmedabad has one of the best WordPress communities in India, and everyone, including organizers, attendees were so humble and welcoming. There I listened to speakers from India and abroad. Some of them shared how they got into WordPress and how WordPress has changed their lives. One of the most inspiring sessions was by Rahul Bansal. He talked about contributing to WordPress and giving back to the community. He also explained how contributing to WordPress can help you to enhance your knowledge. It inspired me to contribute to WordPress. At that time, I couldn’t manage to get involved with WordPress due to my busy schedule. The WordPress community of Ahmedabad immensely inspired us. Later, we started a WordPress meetup group in our city – Ajmer and found it a way to contribute to the community.</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/10/image3.png\"><img /></a></p>\n<p>In the next WordCamp, I also attended the contribution day. Most of the contributors were inclined to contribute to Core, but I decided to choose a different path. I joined the team of WordPress TV Contributors.</p>\n<p>WordPress TV is a platform where you can explore videos of WordCamp sessions. You can learn more about it here, <a href=\"https://make.wordpress.org/tv/\">https://make.wordpress.org/tv/</a>.</p>\n<p>Then I started contributing to WordPress Training. WordPress Training team manages the lesson plans and prepares content to educate people about building stuff for WordPress. The training team has recently launched a new platform for learning WordPress <a href=\"https://learn.wordpress.org/\">https://learn.wordpress.org/</a> (I am a proud contributor to this platform)</p>\n<p>The year 2019 came with an exciting moment in my life. I got selected as a Volunteer for WordCamp Asia in Bangkok, Thailand. This was the very first edition of WordCamp Asia. After this, I got more involved with the community. I was very excited about playing this big role, attending my first WordCamp outside India, and that too, by being a part of the volunteering team. But due to the Covid pandemic, the event got cancelled. It was quite heartbreaking. Since all bookings were already made, we (me and my husband) didn’t cancel the trip and enjoyed a vacation to Thailand.</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/10/image1.png\"><img /></a></p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/10/image2.png\"><img /></a></p>\n<h3>My message to WordPress Community</h3>\n<p>What I have learnt in my life is it doesn’t matter from where you come and what background you have. All that matters is your hard work and positive attitude towards life.</p>\n<p>I have a message for all the WordPress lovers and also for those who are starting with WordPress. There is a huge community to help you with your learning, so start learning and try to give back to the community. It doesn’t matter if you are not comfortable with programming; there are many different ways in which you can contribute.</p>\n<p>Jai WordPress!</p>\n<hr />\n<h1 id=\"hindi\">जीवन में मिले रंग वर्डप्रेस के संग</h1>\n<p>उस दिन मैं अपना ट्विटर अकाउंट देख रही थी की तभी मुझे हीरो प्रेस की तरफ से एक संदेश आया| उसे देख कर अचम्भित रह गयी| मैं हीरोप्रेस पे बहुत से लेख पढ़ चुकी थी, तो ऐसे में अचानक से उसकी ओर से संदेश आने पर मेरा अचम्भित होना स्वाभाविक ही था| उसके बाद मेरी Topher (हीरो प्रेस के संस्थापक ) से लंबी बातचीत हुई और उसके बाद उन्होंने मुझे मेरा लेख लिखने के लिए कहा और साथ ही यह अनुरोध भी किया की मैं अपने लेख को अपनी मातृभाषा हिंदी में भी लिखुँ|</p>\n<p>मुझे ये तय करने में काफी समय लगा की में इसमें क्या लिखूं| तकनीकी लेख लिखने में मेरी ख़ास रूचि नहीं थी| फिर मुझे लगा की क्यों ना इसमें खुद की कहानी ही लिखी जाए| लिखा जाए की कैसे भारत के एक छोटे से गाँव की एक अंतर्मुखी लड़की ने अपने सपनों को पूरा किया और अपने जीवन को एक दिशा दी|</p>\n<h3>प्रारंभिक जीवन</h3>\n<p>मेरा जन्म भारत के एक छोटे से गाँव बनेड़ा में हुआ था| मेरी प्रारंभिक शिक्षा वहीँ हुई| चूँकि हमारे गाँव में उच्च शिक्षा की कोई सुविधा नहीं थी अतः उसके लिए मुझे पास ही के शहर में</p>\n<p>अपने ताऊजी के पास रहना पड़ा| उसके बाद मैने इंजीनियरिंग करने का विचार बनाया, परन्तु उसके लिए मुझे फिर किसी और शहर में जाना पड़ता| उस समय के ग्रामीण परिवेश में पढ़ाई के लिए ज्यादा दूर भेजने को सही नहीं माना जाता था, और वो भी खासकर जब बात एक लड़की की हो|</p>\n<p>परन्तु मेरे मामले में मुझे मेरे माता पिता का पूरा सहयोग प्राप्त था| उन्होंने हमेशा ही मुझे आगे बढ़ने और अपने सपनों को पूरा करने के लिए प्रोत्साहित किया| उनके सहयोग से ही मैंने इलेक्ट्रॉनिक्स एंड कम्युनिकेशन (Electronics & Communication Engineering ) में इंजीनियरिंग करी| जी हाँ, ये मेरे वर्तमान कार्य क्षेत्र से पूर्णता भिन्न था|</p>\n<h3>वेबसाइट डवलपमेंट से मेरा परिचय</h3>\n<p>जैसा की मैंने बताया की मैंने इंजीनियरिंग बिलकुल ही अलग क्षेत्र में करी थी| मैंने कभी सपने में भी नहीं सोचा था कि सेमीकंडक्टर और सर्किट की पढ़ाई करने के बाद मैं वेबसाइट बनाउंगी| पर वक्त को शायद यही मंज़ूर था| इंजीनियरिंग पूरी करने के बाद मेरे पास २ विकल्प थे, आगे की पढ़ाई (M.Tech) करूँ या फिर नौकरी की तलाश करूँ| आगे पड़ने का मेरा मन नहीं था, तो मैंने नौकरी करना ही सही समझा| परन्तु काफी प्रयास के बाद भी मुझे कोई मनमाफिक नौकरी नहीं मिली|</p>\n<p>ऐसे में मेरी एक सहेली ने मुझे वेबसाइट डेवलपमेंट में हाथ आजमाने की राय दी| कॉलेज के दिनों में मैंने थोड़ी PHP और HTML, CSS पढ़ी थी, तो मैंने उसी को और गहराई से समझना शुरू किया, कुछ कोर्स भी करे| मुझे जल्द ही PHP डेवलपर के तौर पर एक इंटर्नशिप मिल गयी| इसमें मुझे कोई वेतन नहीं मिलने वाला था, पर मुझे विश्वास था कि किसी कोर्स के बजाय ये एक बेहतर मौका है कुछ सीखने का|</p>\n<h3>वर्डप्रेस से मेरा जुड़ाव</h3>\n<p>३ महीने की इंटर्नशिप के बाद मुझे एक नौकरी मिल गयी| वहां वर्डप्रेस पर काम करने से पहले मैंने कई दूसरे CMS पर भी काम किया, जैसे कि Joomla, Magento, Expression Engine आदि| फिर कुछ समय बाद एक प्रोजेक्ट में वर्डप्रेस पर काम करने का मौका मिला| मुझे ये काफी ज्यादा दिलचस्प लगा| इससे पहले मैंने जिन CMS पर काम किया था, उनके मुकाबले यह बेहद सुलझा हुआ लगा| इसके बारे में जो जानकारी चाहिए वो आसानी से इंटरनेट पर उपलब्ध थी जिससे मुझे इसको सीखने में बिलकुल भी कठिनाई नहीं हुई| धीरे-धीरे वर्डप्रेस चलाने में, Plugins और Themes का उपयोग करने में मेरा आत्मविश्वास बढ़ता ही गया और मैं इन सबको और भी गहराई से सीखती गयी|</p>\n<p>इसके बाद मेरे जीवन का एक अगला पड़ाव आया – शादी| नवम्बर २०१५ में मेरी शादी आनन्द से हुई|</p>\n<p>वह भी वेबसाइट डेवलपमेंट के क्षेत्र में ही काम कर रहा था और इससे मुझे मेरा रुचिकर काम जारी रखने में कोई भी दिक्कत नहीं हुई| हमारी शादी के कुछ समय पहले ही आनन्द ने नौकरी छोड़कर अपनी खुद की वेब डेवलपमेंट कंपनी (WPVibes) शुरू करी| इसमें भी मुख्यतः काम वर्डप्रेस पर ही था| शादी के बाद मैँ भी पहली टीम मेंबर के तौर पर कंपनी से जुड़ गयी| एक बिलकुल ही नयी कंपनी से जुड़ना एक अलग ही अनुभव होता है| आपको कई ऐसी चीजें सीखने को मिलती है जो आप एक बड़ी स्थापित कंपनी में काम करके नहीं सीख सकते| शुरुआत में हम वेबसाइट ही बनाते थे, पर जल्द ही हमने Plugin डवलपमेंट में भी संभावनाएँ तलाशना शुरू किया| हमारी क्षमता को देखते हुए यह हमें ज्यादा रोमांचक और उत्पादक लगा|</p>\n<h3>वर्डप्रेस कम्युनिटी और मैं</h3>\n<p>मैं फेसबुक पर वर्डप्रेस से संबंधित कुछ ग्रुप से जुड़ी| यहाँ मुझे बहुत कुछ सीखने को मिला और मुझे वर्डकेम्प (WordCamp) के बारे में भी पता पड़ा| जल्द ही मुझे मेरे पहले वर्डकेम्प – वर्डकेम्प अहमदाबाद में भाग लेने का मौका मिला| यहाँ मुझे एहसास हुआ की वर्डप्रेस समुदाय (community ) कितना जबर्दस्त है| वर्डकेम्प अहमदाबाद, भारत में होने वाले श्रेष्ठ वर्डकेम्प में से एक है|</p>\n<p>यहाँ मैंने देश विदेश से आये हुए कई लोगों के वक्तव्य सुने| इनमें से सबसे ज्यादा प्रेरणादायक राहुल बंसल का वक्तव्य लगा, जिसमे उन्होंने वर्डप्रेस समुदाय को अपनी ओर से कुछ वापिस देने के बारे में (Give Back to the Community) चर्चा करी| उन्होंने यह भी बताया की किस तरह वर्डप्रेस में योगदान करना आपके लिए ज्ञानवर्धक भी साबित हो सकता है| इससे मुझे वर्डप्रेस में अपना योगदान देने की प्रेरणा मिली| हालांकि किसी कारण वश उस समय में वर्डकेम्प के Contribution Day में भाग नहीं ले पायी थी| वहां की वर्डप्रेस समुदाय से प्रेरित होकर हमने हमारे शहर अजमेर में भी वर्डप्रेस मीटअप (Meetup) की शुरुआत करी और लोगो को वर्डप्रेस से जुड़ने और इसके बारे में जानकारी देना शुरू करा| यह भी वर्डप्रेस में अपना योगदान (contribute) देने का ही एक माध्यम है|</p>\n<p>अगले वर्डकेम्प में मैंने Contribution Day में भी भाग लिया| ज्यादातर योगदानकर्ताओं (Contributors) का झुकाव Core की तरफ रहता है, ऐसे में मैंने कुछ हटकर करने की सोची और वर्डकेम्प टीवी (WordPress TV) में योगदान करने के बारे में सीखा| वर्डप्रेस टीवी एक वेबसाइट है जहाँ आप पूरी दुनिया के वर्डकेम्प से जुड़े वीडियो देख सकते हैं| इसके बारे में अधिक जानकारी के लिए आप यहाँ देख सकते हैं <a href=\"https://make.wordpress.org/tv/\">https://make.wordpress.org/tv/</a></p>\n<p>इसके बाद मैंने वर्डप्रेस ट्रेनिंग (WordPress Training) में भी योगदान करना शुरू करा| वर्डप्रेस ट्रेनिंग की टीम वर्डप्रेस के बारे में जागरूक और शिक्षित करने के लिए पाठ्य सामग्री तैयार करती है|</p>\n<p>हाल ही में शुरू करी गयी एक वेबसाइट <a href=\"https://learn.wordpress.org/\">https://learn.wordpress.org/</a> में भी मेरा छोटा सा योगदान हैं|</p>\n<p>वर्ष २०१९ मेरे लिए एक बहुत ही अच्छा मौका लेकर आया| मेरा चयन पहली बार होने वाले वर्डकेम्प एशिया २०२० (WordCamp Asia 2020) में वालंटियर के तौर पर हुआ| इसका आयोजन बैंकाक (थाईलैंड) में होने वाला था| मैं इसे लेकर काफी उत्साहित थी| ये भारत के बाहर किसी वर्डकेम्प में भाग लेने का मेरा पहले मौका था और वो भी एक वालंटियर की तरह| परन्तु कोरोना महामारी के कारण ये मात्र एक सपना ही रह गया| इसके आयोजन के कुछ दिन पहले ही इसे रद्द कर दिया गया|</p>\n<p>फिर भी मैंने मेरी यात्रा रद्द नहीं करी और आनन्द के साथ थाईलैंड में कुछ दिनों की छुट्टियों के मजे लिये|</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/10/image1.png\"><img /></a></p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/10/image2.png\"><img /></a></p>\n<h3>वर्डप्रेस समुदाय के लिए मेरा संदेश</h3>\n<p>मैंने अपने अभी तक के जीवन से यही सीखा है की इससे कोई फर्क नहीं पड़ता की आप कहाँ से आये हैं और क्या आपकी पृष्ठभूमि रही है| यदि आप मेहनत कर सकते है और एक सकारात्मक सोच रखते है तो आप अपने रास्ते खुद बना सकते हैं|</p>\n<p>सभी वर्डप्रेस के चाहने वालो और खासकर उनके लिए जो अभी वर्डप्रेस से जुड़े हैं या जुड़ना चाहते हैं उनसे मेरा यही कहना है की आगे बढ़े, आपकी मदद के लिए एक बहुत ही बड़ा समुदाय (community) है| तो भी शुरू करें और जब भी हो किसी भी तरह से अपना भी योगदान देने की कोशिश करें| जरूरी नहीं की आपको प्रोग्रामिंग आती हो, अगर आप अपने एक मित्र को वर्डप्रेस के बारे में बताते है या सिखाते हैं तो ये भी एक तरह का योगदान ही है|</p>\n<p>जय वर्डप्रेस !</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/a-life-changing-journey-with-wordpress/\">A Life Changing Journey With WordPress – जीवन में मिले रंग वर्डप्रेस के संग</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Oct 2020 02:31:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Pooja Derashri\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress.org blog: Take the 2020 WordPress Annual Survey (and view the 2019 results)!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wordpress.org/news/2020/10/take-the-2020-wordpress-annual-survey-and-view-the-2019-results/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7275:\"<p>For many years, WordPress enthusiasts have filled out an annual survey to share their experiences and feelings about WordPress. Interesting results from this survey have been shared in the annual<a href=\"https://wordpress.tv/tag/state-of-the-word/\"> State of the Word</a> address and/or here on WordPress News. </p>\n\n\n\n<p>This survey helps those who build WordPress understand more about how the software is used, and by whom. The survey also helps leaders in the WordPress open source project learn more about our contributors’ experience<a href=\"https://make.wordpress.org/\"></a>. </p>\n\n\n\n<p>To ensure that <strong>your</strong> WordPress experience is represented in the 2020 survey results,</p>\n\n\n\n<div class=\"wp-block-buttons aligncenter\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link has-vivid-cyan-blue-background-color has-background\" href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-english\" target=\"_blank\" rel=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-english noopener\">Take the 2020 Annual Survey! (English)</a></div>\n</div>\n\n\n\n<p>You can also take the survey in <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-french\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-german\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-japanese\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-russian\">Russian</a>, and <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-spanish\">Spanish</a>! The survey will be open for at least 6 weeks, and results will be posted on this blog.</p>\n\n\n\n<h1>2019 Survey Results</h1>\n\n\n\n<div class=\"wp-block-buttons aligncenter\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-cyan-blue-background-color has-text-color has-background\" href=\"https://docs.google.com/presentation/d/1FI7eEvSB5SHTSILIBpwOmH9rBffgD6mFnnqSkrEScYo/edit\" target=\"_blank\" rel=\"https://docs.google.com/presentation/d/1fi7eevsb5shtsilibpwomh9rbffgd6mfnnqskrescyo/edit#slide=id.g71a4c4edc6_3_232 noopener\">View the 2019 Survey Results (Slides)</a></div>\n\n\n\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-white-color has-vivid-cyan-blue-background-color has-text-color has-background\" href=\"https://www.dropbox.com/sh/bq62sficymopgos/AAA-wx73cDviVG84NSCTgjNDa?dl=0\" rel=\"https://www.dropbox.com/sh/bq62sficymopgos/aaa-wx73cdvivg84nsctgjnda?dl=0\">Download the 2019 Survey Results (PDF or PPT)</a></div>\n</div>\n\n\n\n<p>The 2019 survey included some new questions to better understand why people continue to use WordPress as their preferred CMS, as well as a section directed toward WordPress contributors. For the first time in 2019, this survey was translated into 5 different languages: French, German, Japanese, Russian, and Spanish.</p>\n\n\n\n<p>The first WordPress Contributor Survey was conducted in 2015, but unfortunately the results were never published. This report includes Contributor Survey results from both 2015 and 2019. </p>\n\n\n\n<h2>Survey Segments</h2>\n\n\n\n<p>Major groups in the survey included: WordPress Professionals, WordPress Users, and Others. </p>\n\n\n\n<p>The <strong>WordPress Professionals</strong> group consists of those who: work for a company that designs/develops websites; use WordPress to build websites and/or blogs for others; design or develop themes, plugins, or other custom tools for WordPress sites; or are a designer, developer, or other web professional working with WordPress.</p>\n\n\n\n<p>This WordPress Professionals group is further divided into <strong>WordPress Company Pros</strong> (those who work for a company that designs/develops websites) and <strong>WordPress Freelancers/Hobbyists</strong> (all other professional types) subgroups.</p>\n\n\n\n<p>The <strong>WordPress User</strong> group consists of those who: own or run a blog that is built with WordPress; own or run a website that is built with WordPress; write for or contribute to a blog/website that is built with WordPress; use WordPress for school as a teacher; use WordPress for school as a student, or are learning to build websites using WordPress.</p>\n\n\n\n<p>The <strong>Others</strong> group consists of those who did not self-identify with any of the options provided for the question, “Which of the following best describes how you use WordPress?”</p>\n\n\n\n<h2>2019 Survey Results Summary</h2>\n\n\n\n<p>WordPress remains the platform of choice for future projects among those surveyed. Overwhelmingly, the reasons cited for this are that WordPress is the CMS people already know, and that the community supporting it is valuable. Professionals and users report similar levels of frustration with updates and Gutenberg. Both groups also love the ease of use they find in WordPress.</p>\n\n\n\n<p>The number of professionals who report providing a heavily customized experience to clients has increased substantially, while at the same time the amount of time reported on creating those sites has decreased. Regardless of frustrations felt with various features, this seems to indicate that ease of use has been on the rise.</p>\n\n\n\n<p>More details on sentiment, usage, and other interesting topics are available in the report: <a href=\"https://docs.google.com/presentation/d/1FI7eEvSB5SHTSILIBpwOmH9rBffgD6mFnnqSkrEScYo/edit#slide=id.g71a4c4edc6_3_232\">check it out!</a></p>\n\n\n\n<h1>Before you go: take the 2020 Survey!</h1>\n\n\n\n<p>Knowing why and how people use WordPress helps those who build WordPress to keep your needs and preferences in mind. </p>\n\n\n\n<p>The survey will be open for at least 6 weeks, and results will be published on this blog. All data will be anonymized: no email addresses or IP addresses will be associated with published results. To learn more about WordPress.org’s privacy practices, check out the<a href=\"https://wordpress.org/about/privacy/\"> privacy policy</a>.</p>\n\n\n\n<p>Like last year, the 2020 survey will be promoted via a banner on WordPress.org, as well as by WordPress enthusiasts. Each of the translated surveys will be promoted through banners on their associated localized-language WordPress.org sites. Please encourage your WordPress pals and social media followers to take the survey too!</p>\n\n\n\n<p>To ensure your WordPress experience is represented in the 2020 survey results… don’t delay! </p>\n\n\n\n<div class=\"wp-block-buttons aligncenter\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-vivid-cyan-blue-background-color has-text-color has-background\" href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-english\" rel=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-english\">Take the 2020 WordPress Annual Survey!</a></div>\n</div>\n\n\n\n<p>(Also available in <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-french\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-german\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-japanese\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-russian\">Russian</a>, and <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-spanish\">Spanish</a>!)</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Oct 2020 22:44:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.6 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9134\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/10/wordpress-5-6-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3701:\"<p>WordPress 5.6 beta 2 is now available for testing!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we recommend that you run this version on a test site.</p>\n\n\n\n<p>You can test the WordPress 5.6 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option).</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-beta2.zip\">download the beta here (zip)</a>.</li></ul>\n\n\n\n<p>WordPress 5.6 is slated for release on <a href=\"https://make.wordpress.org/core/5-6/\">December 8, 2020</a>, and <strong>we need your help to get there</strong>!</p>\n\n\n\n<p>Thank you to all of the contributors that tested the <a href=\"https://wordpress.org/news/2020/10/wordpress-5-6-beta-1/\">beta 1</a> development release and provided feedback. Testing for bugs is an important part of polishing each release and a great way to contribute to WordPress.</p>\n\n\n\n<h2 id=\"block-15d6d57f-905d-4a47-9f66-839468a5375a\">Some highlights</h2>\n\n\n\n<p id=\"block-85da84ec-c841-42f9-8d3b-1a4537a61d10\">Since beta 1, <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F21%2F2020..10%2F27%2F2020&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">53 bugs</a> have been fixed. Here is a summary of a few changes included in beta 2:</p>\n\n\n\n<ul><li>6 additional bugs have been fixed in the block editor (see <a href=\"https://github.com/WordPress/gutenberg/pull/26442\">#26442</a>).</li><li>Unified design for search forms and results across the admin (<a href=\"https://core.trac.wordpress.org/ticket/37353\">#37353</a>).</li><li>Exposed the <code>embed</code> Gutenberg block to Core (<a href=\"https://core.trac.wordpress.org/ticket/51531\">#51531</a>).</li><li>Updated Twemoji (<a href=\"https://core.trac.wordpress.org/ticket/51356\">#51356</a>), React (<a href=\"https://core.trac.wordpress.org/ticket/51505\">#51505</a>), and Akismet versions (<a href=\"https://core.trac.wordpress.org/ticket/51610\">#51610</a>).</li><li>Added accessibility improvements (among other things) to Application Passwords (<a href=\"https://core.trac.wordpress.org/ticket/51580\">#51580</a>).</li><li>Added indicator to image details for images attached to a site option (<a href=\"https://core.trac.wordpress.org/ticket/42063\">#42063</a>).</li></ul>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.6 has lots of refinements to the developer experience as well. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-6+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/query?status=new&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">known bugs</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Oct 2020 22:02:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Carrd-Like Theme Experiment Provides a Glimpse Into the Future of Theming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106663\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/carrd-like-theme-experiment-provides-a-glimpse-into-the-future-of-theming?utm_source=rss&utm_medium=rss&utm_campaign=carrd-like-theme-experiment-provides-a-glimpse-into-the-future-of-theming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5308:\"<img />Carrd-like theme front page template.\n\n\n\n<p class=\"has-drop-cap\">It is no secret that I think the future of theming with WordPress is bright, that the Gutenberg project will eventually pay off. As a former full-time theme developer, I lived through the years where there were no standards for how to build certain features. It was much like the Wild West. There were vast, unexplored territories. Each themer was setting off to find gold with the latest tricks and techniques they had learned.</p>\n\n\n\n<p>One of the reasons I remain a fanboy of the Gutenberg project is because of experiments like the <a href=\"https://github.com/WordPress/theme-experiments/pull/56\">Two Column Landing Page</a> theme (yes, that’s literally the theme name) that Kjell Reigstad put together in less than an hour. It is a Carrd-like layout. It is a simple one-page theme that is essentially an “about me” page. Under the hood, it required no custom framework or non-standard options. It simply utilized existing tools from WordPress and Gutenberg.</p>\n\n\n\n<p>Two Column Landing Page is an unfinished product. Technically, it is a pull request that has yet to be officially merged into the <a href=\"https://github.com/WordPress/theme-experiments\">WordPress theme experiments</a> repository. Automattic Theme Wrangler Ian Stewart passed a <a href=\"https://a646a4b37deb1e8b.demo.carrd.co/\">Carrd demo link</a> along, and Reigstad pieced together a block-based version for WordPress.</p>\n\n\n\n<p>The theme was easy to customize via the site editor, which continually improves with each release of Gutenberg (9.2 had some nice improvements with its template switcher).</p>\n\n\n\n<img />Customized theme front page.\n\n\n\n<p>For anyone who wants to give the theme a spin, they will need to grab the <code>two-column-landing-page</code> theme folder from the <a href=\"https://github.com/WordPress/theme-experiments/tree/try/two-col-landing-page\">try/two-col-landing-page</a> branch of the theme experiments repository. Enabling full-site editing within the Gutenberg plugin is also a requirement.</p>\n\n\n\n<h2>Why This Theme Is the Future</h2>\n\n\n\n<p class=\"has-drop-cap\">This Cardd-like theme is special not because it is anything extraordinary from a front-end design standpoint. It is special because it showcases how simple WordPress theming can be.</p>\n\n\n\n<p>Theme authors will continue to build and experiment with old and new ideas. It will simply be much less hassle to do so. With traditional theming, developers who wanted to achieve this same Carrd-like layout for the front page of the site would have needed to build several customizer options and often provide extensive instructions on how to piece it together. When full-site editing finally lands in core, themers will be able to define a single template with predefined blocks.</p>\n\n\n\n<p>No hooking into the customizer.</p>\n\n\n\n<p>No need to register a database option.</p>\n\n\n\n<p>No need to register a form field.</p>\n\n\n\n<p>No need to sanitize user input for security.</p>\n\n\n\n<p>No conditional checks before outputting front-end content.</p>\n\n\n\n<p>WordPress will handle all these bits. If theme authors are not excited about this, they have not been paying attention. Now is the time to start.</p>\n\n\n\n<p>This has been the problem with theme “design” over the years. More and more, it has become a business of learning relatively advanced PHP just to build out basic options. Because WordPress fell so far behind alternative solutions, far too much responsibility was placed onto the shoulders of theme developers. They were doing less and less design work and an increasing amount of programming. They were forced to build custom solutions to push past the shortcomings of WordPress.</p>\n\n\n\n<p>Full-site editing is flipping the switch. It is transitioning toward a design framework that simplifies the process of building themes.</p>\n\n\n\n<p>With block-based themes and the site editor, theme authors can simply define an HTML template with blocks. The user can then customize it how they like via the site editor.</p>\n\n\n\n<p>To non-developers, it is hard to explain how revolutionary it is to take this step back from programming and a step toward designing. Themes are getting put into their proper place. This Carrd-like layout may be simple. However, with traditional theming, it would have been massively more complex.</p>\n\n\n\n<p>The Two Column Landing Page theme supports other views, such as the posts page, single posts, and more. However, it should not have to. The future of theming should mean that the theme itself could be nothing more than a <code>front-page.html</code> file — the template that controls the front page output — and nothing more.</p>\n\n\n\n<p>This means that the Themes Team, the gatekeepers to the official theme directory, may need to loosen the reins a bit. While the team currently allows experimental block-based themes, guidelines in the new era will need to be scaled back to the point that they are almost nonexistent if we want to see an explosion of artistry in the theme directory. Many of those rules were put into place because of the limitations of the system. When full-site editing lands in core and developers are building themes from blocks, many of the rules will become antiquated.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Oct 2020 21:22:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: Dragging and Dropping Meta Boxes Might Not Be So Simple in WordPress 5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106675\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:209:\"https://wptavern.com/dragging-and-dropping-meta-boxes-might-not-be-so-simple-in-wordpress-5-6?utm_source=rss&utm_medium=rss&utm_campaign=dragging-and-dropping-meta-boxes-might-not-be-so-simple-in-wordpress-5-6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6444:\"<p class=\"has-drop-cap\">If you have been testing the latest development version of WordPress in the past week or so, you may have noticed that the ability to drag and drop meta boxes seemingly disappeared. This is not a bug. Nine days ago, lead developer Andrew Ozz <a href=\"https://core.trac.wordpress.org/changeset/49179\">committed a change</a> that requires end-users to click the “screen options” tab to expose the ability to rearrange meta boxes.</p>\n\n\n\n<p>Ozz opened the <a href=\"https://core.trac.wordpress.org/ticket/50699\">original ticket</a> and has spearheaded the effort to change how users interact with meta boxes. The issue he would like to solve stems from a change in WordPress 5.5. WordPress’s last major release <a href=\"https://core.trac.wordpress.org/ticket/49288\">introduced visible “drop zones”</a> in cases where a meta box container did not contain any meta boxes. These zones let users know that they can move meta boxes into those areas. This change was to fix a regression from a previous release. Needless to say, it was a rabbit hole of changes to chase down. Nevertheless, the problems with meta boxes were presumably fixed in WordPress 5.5.</p>\n\n\n\n<img />Empty meta box holder on Dashboard screen.\n\n\n\n<p>Ozz opened the ticket to remove the always-visible drop zones when no meta boxes were present. The argument is that the ability to move meta boxes around the screen is technically a “screen option.” Thus, it should only be triggered when the end-user has opened the screen options tab.</p>\n\n\n\n<p>Another side issue is that he wanted to address accidental dragging, which he described as more common on laptops with trackpads than other devices.</p>\n\n\n\n<p>Some readers may be thinking that meta boxes are going the way of the dinosaur. For those users who have migrated to 100% usage of the block editor, there is a good chance that their only interaction with meta boxes is on the Dashboard admin screen. For users on the classic editor, meta boxes are tightly interwoven into their day-to-day workflow. Many plugins also use the meta box system on custom admin screens.</p>\n\n\n\n<p>The biggest counter-argument is that, because meta boxes look and feel like draggable elements, the ability to do so should be active at all times.</p>\n\n\n\n<p>The point of contention is primarily about whether dragging and dropping meta boxes is technically a screen option. One side sees the WordPress 5.5 implementation as a broken user experience. The other side sees the new method as broken.</p>\n\n\n\n<p>Without user data to back it up, no one can say which method is truly the best option. However, changes to a standard user experience that is more than a decade old are likely to be problematic for a large number of users.</p>\n\n\n\n<p>This seems like one of those if-it-ain’t-broke-don’t-fix-it situations. With years of muscle memory for existing users and an expectation for how meta boxes should work, relegating the ability to drag them around the interface to the little-used screen options tab is a regression. At the very least, it is a major change that needs heavy discussion and testing before going forward.</p>\n\n\n\n<p>“Nothing breaks, per se,” said John James Jacoby, the lead developer for BuddyPress and bbPress. “Nothing fatal errors. Nothing visually looks different. Yet, a critical user interface function has now gone missing. In my WP User Profiles plugin, for example, there are 15 registered meta boxes. Previous to this change, users with the device and dexterity to use a mouse/pointer/cursor could rearrange those meta boxes with simple dragging and dropping. After this change, no user can rearrange them without first discovering how to unlock the interface to enable rearranging.”</p>\n\n\n\n<p>The problem is illustrated by the following screenshot from the <a href=\"https://wordpress.org/plugins/wp-user-profiles/\">WP User Profiles</a> plugin. Each of the highlighted boxes represents areas where end-users would typically be able to click to drag a meta box around the screen. If the current change is not reverted, many users may believe the plugin is broken when they upgrade to WordPress 5.6.</p>\n\n\n\n<img />Meta boxes from the WP User Profiles plugin.\n\n\n\n<p>“Is there a plan for letting existing users know that moving metaboxes is now only when Screen Options is open?” <a href=\"https://core.trac.wordpress.org/ticket/50699#comment:20\">asked Helen Hou-Sandì</a>, the core tech lead for 5.6, in the ticket. “I’m not sure I would ever discover that as an existing user and would be convinced everything was broken if I updated with no context.”</p>\n\n\n\n<p>The current solution is to drop a note in the “What’s New” section of the WordPress 5.6 release notes to let users know of the change, which may not be visible enough for most users to see. If it does go through, ideally, users would be welcomed with an admin pointer that describe the change directly in their WordPress admin interface.</p>\n\n\n\n<p>There are also <a href=\"https://core.trac.wordpress.org/ticket/50699#comment:37\">accessibility impacts to consider</a>. Joe Dolson, a core WordPress committer and member of the accessibility team, said the user experience for keyboard users would become difficult and that the feature would be harder to discover.</p>\n\n\n\n<p>“I can’t see a way in which this change, as currently implemented, improves the experience for anybody,” he said. “The proposal from the accessibility team is how we could compromise to reduce the visual impact of the movers without compromising the usability of the system at this extreme level; but just <em>not</em> doing this would be something I’d find entirely acceptable, as well.”</p>\n\n\n\n<p>So far, most people who have chimed in on the ticket have given numerous reasons for why this is not a good idea. There is almost no public support for it at this time. However, it currently remains in the latest development/trunk version of WordPress. If not reverted in the coming weeks, it will land in WordPress 5.6.</p>\n\n\n\n<p class=\"is-style-default has-white-color has-blue-700-background-color has-text-color has-background text-white bg-blue-700\">Update: This <a href=\"https://core.trac.wordpress.org/ticket/50699#comment:48\">change was reverted</a> in WordPress core on October 27, 2020.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 26 Oct 2020 20:43:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"WPTavern: WordPress Contributors Explore Adding Dark Mode Support to Upcoming Twenty Twenty-One Theme via a Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106593\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:273:\"https://wptavern.com/wordpress-contributors-explore-adding-dark-mode-support-to-upcoming-twenty-twenty-one-theme-via-a-plugin?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-contributors-explore-adding-dark-mode-support-to-upcoming-twenty-twenty-one-theme-via-a-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5322:\"<p>WordPress 5.6 is set to include a new default theme, <a href=\"https://wptavern.com/first-look-at-twenty-twenty-one-wordpresss-upcoming-default-theme\">Twenty Twenty-One</a>, designed to give users a blank canvas for the block editor. The theme doesn’t fall under any particular category and is meant to be suitable for use across different types of websites. One new feature that has very recently come under consideration is <a href=\"https://make.wordpress.org/core/2020/10/22/twenty-twenty-one-dark-mode-discussion/\">support for a dark mode that can be toggled on or off</a>.</p>\n\n\n\n<p>Contributors have raised the possibility of including a dark mode in several <a href=\"https://github.com/WordPress/twentytwentyone/labels/%5BComponent%5D%20Dark%20Mode\">issues</a> while the theme has been in development. Mel Choyce, who is leading the design on the default theme, <a href=\"https://make.wordpress.org/core/2020/10/22/twenty-twenty-one-dark-mode-discussion/\">published a summary</a> of the team’s recent discussions about which options the theme should make available for site owners and viewers in support of dark mode, or if the feature should simply be scrapped. </p>\n\n\n\n<p>“We’ve built in a Customizer setting that lets site owners opt their sites out of supporting Dark Mode, for greater design control,” Choyce said. “Additionally, we’re considering adding a front-end toggle so site viewers can turn Dark Mode on/off, regardless of their OS/Browser preference. This setting would only show if a site allows Dark Mode support.”</p>\n\n\n\n<div class=\"wp-block-image\"><img />Twenty Twenty-One Light and Dark Modes</div>\n\n\n\n<p>Choyce outlined five different combinations of options for supporting it, including two options that allow site owners to disable it, regardless of the user’s selection in their OS/browser. Two other options require the site to support dark mode but differ in whether or not the visitor is allowed to toggle it on or off. </p>\n\n\n\n<h2>Does Twenty Twenty-One Need a Dark Mode?</h2>\n\n\n\n<p>Dark mode was a late addition to the default theme’s development. Choyce <a href=\"https://make.wordpress.org/core/2020/10/22/twenty-twenty-one-dark-mode-discussion/#comment-40111\">said</a> the idea seems like a good opportunity to explore but ideally the team would have intentionally designed the feature before development started. </p>\n\n\n\n<p>In the comments of the post, contributors are discussing the many intricacies of adding this feature to a theme that will be on by default for new WordPress sites. A few commenters noted there might be issues and surprises with logos and transparent images. For this reason, several made the case for shipping it as an opt-in feature and not on by default.</p>\n\n\n\n<p>Others did not see the need for users to be able to toggle dark mode on/off for individual websites when they already have controls available through their system or browser preferences.</p>\n\n\n\n<p>Kjell Reigstad contends that users’ expectations have not yet translated into demand for this feature. </p>\n\n\n\n<p>“As much as I’m a fan of dark mode in general (I use it on all my devices and it definitely helps to reduce eye strain), I think the general public views it as ‘a thing that apps do’ — not something that websites do yet,” Reigstad said. “As mentioned above, this theme could be a step towards changing that perception, but the feature’s novelty is something to keep in mind.”</p>\n\n\n\n<p>WordPress 5.6 core tech lead Helen Hou-Sandí suggested it might be better to develop the feature as a plugin, instead of pushing for it to be ready in a short time frame.</p>\n\n\n\n<p>“My instinct right now is that it would be best to split dark mode for Twenty Twenty-One out into a plugin as a form of opt-in, primarily because I think that will both ease the burden for meeting the bar for core ship and also gives space for the feature to be iterated on outside of the core development cycle,” Hou-Sandí said. She also noted that users will be doing things with the theme that core contributors cannot anticipate and a plugin is an easier route for responding to those needs.</p>\n\n\n\n<p>“By separating it out, I think it has a better chance of reaching a point where it encompasses enough by default to be a theme setting without too much futzing on the user’s part, or even enough of a thing to be a feature for all themes at large,” Hou-Sandí said.</p>\n\n\n\n<p>Choyce and Carolina Nymark agreed with this suggestion and <a href=\"https://wordpress.slack.com/archives/C02RP4VMP/p1603724762267800\">announced</a> a decision in the WordPress Slack #core-themes channel this morning, based on feedback on the post.</p>\n\n\n\n<p>“Carolina Nymark and I made the decision to move Dark Mode out into a plugin,” Choyce said. “This will allow us to better address all of the edge cases we’ve been encountering without slowing down the progress of bug fixing within the core theme.”</p>\n\n\n\n<p>The plugin is being <a href=\"https://github.com/WordPress/twentytwentyone-dark-mode\">developed on GitHub</a> where contributors will explore how to support the feature moving forward.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 26 Oct 2020 18:47:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WordCamp Central: Get your free ticket to WordCamp Finland Online!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3130035\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://central.wordcamp.org/news/2020/10/26/get-your-free-ticket-to-wordcamp-finland-online/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1395:\"<p>WordCamp Finland 2020 is just right around the corner and speaker announcements have started to roll out! The online event with two session tracks takes place <strong>November 12 at 12-17 <a href=\"https://time.is/compare/12_12_Nov_2020_in_Helsinki/UTC\">UTC+2</a></strong>. Our organizing team is super excited about the event and upcoming content!</p>\n<p>Tickets for WordCamp Finland Online 2020 are absolutely free! We strongly recommend registering for a ticket, as this will give you the full WordCamp experience. This will give you access to Q&A sessions, networking opportunities with speakers, sponsors and other attendees. If you would rather not register, you will still be able to watch the talks.</p>\n<p><a href=\"https://finland.wordcamp.org/2020/tickets/\">Register free for the WordCamp Finland Online</a>.</p>\n<p>First speakers have been announced and more speakers as well as the full schedule will be announced shortly! Make sure to <a href=\"https://twitter.com/wordcampfinland\">follow us on Twitter</a> to get the news about new announcements.</p>\n<p>There’s also still open <a href=\"https://finland.wordcamp.org/2020/call-for-volunteers/\">call for volunteers</a> to help us during the event day. Being a volunteer is more than lending a hand, it is the secret sauce that makes a wordcamp a WordCamp! Make sure to apply if you’d like to help make the event.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 26 Oct 2020 15:00:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Timi Wahalahti\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Akismet: Happy Birthday Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2093\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://blog.akismet.com/2020/10/25/happy-birthday-akismet/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1848:\"<p></p>\n\n\n</p>\n<img />\n<p>\n\n\n<p> </p>\n<p>Akismet was launched 15 years ago today, when Automattic founder <a href=\"https://ma.tt/2005/10/akismet-stops-spam/\">Matt Mullenweg announced it on his blog</a> in a post describing what Akismet was and what it could become. Given how much the world has changed in the last decade and a half (back then spammers were pushing cheap flip phones and counterfeit Livestrong bracelets), we thought it would be fun to see whether Akismet succeeded in meeting the hopes and dreams that Matt laid out back in October 2005.</p>\n<blockquote>\n<p>“Akismet is a new web service that stops comment and trackback spam. (Or at least tries really hard to.)”</p>\n</blockquote>\n<p>Fact check: true! Akismet has stopped 500,000,000,000 pieces of comment and trackback spam since October 2005. That’s an average of a thousand spam per second, every second, since before Twitter existed. Plus another thousand in the time it took you to read that sentence. And this one. (And this one.)</p>\n<blockquote>\n<p>“The service is usable immediately as a WordPress plugin and the API could also be adapted for other systems.”</p>\n</blockquote>\n<p>Akismet is still usable as a WordPress plugin, and there are now dozens of Akismet clients for non-WordPress systems, plus countless other implementations for custom platforms. Some people say that Akismet is the most open anti-spam API on the Web. Some people are right.</p>\n<blockquote>\n<p>“If nothing else, I hope this makes blogging more joyful for at least one person.”</p>\n</blockquote>\n<p>According to an informal survey we just performed, Akismet has made blogging more joyful for multiple people. If you’re one of those people, put on a party hat, grab a piece of cake, and join us in wishing Akismet a very happy 15th birthday.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 25 Oct 2020 07:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: Yext Launches a WordPress Plugin To Connect To Its Answers Platform\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"https://wptavern.com/yext-launches-a-wordpress-plugin-to-connect-to-its-answers-platform?utm_source=rss&utm_medium=rss&utm_campaign=yext-launches-a-wordpress-plugin-to-connect-to-its-answers-platform\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6220:\"<p class=\"has-drop-cap\">Last week, Yext launched its <a href=\"https://wordpress.org/plugins/yext-answers/\">Yext Answers plugin</a> to the WordPress community. The goal was to bring a platform that won the Best Software Innovation category of the <a href=\"https://globalsearchawards.net/2020-winners/\">2020 Global Search Awards</a> to WordPress. However, my experience was far from satisfactory.</p>\n\n\n\n<p>“For people searching on a WordPress website, the Answers Connector provides a seamless search experience,” said Alexandra Allegra, the Senior Product Marketing Manager at Yext. “For businesses and organizations that integrate it, it drives higher rates of conversion, which generates more revenue. It helps lower support costs because when businesses can deliver detailed, official answers, customers don’t have to call customer service. And finally, it unveils valuable customer insights, because businesses can see new questions coming in — in real-time.”</p>\n\n\n\n<p>Yext Answers is essentially trialware. Technically, the plugin itself is free. However, Yext is currently running a 90-day free trial for access to its <a href=\"https://www.yext.com/products/answers/\">Answers platform</a>. The website does not seem to provide an easy way to find what the true cost will be after that initial 90 days. To upgrade, users must contact the Yext team via email or phone.</p>\n\n\n\n<p>The website does provide an estimated cost calculator. The lowest tier available via this calculator is for 20,000 searches per month at $5,000. It is unclear if there are lower pricing options. The Yext team provided no further details when asked about billing.</p>\n\n\n\n<p>The plugin is marketing itself primarily toward business users. It can replace a WordPress site’s traditional search, which is customizable to suit various site owner’s needs, according to the Yext team.</p>\n\n\n\n<p>Over the past week, I have discussed this plugin with a representative from the company, watched demo videos, and attempted to test the plugin. Thus far, it has been a subpar experience. I typically forgo writing about plugins that do not pan out. However, after the initial investment into what looked to be an interesting project, I wanted to share my experience, and my hope is that it helps the team build a better product in the long term.</p>\n\n\n\n<p>I have yet to get the Yext Answers plugin to work. It requires an account with the Yext website. It also requires that end-users enter multiple fields on the plugin settings screen in WordPress. Unfortunately, after a frustrating amount of searching, I was never able to successfully find all of the correct information or get the information I did have to work. I gave up on the endeavor.</p>\n\n\n\n<p>The demo video does show the promise of a somewhat interesting plugin:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-vimeo\"></div>\n</div>\n\n\n\n<p>Perhaps people who are already familiar with the Yext platform may have better luck. However, I would not recommend it to anyone new, at least in its current state.</p>\n\n\n\n<p>There are far better options for connecting via third-party APIs that would be simpler for the average end-user (or even a developer of 15+ years such as myself). The one-click login process provided via the MakeStories plugin, <a href=\"https://wptavern.com/makestories-2-0-launches-editor-for-wordpress-rivaling-googles-official-web-stories-plugin\">which I covered recently</a>, is a prime example of how to do things right.</p>\n\n\n\n<p>We are at a point in the internet era in which end-users should have simple, no-fuss connections between sites. Entering IDs, keys, and other complex fields should be tucked under an “advanced” section of the options screen, not as part of the default experience. Or, they should be so easily available that no one should have trouble finding them.</p>\n\n\n\n<h2>Launching with Shortcodes Instead of Blocks</h2>\n\n\n\n<p class=\"has-drop-cap\">Two years after the integration of the block editor into WordPress, the Yext team is launching its Yext Answers plugin with shortcodes, which require manual entrance by end-users. Currently, the plugin does not have block equivalents for its shortcodes.</p>\n\n\n\n<p>The team was either unwilling or unable to answer even the most fundamental questions about their decision to use shortcodes rather than launching their plugin — in the year 2020 — with at least block alternatives. At points, they even seemed confused about the subject altogether.</p>\n\n\n\n<p>The closest the team came to providing feedback after a lengthy discussion was the following, attributed to Rose Grant, the Associate Product Manager:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>We’re looking forward to feedback on the initial release of our plugin before iterating further on it, including introducing custom blocks. For this version of the plugin, we wanted to prioritize supporting clients who are using older versions of WordPress.</p></blockquote>\n\n\n\n<p>Packaging a set of shortcodes within a plugin is still a good practice, even for plugin developers who have transitioned fully to supporting the block editor. It allows them to support users who are still working with the classic editor. However, at this point, developers should be building from a block-first mindset. Blocks do not require that users remember specific shortcode names. They provide instant, visual feedback to users in the editor. And, block options (as opposed to shortcode arguments) do not rely on the oftentimes faulty input of user typing.</p>\n\n\n\n<p>At this point, all plugin developers should consider shortcodes a legacy feature and useful only as a backward-compatible option for users on the classic editor.</p>\n\n\n\n<p>The Communications Strategist for the company pointed out that this is Yext’s first venture into WordPress plugins and that the team may not be able to provide perspective or commentary on such questions related to blocks and shortcodes. However, this is the <a href=\"https://profiles.wordpress.org/thundersnow/#content-plugins\">third Yext-related plugin</a> associated with the plugin author account on WordPress.org.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Oct 2020 20:17:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Gutenberg 9.2 Adds Video Tracks, Improvements to Columns and Cover Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106638\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:209:\"https://wptavern.com/gutenberg-9-2-adds-video-tracks-improvements-to-columns-and-cover-blocks?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-9-2-adds-video-tracks-improvements-to-columns-and-cover-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4029:\"<p><a href=\"https://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">Gutenberg 9.2</a> was released this week and is the last release of the plugin to be rolled into WordPress 5.6. It features the long-awaited video tracks functionality, closing a <a href=\"https://github.com/WordPress/gutenberg/issues/7673\">ticket</a> that has been open for more than two years under development. </p>\n\n\n\n<p>Video tracks includes things like subtitles, captions, descriptions, chapters, and metadata. This update introduces a UI for adding video tags, which can contain multiple track elements using the following four attributes: </p>\n\n\n\n<ul><li><code>srclang</code> (Valid BCP 47 language tag)</li><li><code>label</code> (Title for player UI)</li><li><code>kind</code> (Captions, Chapters, Descriptions, Metadata or Subtitles)</li><li><code>src</code> (URL of the text file)</li></ul>\n\n\n\n<p>The ability to edit tracks is exposed in the video block’s toolbar:</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>This update closes a major gap in video accessibility and greatly improves the user experience of videos.</p>\n\n\n\n<p>Gutenberg 9.2 also introduces the ability to transform multiple selected blocks into a Columns block. For example, users can select three image blocks and instantly change them into a three-column section. Columns can be created from any kind of block, including InnerBlocks. The transform option will appear if the number of selected blocks falls between 2-6. (The maximum number is derived from the maximum number of columns allowed by the Columns block.)</p>\n\n\n\n<div class=\"wp-block-image\"><img />Transform multiple blocks into Columns block</div>\n\n\n\n<p>Another notable feature in 9.2 is the expansion of Cover blocks to support repeated background patterns. This gives users more flexibility in their designs, opening up a new set of possibilities.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttps://cloudup.com/cArDykzhpYZ\n</div>\n\n\n\n<p>This release brings in more than a dozen improvements to the new Widgets screen, as well as updates to the Query Block and Site Editor experiments. The most notable smaller enhancements to existing features include the following: </p>\n\n\n\n<ul><li>Add dropdown button to view templates in sidebar. (<a href=\"https://github.com/WordPress/gutenberg/pull/26132\">26132</a>)</li><li>Gallery block: Use image caption as fallback for alt text. (<a href=\"https://github.com/WordPress/gutenberg/pull/26082\">26082</a>)</li><li>Table block: Use hooks + API v2. (<a href=\"https://github.com/WordPress/gutenberg/pull/26065\">26065</a>)</li><li>Refactor document actions to handle template part titles. (<a href=\"https://github.com/WordPress/gutenberg/pull/26043\">26043</a>)</li><li>Info panel layout improvement. (<a href=\"https://github.com/WordPress/gutenberg/pull/26017\">26017</a>)</li><li>Remove non-core blocks from default editor content. (<a href=\"https://github.com/WordPress/gutenberg/pull/25844\">25844</a>)</li><li>Add very basic template information dropdown. (<a href=\"https://github.com/WordPress/gutenberg/pull/25757\">25757</a>)</li><li>Rename “Options” modal to “Preferences”. (<a href=\"https://github.com/WordPress/gutenberg/pull/25683\">25683</a>)</li><li>Add single column functionality to the Columns block. (<a href=\"https://github.com/WordPress/gutenberg/pull/24065\">24065</a>)</li><li>Add more writing flow options: Reduced UI, theme styles, spotlight. (<a href=\"https://github.com/WordPress/gutenberg/pull/22494\">22494</a>)</li><li>Add option to make Post Featured Image a link. (<a href=\"https://github.com/WordPress/gutenberg/pull/25714\">25714</a>)</li></ul>\n\n\n\n<p>Since the Gutenberg 9.2 release was delayed by a week, it includes many more bug fixes and code quality improvements than most releases. Check out the full <a href=\"https://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">changelog</a> for more details.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Oct 2020 15:59:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: ESLint Maintainers Share Challenges of Funding Open Source Utilities through Sponsorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106411\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:241:\"https://wptavern.com/eslint-maintainers-share-challenges-of-funding-open-source-utilities-through-sponsorship?utm_source=rss&utm_medium=rss&utm_campaign=eslint-maintainers-share-challenges-of-funding-open-source-utilities-through-sponsorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8517:\"<p><a href=\"https://eslint.org/\">ESLint</a>, one of the most popular JavaScript linting utilities, quickly eclipsed more established early competitors, <a href=\"https://wptavern.com/jshint-is-now-free-software-after-updating-license-to-mit-expat\">thanks to its open source license</a>. The clear licensing enabled the project to become widely used but did not immediately translate into funds for its ongoing development. Despite being downloaded more than 13 million times each week, its maintainers still struggle to support the utility.</p>\n\n\n\n<p>A little over a year since launching <a href=\"https://eslint.org/blog/2019/02/funding-eslint-future\">ESLint Collective</a> to fund contributors’ efforts, the project’s leadership <a href=\"https://eslint.org/blog/2020/10/year-paying-contributors-review\">shared</a> some of the successes and challenges of pursuing the sponsorship model. One effort that didn’t pan out was hiring a dedicated maintainer:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This was a difficult thing for the team to work through, and we think there’s an important lesson about open source sustainability: even though we receive donations, ESLint doesn’t bring in enough to pay maintainers full-time. When that happens, maintainers face a difficult decision: we can try to make part-time development work, but it’s hard to find other part-time work to make up the monthly income we need to make it worthwhile. In some cases, doing the part-time work makes it more difficult to find other work because you are time-constrained in a way that other freelancers are not.</p></blockquote>\n\n\n\n<p>One somewhat successful experiment ESLint explored is paying its five-person Technical Steering Committee (TSC), the project leadership responsible for managing releases, issues, and pull requests. Members receive $50/hour for contributions and time spent on the project, capped at a maximum of $1,000/month. The cap prevents TSC members from spending too much time on the project in addition to their day job so they don’t get burned out.</p>\n\n\n\n<p>The team reports that this stipend arrangement has worked “exceedingly well” and contributions have slowly increased: “There is something to be said for paying people for valuable work: when the work is explicitly valued, people are more willing to do it.” </p>\n\n\n\n<p>On larger projects like WordPress, corporate contributions are critical to its ongoing development. In recent years, the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> campaign has helped compensate many contributors as their employers pay them a salary while donating their time to work on WordPress. </p>\n\n\n\n<p>Some of the major advancements in WordPress require an immense investment of time and expertise. It’s problem solving that requires working across teams for months to build complex solutions that will work for millions of users. That’s why you don’t see armies of people building Gutenberg for free. Much of the development is driven by paid employees and might not otherwise have happened without corporate donations of employee time. Automattic, Google, Yoast SEO, 10up, GoDaddy, Human Made, WebDevStudios, WP Engine, and many other companies have collectively <a href=\"https://wordpress.org/five-for-the-future/pledges/\">pledged</a> thousands of hours worth of labor per month. The diversity of companies and individuals supporting WordPress helps the project maintain stability and weather the storms of life better. </p>\n\n\n\n<p>Smaller open source projects like ESLint rarely have the same resources at their disposal and have to experiment. Summarizing the one-year review of paying contributors from sponsorships, the team states: <em>“Maintaining a project like ESLint takes a lot of work and a lot of contributions from a lot of people. The only way for that to continue is to pay people for their time.”</em></p>\n\n\n\n<p>When even the most popular utilities struggle to gain enough sponsorships, what hope is there for smaller projects? Many utilities that have become indispensable in developers’ workflows are on a trajectory towards becoming unsustainable. </p>\n\n\n\n<p>“Unfortunately, utilities like these rarely bring in any meaningful amount of money from donations, no matter how widely used or beloved they are,” OSS engineer Colin McDonnell said in his proposal for a new funding model. “Consider <a href=\"https://github.com/ReactTraining/react-router\">react-router</a>. Even with 41.3k stars on GitHub, 3M weekly downloads from NPM, and nearly universal adoption in React-based single-page applications, it only brings in <a href=\"https://opencollective.com/react-router\">~$17k</a> of donations annually.”</p>\n\n\n\n<p>McDonnell proposed the concept of “<a href=\"https://vriad.com/essays/a-new-funding-model-for-open-source-software\">sponsor pools</a>,” to fund smaller projects that are unable to benefit from existing open-source funding models. Instead of making donations on a per-project basis, open source supporters could donate a set amount into a “wallet” every month and then distribute those funds to projects they select for their sponsor pools. The key part of the implementation is that adding new projects to the pool should only take one click, reducing the psychological friction associated with supporting additional projects.</p>\n\n\n\n<p>McDonnell suggested that GitHub is the only organization with the infrastructure to implement this model as an extension of GitHub Sponsors. One commenter on <a href=\"https://news.ycombinator.com/item?id=23981563\">Hacker News</a> proposes that Sponsors and the idea of “sponsors pool” could exist in parallel.</p>\n\n\n\n<p>“I believe that there’s a meaningful difference between being the patron of a developer and feeling like you’re backing a creator with feelings and a story and a family… and wanting to be a good citizen that has an approved list of projects that I benefit from and want to support,” Pete Forde said.</p>\n\n\n\n<p>“I can sponsor Matz, get his updates and feel good about knowing I am counted as a supporter AND set aside $$$ per month to contribute to all of the tools I use in my projects simply because it’s the right thing to do and I want those projects to exist for the long term. They are completely different initiatives. Patreon vs Humble Bundle, if you will.”</p>\n\n\n\n<p><a href=\"https://www.tidelift.com/\">Tidelift</a> is another concept that was highlighted in the HN discussion. It has a different, unique approach to funding open source work. Tidelift pools funds from the organizations using the software to support the maintainers. </p>\n\n\n\n<p>“I maintain <a href=\"https://github.com/ruby-grape/grape\">ruby grape</a>, a mid-sized project,” Daniel Doubrovkine said. “We get $144/month from Tidelift. As more companies signup for corporate sponsorship the dollar amount increases. It’s a pool.”</p>\n\n\n\n<p><a href=\"https://snowdrift.coop/\">Snowdrift</a> takes a more unusual approach to pooling sponsorships where patrons “crowdmatch” each others donations to fund public goods. It runs as a non-profit co-op to fund free and open projects that serve the public interest. </p>\n\n\n\n<p><a href=\"https://flossbank.com/\">Flossbank</a> is more specifically targeted at funding open source projects and takes technical approach to ensuring equitable contributions to the the entire dependency tree of your installed open source packages. The organization claims to provide “a free and frictionless” way to give back to maintainers. Developers can opt into curated, tech-focused ads in the terminal when installing open source packages. As an alternative, they can set a monthly donation amount to be spread across the packages they install.</p>\n\n\n\n<p>No single funding model is suitable for all projects but the experiments that pool sponsorships in various ways seem to be trending, especially for supporting maintainers who may not be as skilled in marketing their efforts. The conversation around supporting utilities <a href=\"https://news.ycombinator.com/item?id=23981563\">continues on Hacker News</a>. WordPress developers who depend on some of these utilities may want to join in and share their experiences in funding small projects.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Oct 2020 20:26:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Version 4.1.7 of the Akismet WordPress Plugin is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2104\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://blog.akismet.com/2020/10/22/version-4-1-7-of-the-akismet-wordpress-plugin-is-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:882:\"Version 4.1.7 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. It contains the following changes:\n\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n <li>Stops using the deprecated <code>wp_blacklist_check</code> function in favor of the new <code>wp_check_comment_disallowed_list</code> function.</li>\n <li>Shows the “Set Up Akismet” banner on the comments dashboard page, where it’s appropriate to mention if Akismet has not yet been configured.</li>\n <li>Miscellaneous text changes.</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n\nTo upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Oct 2020 19:23:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: Q: First FSE WordPress Theme Now Live\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106388\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"https://wptavern.com/q-first-fse-wordpress-theme-now-live?utm_source=rss&utm_medium=rss&utm_campaign=q-first-fse-wordpress-theme-now-live\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7929:\"<img />Q WordPress theme screenshot.\n\n\n\n<p class=\"has-drop-cap\">Themes Team representative Ari Stathopoulos is now officially the first theme author to have a theme in the directory that supports full-site editing (FSE). With a slimmed-down beta release of FSE shipping in WordPress 5.6 this December, someone had to be the first to take the plunge. It made sense for someone intimately familiar with theme development and the directory guidelines to step up.</p>\n\n\n\n<p>In many ways, it is a huge responsibility that Stathopoulos has taken on. Until one of the default Twenty* themes handles FSE, the <a href=\"https://wordpress.org/themes/q/\">Q theme</a> will likely be one of the primary examples that other theme authors will follow as they begin learning how to build block-based themes.</p>\n\n\n\n<p>Earlier this month, I used <a href=\"https://wptavern.com/exploring-full-site-editing-with-the-q-wordpress-theme\">Q to test FSE</a> and determine how much it had advanced. It is at least months away from being ready for use in production. The beta release in 5.6 is more or less just to get more people testing.</p>\n\n\n\n<p>Stathopoulos has no plans to make Q much more than a bare-bones starter or experimental theme. It is almost a playground to see what is possible.</p>\n\n\n\n<p>“Q was born out of necessity,” he said. “I couldn’t work on full-site editing or global styles without having a base theme for them, so for a while, I had it in a GitHub repository. I decided to release it to the WordPress.org repository because I think I might not be the only one with those issues. Downloading a theme in the dashboard is easier than cloning a repository for most people.”</p>\n\n\n\n<p>Existing block-based themes are few and far between. Automattic and some of its employees have some experimental projects, but none of those are in the official directory for anyone to test. Stathopoulos wanted a base theme that was unopinionated in terms of design that would allow him to work on FSE, test pull requests, and experiment with various ideas.</p>\n\n\n\n<p>“It has some ideas for things that ultimately I’d like to see implemented in FSE, and it’s a playground,” he said. “For example, the addition of a skip-link for accessibility in the theme, an implementation for responsive/adaptive typography, and conditional loading of block styles only when they are used/needed. These are things that I hope will be part of WordPress Core at some point, and the Q theme explores ideas on how to implement them.”</p>\n\n\n\n<p>He began work on the theme over a year ago and continues working on it as a side project. He said Yoast, his employer, fully supports the idea of creating things that are beneficial for other theme designers and WordPress core.</p>\n\n\n\n<h2>Developing an FSE-Capable Theme</h2>\n\n\n\n<img />Editing the Q theme single post template in the site editor.\n\n\n\n<p class=\"has-drop-cap\">End-users must install the Gutenberg plugin and activate the experimental FSE feature to use the theme or any similar theme. Currently, FSE is missing many key features that make it viable for most real-world projects. However, theme developers who plan to work with WordPress over the next several years will need to begin testing and experimenting. Q makes for a good starting point to simply get a feel for what themes will look like.</p>\n\n\n\n<p>“The biggest issue was — and still is — keeping up with Gutenberg development,” said Stathopoulos. “Many things are currently fluid, and they happen at a very high pace. The reason I created the theme was because other themes I was testing, as part of my contribution to the Themes Team, were not properly maintained or updated. I wanted to create a starter theme that can be used as a starting point for others as well.”</p>\n\n\n\n<p>One of the biggest questions still hanging in the air is what the timeline will look like for publicly-available, block-based themes. <em>Will 2021 be the year they take over?</em> That is unlikely given the feature’s current state. However, there will be a point where developers are no longer building classic or traditional themes.</p>\n\n\n\n<p>“I think we’re going to see a lot more FSE themes in 2021,” said Stathopoulos. “It might take a couple of years before they become the standard, but after the release of WordPress 5.6, I hope there will be a lot more development and focus on FSE and global styles. Whether we see more FSE themes or not depends on when some things get merged in WordPress core.”</p>\n\n\n\n<p>He pointed out some critical missing features from Gutenberg at the moment. The big one is that the Query block, which is the block that displays posts on the front end, does not inherit its options from the global query. Essentially, this means that, regardless of what URL a visitor is on, it displays the latest posts.</p>\n\n\n\n<p>“Once these things are addressed, and blockers for theme builders get resolved, I expect we’ll see an explosion of good FSE themes being built,” he said.</p>\n\n\n\n<p>Stathopoulos is most excited about the prospect of seeing more design standards come to core. Currently, there is no consistency between themes. Theme authors can use any markup they want. Switching themes affects a site’s structure, SEO, accessibility, speed, and many other things.</p>\n\n\n\n<p>“My advice to theme developers who want to start tinkering would be to start with something simple,” he said. “It’s tempting to add extremely opinionated styles, for buttons for example, but more and more things get added every day to the editor like a border-radius setting for buttons. Theme authors should avoid the trap of designing an FSE theme having in mind what the editor currently does. Instead, theme authors should strive to build something having in mind a vision of what the editor will eventually become.”</p>\n\n\n\n<h2>The Future of Theme Reviews</h2>\n\n\n\n<p class=\"has-drop-cap\">Because Stathopoulos is a representative of the Themes Team, he also has some insight into the shift in the coming years for guidelines and what steps authors might need to take. While it is too early for the team to begin making decisions, its members are already thinking about forthcoming changes.</p>\n\n\n\n<p>“Change is always difficult, especially when it’s for something this big,” said Stathopoulos. “It will be a bumpy ride, and it will take time. WordPress theming is a huge industry. For a while, ‘classic’ (for lack of a better word) themes will continue to be a viable solution for theme developers who didn’t have time to catch up. But not forever.”</p>\n\n\n\n<p>Some may look back at previous major shifts and worry about what the future theme directory guidelines may ask. In 2015, the team <a href=\"https://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options\">required all theme options to use the customizer</a>. This was after a three-year wait for theme authors to organically make the switch. Given that FSE will be a much larger departure from norms and dislike of the Gutenberg project from segments of the development community, it could be a rough transition.</p>\n\n\n\n<p>“At some point, FSE themes will become the industry standard and what the users want,” said Stathopoulos. “Personally, I hope no one will want to upload a classic theme in the w.org repository in 2025 when the industry has moved on. It would be like uploading today a theme that is using tables and iframes for layouts.”</p>\n\n\n\n<p>He said that sufficient time would be given for the eventual transition. However, the team will likely prioritize FSE-based themes. They are cognizant of how much of a shift this will be and will plan accordingly when the time comes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Oct 2020 18:48:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"WPTavern: Loginizer Plugin Gets Forced Security Update for Vulnerabilities Affecting 1 Million Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106557\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:245:\"https://wptavern.com/loginizer-plugin-gets-forced-security-update-for-vulnerabilities-affecting-1-million-users?utm_source=rss&utm_medium=rss&utm_campaign=loginizer-plugin-gets-forced-security-update-for-vulnerabilities-affecting-1-million-users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5484:\"<p>WordPress.org has pushed out a forced security update for the <a href=\"https://wordpress.org/plugins/loginizer/\">Loginizer</a> plugin, which is active on more than 1 million websites. The plugin offers brute force protection in its free version, along with other security features like two-factor auth, reCAPTCHA, and PasswordLess login in its commercial upgrade. </p>\n\n\n\n<p>Last week security researcher Slavco Mihajloski <a href=\"https://wpdeeply.com/loginizer-before-1-6-4-sqli-injection/\">discovered</a> an unauthenticated SQL injection vulnerability, and an XSS vulnerability, that he disclosed to the plugin’s authors. Loginizer version 1.6.4 was released on October 16, 2020, with patches for the two issues, summarized on the plugin’s blog: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>1) [Security Fix] : A properly crafted username used to login could lead to SQL injection. This has been fixed by using the prepare function in PHP which prepares the SQL query for safe execution.</p><p>2) [Security Fix] : If the IP HTTP header was modified to have a null byte it could lead to stored XSS. This has been fixed by properly sanitizing the IP HTTP header before using the same.</p></blockquote>\n\n\n\n<p>Loginizer did not disclose the vulnerability until today in order to give users the time to upgrade. Given the severity of the vulnerability, the plugins team at WordPress.org pushed out the security update to all sites running Loginizer on WordPress 3.7+. </p>\n\n\n\n<p>In July, 2020, Loginizer was <a href=\"https://loginizer.com/blog/loginizer-has-been-acquired-by-softaculous/\">acquired by Softaculous</a>, so the company was also able to automatically upgrade any WordPress installations with Loginizer that had been created using Softaculous. This effort, combined with the updates from WordPress.org, covered a large portion of Loginizer’s user base.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Any <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> install with <a href=\"https://twitter.com/loginizer?ref_src=twsrc%5Etfw\">@loginizer</a> probably isn\'t using another WAF solution. As you can notice from the graph 600k+500k active installs were updated upside down, so … Preauth SQLi in it, reported by me. Update! Crunching write up :) <a href=\"https://t.co/gkEVWun9wt\">https://t.co/gkEVWun9wt</a> <a href=\"https://t.co/XWXVMYO1ED\">pic.twitter.com/XWXVMYO1ED</a></p>— mslavco (@mslavco) <a href=\"https://twitter.com/mslavco/status/1318059239332601856?ref_src=twsrc%5Etfw\">October 19, 2020</a></blockquote>\n</div>\n\n\n\n<p>The automatic update took some of the plugin’s users by surprise, since they had not initiated it themselves and had not activated automatic updates for plugins. After several users <a href=\"https://wordpress.org/support/topic/automatic-update-33/\">posted</a> on the plugin’s support forum, plugin team member Samuel Wood said that “WordPress.org has the ability to turn on auto-updates for security issues in plugins” and has used this capability many times.</p>\n\n\n\n<p>Mihajloski <a href=\"https://wpdeeply.com/loginizer-before-1-6-4-sqli-injection/\">published</a> a more detailed proof-of-concept on his blog earlier today. He also highlighted some concerns regarding the systems WordPress has in place that allowed this kind of of severe vulnerability to slip through the cracks. He claims the issue could have easily been prevented by the plugin review team since the plugin wasn’t using the prepare function for safe execution of SQL queries. Mihajloski also recommended recurring code audits for plugins in the official directory.</p>\n\n\n\n<p>“When a plugin gets into the repository, it must be reviewed, but when is it reviewed again?” Mihajloski said. “Everyone starts with 0 active installs, but what happens on 1k, 10k, 50k, 100k, 500k, 1mil+ active installs?”</p>\n\n\n\n<p>Mihajloski was at puzzled how such a glaring security issue could remain in the plugin’s code so long, given that it is a security plugin with an active install count that is more than many well known CMS’s. The plugin also recently changed hands when it was acquired by Softaculus and had been audited by multiple security organizations, including <a href=\"https://blog.wpsec.com/sql-injection-and-csrf-security-vulnerability-in-loginizer/\">WPSec</a> and <a href=\"https://blog.dewhurstsecurity.com/2018/05/22/loginizer-wordpress-plugin-xss-vulnerability.html\">Dewhurst Security</a>.</p>\n\n\n\n<p>Mihajloski also recommends that WordPress improve the transparency around <a href=\"https://wordpress.org/about/security/\">security</a>, as some site owners and closed communities may not be comfortable with having their assets administered by unknown people at WordPress.org.</p>\n\n\n\n<p>“WordPress.org in general is transparent, but there isn’t any statement or document about who, how and when decides about and performs automatic updates,” Mihajloski said. “It is kind of [like] holding all your eggs in one basket.</p>\n\n\n\n<p>“I think those are the crucial points that WP.org should focus on and everything will came into place in a short time: complete WordPress tech documentation for security warnings, a guide for disclosure of the bugs (from researchers, but also from a vendor aspect), and recurring code audits for popular plugins.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Oct 2020 03:47:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 18 Nov 2020 18:17:55 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Wed, 18 Nov 2020 18:00:07 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20201118174641\";}','no'),(4874,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1605766675','no'),(4875,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1605723475','no'),(4876,'_transient_timeout_dash_v2_c05853b002c443ec8e57ff884f56cdde','1605766675','no'),(4877,'_transient_dash_v2_c05853b002c443ec8e57ff884f56cdde','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://es.wordpress.org/2020/11/03/wordpress-5-6-beta-3/\'>WordPress 5.6 Beta 3</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/should-wordpress-notify-users-of-plugin-ownership-changes?utm_source=rss&utm_medium=rss&utm_campaign=should-wordpress-notify-users-of-plugin-ownership-changes\'>WPTavern: Should WordPress Notify Users of Plugin Ownership Changes?</a></li><li><a class=\'rsswidget\' href=\'https://heropress.com/final-day-to-apply-to-speak-at-wordfest-live-2021/#utm_source=rss&utm_medium=rss&utm_campaign=final-day-to-apply-to-speak-at-wordfest-live-2021\'>HeroPress: Final Day to Apply to Speak at WordFest Live 2021</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-com-gives-conservative-treehouse-the-boot-citing-tos-violations?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-gives-conservative-treehouse-the-boot-citing-tos-violations\'>WPTavern: WordPress.com Gives Conservative Treehouse the Boot, Citing TOS Violations</a></li></ul></div>','no'),(4878,'_site_transient_timeout_community-events-1772efb72fc888d934e43e197d6aa729','1605766678','no'),(4879,'_site_transient_community-events-1772efb72fc888d934e43e197d6aa729','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"186.15.40.0\";}s:6:\"events\";a:4:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:75:\"Discussion Group: Who am I to be speaking? + Finding a topic for a WP event\";s:3:\"url\";s:68:\"https://www.meetup.com/learn-wordpress-discussions/events/274559494/\";s:6:\"meetup\";s:27:\"Learn WordPress Discussions\";s:10:\"meetup_url\";s:51:\"https://www.meetup.com/learn-wordpress-discussions/\";s:4:\"date\";s:19:\"2020-11-18 09:00:00\";s:8:\"end_date\";s:19:\"2020-11-18 10:00:00\";s:20:\"start_unix_timestamp\";i:1605718800;s:18:\"end_unix_timestamp\";i:1605722400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.779998779297003;s:9:\"longitude\";d:-122.41999816895;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:23:\"WordCamp México Online\";s:3:\"url\";s:33:\"https://mexico.wordcamp.org/2020/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2020-11-25 10:00:00\";s:8:\"end_date\";s:19:\"2020-11-28 00:00:00\";s:20:\"start_unix_timestamp\";i:1606320000;s:18:\"end_unix_timestamp\";i:1606543200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"MX\";s:8:\"latitude\";d:19.384217599999999;s:9:\"longitude\";d:-99.129081200000002;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:70:\"¡Hagamos WordPress! Cómo participar en los equipos de colaboración.\";s:3:\"url\";s:50:\"https://www.meetup.com/wpsanjose/events/274352022/\";s:6:\"meetup\";s:26:\"WordPress Meetup San José\";s:10:\"meetup_url\";s:33:\"https://www.meetup.com/wpsanjose/\";s:4:\"date\";s:19:\"2020-11-17 19:00:00\";s:8:\"end_date\";s:19:\"2020-11-17 21:00:00\";s:20:\"start_unix_timestamp\";i:1605661200;s:18:\"end_unix_timestamp\";i:1605668400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"CR\";s:8:\"latitude\";d:9.9300003051758008;s:9:\"longitude\";d:-84.080001831055;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:64:\"¿Cómo colaborar en la comunidad de Accesibilidad de WordPress?\";s:3:\"url\";s:50:\"https://www.meetup.com/wpsanjose/events/274351950/\";s:6:\"meetup\";s:26:\"WordPress Meetup San José\";s:10:\"meetup_url\";s:33:\"https://www.meetup.com/wpsanjose/\";s:4:\"date\";s:19:\"2020-11-19 19:00:00\";s:8:\"end_date\";s:19:\"2020-11-19 21:00:00\";s:20:\"start_unix_timestamp\";i:1605834000;s:18:\"end_unix_timestamp\";i:1605841200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"CR\";s:8:\"latitude\";d:9.9300003051758008;s:9:\"longitude\";d:-84.080001831055;}}}}','no'),(4880,'_site_transient_timeout_available_translations','1605734288','no'),(4881,'_site_transient_available_translations','a:123:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-20 19:59:25\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-23 04:00:44\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.7/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-21 17:47:54\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.15\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.15/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:19:\"2020-01-22 10:57:09\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.3.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:6:\"4.8.14\";s:7:\"updated\";s:19:\"2017-10-01 12:57:10\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.8.14/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-02 09:02:07\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-17 11:59:40\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-02 13:00:36\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"5.3.6\";s:7:\"updated\";s:19:\"2020-11-09 10:17:46\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.3.6/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-22 09:00:46\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-08-04 08:37:35\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-09 20:03:47\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/5.5.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-22 11:22:21\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-13 17:09:13\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-09 20:03:38\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-22 11:23:04\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.5.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 12:41:58\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.5.1/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 13:13:34\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:20:49\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-09 23:59:49\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-02 06:41:38\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-02 06:42:25\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-03-31 22:29:33\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-02 15:08:45\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:17:25\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-23 17:16:31\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-26 16:36:58\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:16:03\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-23 16:46:04\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.2/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-23 23:51:44\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:5:\"5.4.1\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.1/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:5:\"5.3.2\";s:7:\"updated\";s:19:\"2019-11-12 04:43:11\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.3.2/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"5.1.6\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.1.6/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 16:47:26\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-09 14:15:48\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:3:\"5.5\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.5/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-24 11:30:15\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-24 16:34:59\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 11:32:59\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:38:04\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-24 17:47:23\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"5.4.4\";s:7:\"updated\";s:19:\"2020-11-01 12:45:17\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.4/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.6/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 17:19:15\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.8/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-26 21:51:49\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.9.7\";s:7:\"updated\";s:19:\"2018-06-17 09:33:44\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.7/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-22 11:45:01\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 12:40:31\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.5.1/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-03 10:58:08\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-09 07:22:08\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.7.11\";s:7:\"updated\";s:19:\"2018-09-20 11:13:37\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.7.11/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 11:37:58\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-27 02:02:55\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-24 13:53:29\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"5.4.4\";s:7:\"updated\";s:19:\"2020-11-04 09:27:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.4/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 09:12:42\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.5.1/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-12 08:08:32\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 07:34:10\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:6:\"4.9.15\";s:7:\"updated\";s:19:\"2020-09-30 14:08:59\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.15/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"5.3.6\";s:7:\"updated\";s:19:\"2020-10-31 10:30:54\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.3.6/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-27 09:24:40\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.5.1/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"5.2.7\";s:7:\"updated\";s:19:\"2020-07-14 08:45:32\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.7/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-14 08:34:14\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.4.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"5.2.3\";s:7:\"updated\";s:19:\"2019-09-08 12:57:25\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.3/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.8.14\";s:7:\"updated\";s:19:\"2018-02-13 07:38:55\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.14/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"4.9.15\";s:7:\"updated\";s:19:\"2018-08-31 11:57:07\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.15/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.20/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-23 15:00:53\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-27 10:30:26\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:03:50\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:10:26\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:05:21\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.5.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:19:\"2020-01-01 08:53:00\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.3.3/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.8.3\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.3/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-17 05:05:59\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.20/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 18:44:29\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-03 15:42:46\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.5.1/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-22 13:39:04\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-01 11:09:51\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.2/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:05:04\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:05:19\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:3:\"5.3\";s:7:\"updated\";s:19:\"2019-11-12 04:37:38\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/5.3/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-07 07:40:40\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-13 06:50:55\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.5.1/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2018-01-04 13:33:13\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-02 11:04:40\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:3:\"5.5\";s:7:\"updated\";s:19:\"2020-08-12 14:55:13\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.5/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:47:10\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"5.2.6\";s:7:\"updated\";s:19:\"2019-10-22 00:19:41\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.6/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-08-22 08:23:03\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.4.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-09-04 19:01:04\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-12 12:31:53\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:45:51\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.1/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"5.1.6\";s:7:\"updated\";s:19:\"2020-04-09 10:48:08\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.1.6/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:6:\"5.0.10\";s:7:\"updated\";s:19:\"2019-01-23 12:32:40\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.0.10/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-13 09:29:34\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.4.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 09:42:30\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.4.4\";s:7:\"updated\";s:19:\"2020-11-16 18:41:22\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.4/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:19:\"2020-03-08 12:12:22\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.3.3/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(4882,'new_admin_email','hferreto@zews.co.cr','yes'),(4889,'rewrite_rules','a:215:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$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:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:10:\"service/?$\";s:28:\"index.php?post_type=services\";s:40:\"service/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=services&feed=$matches[1]\";s:35:\"service/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=services&feed=$matches[1]\";s:27:\"service/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=services&paged=$matches[1]\";s:10:\"project/?$\";s:28:\"index.php?post_type=projects\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=projects&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=projects&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=projects&paged=$matches[1]\";s:8:\"staff/?$\";s:25:\"index.php?post_type=staff\";s:38:\"staff/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=staff&feed=$matches[1]\";s:33:\"staff/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=staff&feed=$matches[1]\";s:25:\"staff/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=staff&paged=$matches[1]\";s:14:\"testimonial/?$\";s:32:\"index.php?post_type=testimonials\";s:44:\"testimonial/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=testimonials&feed=$matches[1]\";s:39:\"testimonial/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=testimonials&feed=$matches[1]\";s:31:\"testimonial/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=testimonials&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:49:\"category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?project_categories=$matches[1]&feed=$matches[2]\";s:44:\"category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?project_categories=$matches[1]&feed=$matches[2]\";s:25:\"category/([^/]+)/embed/?$\";s:51:\"index.php?project_categories=$matches[1]&embed=true\";s:37:\"category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?project_categories=$matches[1]&paged=$matches[2]\";s:19:\"category/([^/]+)/?$\";s:40:\"index.php?project_categories=$matches[1]\";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: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:35:\"service/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"service/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"service/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"service/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"service/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"service/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"service/([^/]+)/embed/?$\";s:41:\"index.php?services=$matches[1]&embed=true\";s:28:\"service/([^/]+)/trackback/?$\";s:35:\"index.php?services=$matches[1]&tb=1\";s:48:\"service/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?services=$matches[1]&feed=$matches[2]\";s:43:\"service/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?services=$matches[1]&feed=$matches[2]\";s:36:\"service/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?services=$matches[1]&paged=$matches[2]\";s:43:\"service/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?services=$matches[1]&cpage=$matches[2]\";s:32:\"service/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?services=$matches[1]&page=$matches[2]\";s:24:\"service/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"service/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"service/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"service/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"service/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"service/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:41:\"index.php?projects=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:35:\"index.php?projects=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?projects=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?projects=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?projects=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?projects=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?projects=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"staff/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"staff/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"staff/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"staff/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"staff/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"staff/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"staff/([^/]+)/embed/?$\";s:38:\"index.php?staff=$matches[1]&embed=true\";s:26:\"staff/([^/]+)/trackback/?$\";s:32:\"index.php?staff=$matches[1]&tb=1\";s:46:\"staff/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?staff=$matches[1]&feed=$matches[2]\";s:41:\"staff/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?staff=$matches[1]&feed=$matches[2]\";s:34:\"staff/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?staff=$matches[1]&paged=$matches[2]\";s:41:\"staff/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?staff=$matches[1]&cpage=$matches[2]\";s:30:\"staff/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?staff=$matches[1]&page=$matches[2]\";s:22:\"staff/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"staff/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"staff/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"staff/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"staff/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"staff/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"testimonial/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"testimonial/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"testimonial/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"testimonial/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"testimonial/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"testimonial/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"testimonial/([^/]+)/embed/?$\";s:45:\"index.php?testimonials=$matches[1]&embed=true\";s:32:\"testimonial/([^/]+)/trackback/?$\";s:39:\"index.php?testimonials=$matches[1]&tb=1\";s:52:\"testimonial/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?testimonials=$matches[1]&feed=$matches[2]\";s:47:\"testimonial/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?testimonials=$matches[1]&feed=$matches[2]\";s:40:\"testimonial/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&paged=$matches[2]\";s:47:\"testimonial/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&cpage=$matches[2]\";s:36:\"testimonial/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?testimonials=$matches[1]&page=$matches[2]\";s:28:\"testimonial/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"testimonial/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"testimonial/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"testimonial/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"testimonial/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"testimonial/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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=112&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:31:\".+?/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\".+?/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\".+?/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\".+?/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"(.+?)/([^/]+)/embed/?$\";s:63:\"index.php?category_name=$matches[1]&name=$matches[2]&embed=true\";s:26:\"(.+?)/([^/]+)/trackback/?$\";s:57:\"index.php?category_name=$matches[1]&name=$matches[2]&tb=1\";s:46:\"(.+?)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:41:\"(.+?)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:34:\"(.+?)/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&paged=$matches[3]\";s:41:\"(.+?)/([^/]+)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&cpage=$matches[3]\";s:30:\"(.+?)/([^/]+)(?:/([0-9]+))?/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&page=$matches[3]\";s:20:\".+?/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\".+?/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\".+?/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\".+?/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:14:\"(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:26:\"(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:33:\"(.+?)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&cpage=$matches[2]\";s:8:\"(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";}','yes'),(4890,'_transient_timeout_wpseo_total_unindexed_posts','1605809934','no'),(4891,'_transient_wpseo_total_unindexed_posts','127','no'),(4892,'_transient_timeout_wpseo_total_unindexed_terms','1605809934','no'),(4893,'_transient_wpseo_total_unindexed_terms','3','no'),(4894,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1605809934','no'),(4895,'_transient_wpseo_total_unindexed_post_type_archives','4','no'),(4898,'_site_transient_timeout_theme_roots','1605727170','no'),(4899,'_site_transient_theme_roots','a:3:{s:18:\"construction-child\";s:7:\"/themes\";s:12:\"construction\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";}','no'),(4901,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/es_ES/wordpress-5.5.3.zip\";s:6:\"locale\";s:5:\"es_ES\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/es_ES/wordpress-5.5.3.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.5.3\";s:7:\"version\";s:5:\"5.5.3\";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:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.5.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.5.3-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.5.3-partial-1.zip\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.5.3\";s:7:\"version\";s:5:\"5.5.3\";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:5:\"5.5.1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/es_ES/wordpress-5.5.3.zip\";s:6:\"locale\";s:5:\"es_ES\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/es_ES/wordpress-5.5.3.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.5.3\";s:7:\"version\";s:5:\"5.5.3\";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:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/es_ES/wordpress-5.5.2.zip\";s:6:\"locale\";s:5:\"es_ES\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/es_ES/wordpress-5.5.2.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.5.2\";s:7:\"version\";s:5:\"5.5.2\";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:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1605725372;s:15:\"version_checked\";s:5:\"5.5.1\";s:12:\"translations\";a:1:{i:0;a:7:{s:4:\"type\";s:4:\"core\";s:4:\"slug\";s:7:\"default\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.5.1\";s:7:\"updated\";s:19:\"2020-10-29 08:16:03\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.1/es_ES.zip\";s:10:\"autoupdate\";b:1;}}}','no'),(4902,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1605725372;s:7:\"checked\";a:3:{s:18:\"construction-child\";s:3:\"1.2\";s:12:\"construction\";s:3:\"1.2\";s:12:\"twentytwenty\";s:3:\"1.5\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.5.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(4903,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1605725379;s:7:\"checked\";a:12:{s:19:\"akismet/akismet.php\";s:5:\"4.1.6\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:5:\"6.5.0\";s:69:\"construction_theme_functionality/construction_theme_functionality.php\";s:3:\"1.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.2.2\";s:9:\"hello.php\";s:5:\"1.7.2\";s:31:\"creame-whatsapp-me/joinchat.php\";s:6:\"4.0.10\";s:27:\"maintenance/maintenance.php\";s:4:\"3.96\";s:23:\"revslider/revslider.php\";s:6:\"6.2.23\";s:28:\"woocommerce-/woocommerce.php\";s:5:\"4.5.2\";s:27:\"js_composer/js_composer.php\";s:5:\"6.2.0\";s:33:\"duplicate-post/duplicate-post.php\";s:5:\"3.2.6\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"15.0\";}s:8:\"response\";a:8:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.7.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:6:\"tested\";s:5:\"5.5.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":12:{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.6.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.6.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:69:\"https://ps.w.org/breadcrumb-navxt/assets/icon-256x256.png?rev=2410525\";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:6:\"tested\";s:5:\"5.5.3\";s:12:\"requires_php\";s:3:\"5.5\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{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:3:\"5.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:31:\"creame-whatsapp-me/joinchat.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/creame-whatsapp-me\";s:4:\"slug\";s:18:\"creame-whatsapp-me\";s:6:\"plugin\";s:31:\"creame-whatsapp-me/joinchat.php\";s:11:\"new_version\";s:5:\"4.1.2\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/creame-whatsapp-me/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/creame-whatsapp-me.4.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/creame-whatsapp-me/assets/icon-256x256.png?rev=2346008\";s:2:\"1x\";s:71:\"https://ps.w.org/creame-whatsapp-me/assets/icon-128x128.png?rev=2346008\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/creame-whatsapp-me/assets/banner-1544x500.png?rev=2412419\";s:2:\"1x\";s:73:\"https://ps.w.org/creame-whatsapp-me/assets/banner-772x250.png?rev=2412419\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.3\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"maintenance/maintenance.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/maintenance\";s:4:\"slug\";s:11:\"maintenance\";s:6:\"plugin\";s:27:\"maintenance/maintenance.php\";s:11:\"new_version\";s:4:\"3.97\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/maintenance/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/maintenance.3.97.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/maintenance/assets/icon-256x256.png?rev=2160987\";s:2:\"1x\";s:64:\"https://ps.w.org/maintenance/assets/icon-128x128.png?rev=2160987\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/maintenance/assets/banner-772x250.png?rev=1637471\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.3\";s:12:\"requires_php\";s:3:\"5.2\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:28:\"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:28:\"woocommerce-/woocommerce.php\";s:11:\"new_version\";s:5:\"4.7.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.3\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"15.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2363699\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}s:6:\"tested\";s:5:\"5.5.3\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":6:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:5:\"6.4.2\";s:6:\"plugin\";s:27:\"js_composer/js_composer.php\";s:3:\"url\";s:0:\"\";s:7:\"package\";b:0;s:4:\"name\";N;}}s:12:\"translations\";a:8:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.5.0\";s:7:\"updated\";s:19:\"2020-04-05 12:40:42\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/translation/plugin/breadcrumb-navxt/6.5.0/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:14:\"contact-form-7\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2020-08-26 07:18:05\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/plugin/contact-form-7/5.2.2/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"hello-dolly\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.2\";s:7:\"updated\";s:19:\"2019-10-09 18:49:33\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/hello-dolly/1.7.2/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:3;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:18:\"creame-whatsapp-me\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:6:\"4.0.10\";s:7:\"updated\";s:19:\"2020-09-17 14:49:40\";s:7:\"package\";s:86:\"https://downloads.wordpress.org/translation/plugin/creame-whatsapp-me/4.0.10/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:4;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"maintenance\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:4:\"3.96\";s:7:\"updated\";s:19:\"2020-09-18 09:12:18\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/translation/plugin/maintenance/3.96/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:5;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.5.2\";s:7:\"updated\";s:19:\"2020-10-14 06:27:34\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/woocommerce/4.5.2/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:6;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:14:\"duplicate-post\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.2.6\";s:7:\"updated\";s:19:\"2020-09-17 11:06:56\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/plugin/duplicate-post/3.2.6/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:7;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:13:\"wordpress-seo\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:4:\"15.0\";s:7:\"updated\";s:19:\"2020-09-29 08:29:22\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/plugin/wordpress-seo/15.0/es_ES.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:2:{s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-post\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:5:\"3.2.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/duplicate-post.3.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=2336666\";s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=2336666\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/duplicate-post/assets/banner-1544x500.png?rev=2336666\";s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=2336666\";}s:11:\"banners_rtl\";a:0:{}}}}','no'); /*!40000 ALTER TABLE `grpsd_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_postmeta` -- DROP TABLE IF EXISTS `grpsd_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB AUTO_INCREMENT=1451 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_postmeta` -- LOCK TABLES `grpsd_postmeta` WRITE; /*!40000 ALTER TABLE `grpsd_postmeta` DISABLE KEYS */; INSERT INTO `grpsd_postmeta` VALUES (3,6,'_form','<div class=\"row\">\n<div class=\"col-sm-12\">\n<label> Nombre completo (requerido)\n [text* su-nombre] </label>\n\n<label> Correo electrónico (requerido)\n [email* su-email] </label>\n</div> <div class=\"col-sm-6\">\n<label> Teléfono\n [text su-telefono] </label>\n</div> <div class=\"col-sm-6\">\n<label> Ubicación\n [text su-telefono] </label>\n</div> <div class=\"col-sm-12\">\n<label> Mensaje / Comentarios\n [textarea su-mensaje] </label>\n\n[submit \"Enviar\"]\n</div>\n</div>'),(4,6,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:28:\"Grupo Suadi \"[your-subject]\"\";s:6:\"sender\";s:36:\"Grupo Suadi <wordpress@zewsdemo.com>\";s:9:\"recipient\";s:19:\"hferreto@zews.co.cr\";s:4:\"body\";s:180:\"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 Grupo Suadi (http://zewsdemo.com/gruposuadi)\";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;}'),(5,6,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:28:\"Grupo Suadi \"[your-subject]\"\";s:6:\"sender\";s:36:\"Grupo Suadi <wordpress@zewsdemo.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:122:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Grupo Suadi (http://zewsdemo.com/gruposuadi)\";s:18:\"additional_headers\";s:29:\"Reply-To: hferreto@zews.co.cr\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6,6,'_messages','a:22:{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: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.\";}'),(7,6,'_additional_settings',''),(8,6,'_locale','es_ES'),(9,7,'_wp_attached_file','woocommerce-placeholder.png'),(10,7,'_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:14:{s:21:\"woocommerce_thumbnail\";a:5:{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:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-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:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;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: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: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: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:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-450x250.png\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-550x300.png\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1110x550.png\";s:5:\"width\";i:1110;s:6:\"height\";i:550;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:{}}}'),(11,8,'_wp_attached_file','2020/09/mt-sample-background.jpg'),(12,8,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:32:\"2020/09/mt-sample-background.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"mt-sample-background-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:32:\"mt-sample-background-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:32:\"mt-sample-background-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"mt-sample-background-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"mt-sample-background-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"mt-sample-background-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:32:\"mt-sample-background-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"mt-sample-background-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:32:\"mt-sample-background-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:32:\"mt-sample-background-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:32:\"mt-sample-background-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:32:\"mt-sample-background-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:32:\"mt-sample-background-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:32:\"mt-sample-background-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:33:\"mt-sample-background-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;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:{}}}'),(26,13,'_edit_lock','1602190541:2'),(27,13,'_edit_last','2'),(28,13,'_wp_page_template','default'),(29,13,'slide_template','default'),(30,13,'rs_page_bg_color','#ffffff'),(31,13,'_wpb_vc_js_status','true'),(32,13,'_nt_header_background_color','#222222'),(33,13,'_nt_header_alignment','left'),(34,13,'_nt_header_text_color','#ffffff'),(35,13,'_nt_header_breadcrumb_color','light'),(36,13,'_nt_header_padding_top','200'),(37,13,'_nt_header_padding_bottom','0'),(38,15,'_edit_last','2'),(39,15,'_edit_lock','1605636714:2'),(40,15,'slide_template',''),(41,15,'rs_page_bg_color',''),(42,15,'_wpb_vc_js_status','true'),(43,15,'_nt_header_background_color','#222222'),(44,15,'_nt_header_alignment','left'),(45,15,'_nt_header_text_color','#ffffff'),(46,15,'_nt_header_breadcrumb_color','light'),(47,15,'_nt_header_padding_top','200'),(48,15,'_nt_header_padding_bottom','10'),(49,18,'_wp_attached_file','2020/09/Alquiler-de-equipos.jpg'),(50,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:31:\"2020/09/Alquiler-de-equipos.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Alquiler-de-equipos-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Alquiler-de-equipos-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Alquiler-de-equipos-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:31:\"Alquiler-de-equipos-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:31:\"Alquiler-de-equipos-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:31:\"Alquiler-de-equipos-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:31:\"Alquiler-de-equipos-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:31:\"Alquiler-de-equipos-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:31:\"Alquiler-de-equipos-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:31:\"Alquiler-de-equipos-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:32:\"Alquiler-de-equipos-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Alquiler-de-equipos-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:31:\"Alquiler-de-equipos-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Alquiler-de-equipos-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:31:\"Alquiler-de-equipos-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:31:\"Alquiler-de-equipos-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Alquiler-de-equipos-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:{}}}'),(51,15,'_thumbnail_id','256'),(52,15,'_nt_header_title','Alquiler de equipos'),(56,15,'_nt_enable_page_header','on'),(57,15,'_nt_header_background_image_id','20'),(58,15,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(61,20,'_wp_attached_file','2020/09/Header-maquinaria.jpg'),(62,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:967;s:4:\"file\";s:29:\"2020/09/Header-maquinaria.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Header-maquinaria-300x151.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Header-maquinaria-1024x516.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Header-maquinaria-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:29:\"Header-maquinaria-768x387.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"Header-maquinaria-1536x774.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:774;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:29:\"Header-maquinaria-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:29:\"Header-maquinaria-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:29:\"Header-maquinaria-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:29:\"Header-maquinaria-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:29:\"Header-maquinaria-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:29:\"Header-maquinaria-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:30:\"Header-maquinaria-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Header-maquinaria-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:29:\"Header-maquinaria-600x302.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Header-maquinaria-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:29:\"Header-maquinaria-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:29:\"Header-maquinaria-600x302.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Header-maquinaria-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:{}}}'),(63,15,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(70,22,'_edit_last','2'),(71,22,'_edit_lock','1605636614:2'),(72,22,'slide_template',''),(73,22,'rs_page_bg_color',''),(74,22,'_wpb_vc_js_status','true'),(75,22,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(76,22,'_nt_header_background_color','#222222'),(77,22,'_nt_header_alignment','left'),(78,22,'_nt_header_text_color','#ffffff'),(79,22,'_nt_header_breadcrumb_color','light'),(80,22,'_nt_header_padding_top','200'),(81,22,'_nt_header_padding_bottom','10'),(82,22,'_nt_enable_page_header','on'),(83,22,'_nt_header_background_image_id','20'),(84,22,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(85,22,'_nt_header_title','Excavadoras'),(86,23,'_wp_attached_file','2020/09/excavadoras-hidraulicas.jpg'),(87,23,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:35:\"2020/09/excavadoras-hidraulicas.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"excavadoras-hidraulicas-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"excavadoras-hidraulicas-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"excavadoras-hidraulicas-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:35:\"excavadoras-hidraulicas-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:35:\"excavadoras-hidraulicas-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:35:\"excavadoras-hidraulicas-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:35:\"excavadoras-hidraulicas-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:35:\"excavadoras-hidraulicas-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:35:\"excavadoras-hidraulicas-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:35:\"excavadoras-hidraulicas-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:36:\"excavadoras-hidraulicas-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"excavadoras-hidraulicas-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:35:\"excavadoras-hidraulicas-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"excavadoras-hidraulicas-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:35:\"excavadoras-hidraulicas-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:35:\"excavadoras-hidraulicas-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"excavadoras-hidraulicas-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:{}}}'),(88,22,'_thumbnail_id','315'),(89,24,'_menu_item_type','custom'),(90,24,'_menu_item_menu_item_parent','0'),(91,24,'_menu_item_object_id','24'),(92,24,'_menu_item_object','custom'),(93,24,'_menu_item_target',''),(94,24,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(95,24,'_menu_item_xfn',''),(96,24,'_menu_item_url','http://zewsdemo.com/gruposuadi/'),(98,25,'_menu_item_type','post_type'),(99,25,'_menu_item_menu_item_parent','0'),(100,25,'_menu_item_object_id','13'),(101,25,'_menu_item_object','page'),(102,25,'_menu_item_target',''),(103,25,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(104,25,'_menu_item_xfn',''),(105,25,'_menu_item_url',''),(107,26,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(108,26,'slide_template',''),(109,26,'rs_page_bg_color',''),(110,26,'_wpb_vc_js_status','true'),(111,26,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(112,26,'_nt_header_background_color','#222222'),(113,26,'_nt_header_alignment','left'),(114,26,'_nt_header_text_color','#ffffff'),(115,26,'_nt_header_breadcrumb_color','light'),(116,26,'_nt_header_padding_top','200'),(117,26,'_nt_header_padding_bottom','10'),(118,26,'_nt_enable_page_header','on'),(119,26,'_nt_header_background_image_id','20'),(120,26,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(121,26,'_nt_header_title','Tractores sobre Oruga'),(122,26,'_thumbnail_id','262'),(123,26,'_dp_original','22'),(124,26,'_edit_lock','1605636646:2'),(125,26,'_edit_last','2'),(126,27,'_wp_attached_file','2020/09/Tractores-bulldozer.jpg'),(127,27,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:31:\"2020/09/Tractores-bulldozer.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Tractores-bulldozer-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Tractores-bulldozer-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Tractores-bulldozer-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:31:\"Tractores-bulldozer-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:31:\"Tractores-bulldozer-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:31:\"Tractores-bulldozer-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:31:\"Tractores-bulldozer-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:31:\"Tractores-bulldozer-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:31:\"Tractores-bulldozer-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:31:\"Tractores-bulldozer-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:32:\"Tractores-bulldozer-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Tractores-bulldozer-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:31:\"Tractores-bulldozer-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Tractores-bulldozer-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:31:\"Tractores-bulldozer-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:31:\"Tractores-bulldozer-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Tractores-bulldozer-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:{}}}'),(128,27,'_wp_attachment_image_alt','Alquiler de Tractores bulldozer'),(129,28,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(130,28,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(131,28,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(132,28,'slide_template',''),(133,28,'rs_page_bg_color',''),(134,28,'_wpb_vc_js_status','true'),(135,28,'_nt_header_background_color','#222222'),(136,28,'_nt_header_alignment','left'),(137,28,'_nt_header_text_color','#ffffff'),(138,28,'_nt_header_breadcrumb_color','light'),(139,28,'_nt_header_padding_top','200'),(140,28,'_nt_header_padding_bottom','10'),(141,28,'_nt_enable_page_header','on'),(142,28,'_nt_header_background_image_id','20'),(143,28,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(144,28,'_nt_header_title','Camiones articulados'),(145,28,'_thumbnail_id','60'),(147,28,'_dp_original','26'),(148,28,'_edit_lock','1605636680:2'),(149,28,'_edit_last','2'),(152,30,'_wp_attached_file','2020/09/alquiler-camiones-articulados-1.jpg'),(153,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:43:\"2020/09/alquiler-camiones-articulados-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"alquiler-camiones-articulados-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"alquiler-camiones-articulados-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"alquiler-camiones-articulados-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:43:\"alquiler-camiones-articulados-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:43:\"alquiler-camiones-articulados-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:43:\"alquiler-camiones-articulados-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:43:\"alquiler-camiones-articulados-1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:43:\"alquiler-camiones-articulados-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:43:\"alquiler-camiones-articulados-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:43:\"alquiler-camiones-articulados-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:44:\"alquiler-camiones-articulados-1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"alquiler-camiones-articulados-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:43:\"alquiler-camiones-articulados-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"alquiler-camiones-articulados-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:43:\"alquiler-camiones-articulados-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:43:\"alquiler-camiones-articulados-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"alquiler-camiones-articulados-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:{}}}'),(154,31,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(155,31,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(156,31,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(157,31,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(158,31,'slide_template',''),(159,31,'rs_page_bg_color',''),(160,31,'_wpb_vc_js_status','true'),(161,31,'_nt_header_background_color','#222222'),(162,31,'_nt_header_alignment','left'),(163,31,'_nt_header_text_color','#ffffff'),(164,31,'_nt_header_breadcrumb_color','light'),(165,31,'_nt_header_padding_top','200'),(166,31,'_nt_header_padding_bottom','10'),(167,31,'_nt_enable_page_header','on'),(168,31,'_nt_header_background_image_id','20'),(169,31,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(170,31,'_nt_header_title','Retroexcavadoras'),(171,31,'_thumbnail_id','261'),(173,31,'_dp_original','28'),(174,31,'_edit_lock','1605636732:2'),(175,31,'_edit_last','2'),(176,33,'_wp_attached_file','2020/09/Alquiler-Retroexcavadoras.jpg'),(177,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:37:\"2020/09/Alquiler-Retroexcavadoras.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Alquiler-Retroexcavadoras-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Alquiler-Retroexcavadoras-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:37:\"Alquiler-Retroexcavadoras-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:37:\"Alquiler-Retroexcavadoras-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:37:\"Alquiler-Retroexcavadoras-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:37:\"Alquiler-Retroexcavadoras-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:37:\"Alquiler-Retroexcavadoras-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:37:\"Alquiler-Retroexcavadoras-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:37:\"Alquiler-Retroexcavadoras-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"Alquiler-Retroexcavadoras-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:37:\"Alquiler-Retroexcavadoras-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"Alquiler-Retroexcavadoras-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:37:\"Alquiler-Retroexcavadoras-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:37:\"Alquiler-Retroexcavadoras-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"Alquiler-Retroexcavadoras-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:{}}}'),(178,31,'_wp_old_slug','camiones-articulados-2'),(179,34,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(180,34,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(181,34,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(182,34,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(183,34,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(184,34,'slide_template',''),(185,34,'rs_page_bg_color',''),(186,34,'_wpb_vc_js_status','true'),(187,34,'_nt_header_background_color','#222222'),(188,34,'_nt_header_alignment','left'),(189,34,'_nt_header_text_color','#ffffff'),(190,34,'_nt_header_breadcrumb_color','light'),(191,34,'_nt_header_padding_top','200'),(192,34,'_nt_header_padding_bottom','10'),(193,34,'_nt_enable_page_header','on'),(194,34,'_nt_header_background_image_id','20'),(195,34,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(196,34,'_nt_header_title','Compactadora lisa o de piña'),(197,34,'_thumbnail_id','312'),(199,34,'_wp_old_slug','camiones-articulados-2'),(200,34,'_dp_original','31'),(201,34,'_edit_lock','1605636765:2'),(202,34,'_edit_last','2'),(203,35,'_wp_attached_file','2020/10/Compactadoras.jpg'),(204,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:25:\"2020/10/Compactadoras.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Compactadoras-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Compactadoras-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Compactadoras-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:25:\"Compactadoras-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"Compactadoras-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"Compactadoras-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"Compactadoras-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"Compactadoras-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"Compactadoras-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"Compactadoras-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"Compactadoras-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Compactadoras-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:25:\"Compactadoras-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Compactadoras-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:25:\"Compactadoras-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:25:\"Compactadoras-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Compactadoras-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:{}}}'),(205,36,'_wp_attached_file','2020/09/Alquiler-Retroexcavadoras1.jpg'),(206,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:38:\"2020/09/Alquiler-Retroexcavadoras1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Alquiler-Retroexcavadoras1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras1-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:38:\"Alquiler-Retroexcavadoras1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:39:\"Alquiler-Retroexcavadoras1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras1-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:38:\"Alquiler-Retroexcavadoras1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras1-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:38:\"Alquiler-Retroexcavadoras1-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:38:\"Alquiler-Retroexcavadoras1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"Alquiler-Retroexcavadoras1-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:{}}}'),(207,37,'_wp_attached_file','2020/09/Retro-escavadoras.jpg'),(208,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:29:\"2020/09/Retro-escavadoras.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Retro-escavadoras-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Retro-escavadoras-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Retro-escavadoras-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:29:\"Retro-escavadoras-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:29:\"Retro-escavadoras-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:29:\"Retro-escavadoras-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:29:\"Retro-escavadoras-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:29:\"Retro-escavadoras-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:29:\"Retro-escavadoras-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:29:\"Retro-escavadoras-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:30:\"Retro-escavadoras-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Retro-escavadoras-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:29:\"Retro-escavadoras-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Retro-escavadoras-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:29:\"Retro-escavadoras-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:29:\"Retro-escavadoras-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Retro-escavadoras-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:{}}}'),(209,38,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(210,38,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(211,38,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(212,38,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(213,38,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(214,38,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(215,38,'slide_template',''),(216,38,'rs_page_bg_color',''),(217,38,'_wpb_vc_js_status','true'),(218,38,'_nt_header_background_color','#222222'),(219,38,'_nt_header_alignment','left'),(220,38,'_nt_header_text_color','#ffffff'),(221,38,'_nt_header_breadcrumb_color','light'),(222,38,'_nt_header_padding_top','200'),(223,38,'_nt_header_padding_bottom','10'),(224,38,'_nt_enable_page_header','on'),(225,38,'_nt_header_background_image_id','20'),(226,38,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(227,38,'_nt_header_title','Motoniveladoras o cuchillas'),(228,38,'_thumbnail_id','263'),(229,38,'_wp_old_slug','camiones-articulados-2'),(231,38,'_dp_original','34'),(232,38,'_edit_lock','1605636801:2'),(233,38,'_edit_last','2'),(234,39,'_wp_attached_file','2020/10/Motoniveladoras.jpg'),(235,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:27:\"2020/10/Motoniveladoras.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Motoniveladoras-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Motoniveladoras-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Motoniveladoras-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:27:\"Motoniveladoras-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:27:\"Motoniveladoras-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:27:\"Motoniveladoras-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:27:\"Motoniveladoras-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:27:\"Motoniveladoras-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:27:\"Motoniveladoras-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:27:\"Motoniveladoras-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:28:\"Motoniveladoras-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Motoniveladoras-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:27:\"Motoniveladoras-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Motoniveladoras-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:27:\"Motoniveladoras-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:27:\"Motoniveladoras-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Motoniveladoras-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:{}}}'),(236,40,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(237,40,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(238,40,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(239,40,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(240,40,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(241,40,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(242,40,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(243,40,'slide_template',''),(244,40,'rs_page_bg_color',''),(245,40,'_wpb_vc_js_status','true'),(246,40,'_nt_header_background_color','#222222'),(247,40,'_nt_header_alignment','left'),(248,40,'_nt_header_text_color','#ffffff'),(249,40,'_nt_header_breadcrumb_color','light'),(250,40,'_nt_header_padding_top','200'),(251,40,'_nt_header_padding_bottom','10'),(252,40,'_nt_enable_page_header','on'),(253,40,'_nt_header_background_image_id','20'),(254,40,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(255,40,'_nt_header_title','Cargadores frontales (y mini cargadores)'),(256,40,'_thumbnail_id','314'),(257,40,'_wp_old_slug','camiones-articulados-2'),(259,40,'_dp_original','38'),(260,40,'_edit_lock','1605712552:2'),(261,40,'_edit_last','2'),(262,41,'_wp_attached_file','2020/10/Cargadores-frontales.jpg'),(263,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:32:\"2020/10/Cargadores-frontales.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Cargadores-frontales-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Cargadores-frontales-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Cargadores-frontales-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:32:\"Cargadores-frontales-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:32:\"Cargadores-frontales-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:32:\"Cargadores-frontales-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:32:\"Cargadores-frontales-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:32:\"Cargadores-frontales-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:32:\"Cargadores-frontales-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:32:\"Cargadores-frontales-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:33:\"Cargadores-frontales-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"Cargadores-frontales-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:32:\"Cargadores-frontales-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Cargadores-frontales-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:32:\"Cargadores-frontales-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:32:\"Cargadores-frontales-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Cargadores-frontales-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:{}}}'),(264,42,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(265,42,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(266,42,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(267,42,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(268,42,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(269,42,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(270,42,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(271,42,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(272,42,'slide_template',''),(273,42,'rs_page_bg_color',''),(274,42,'_wpb_vc_js_status','true'),(275,42,'_nt_header_background_color','#222222'),(276,42,'_nt_header_alignment','left'),(277,42,'_nt_header_text_color','#ffffff'),(278,42,'_nt_header_breadcrumb_color','light'),(279,42,'_nt_header_padding_top','200'),(280,42,'_nt_header_padding_bottom','10'),(281,42,'_nt_enable_page_header','on'),(282,42,'_nt_header_background_image_id','20'),(283,42,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(284,42,'_nt_header_title','Pala Martillo y Retro Martillo'),(285,42,'_thumbnail_id','313'),(286,42,'_wp_old_slug','camiones-articulados-2'),(288,42,'_dp_original','40'),(289,42,'_edit_lock','1605637138:2'),(290,42,'_edit_last','2'),(291,43,'_wp_attached_file','2020/10/Perforadoras-track-drill.jpg'),(292,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"2020/10/Perforadoras-track-drill.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Perforadoras-track-drill-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Perforadoras-track-drill-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Perforadoras-track-drill-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:36:\"Perforadoras-track-drill-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:36:\"Perforadoras-track-drill-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:36:\"Perforadoras-track-drill-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:36:\"Perforadoras-track-drill-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:36:\"Perforadoras-track-drill-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:36:\"Perforadoras-track-drill-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:36:\"Perforadoras-track-drill-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:37:\"Perforadoras-track-drill-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"Perforadoras-track-drill-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:36:\"Perforadoras-track-drill-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Perforadoras-track-drill-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:36:\"Perforadoras-track-drill-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:36:\"Perforadoras-track-drill-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"Perforadoras-track-drill-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:{}}}'),(293,43,'_wp_attachment_image_alt','Perforadoras o track drill'),(294,44,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(295,44,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(296,44,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(297,44,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(298,44,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(299,44,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(300,44,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(301,44,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(302,44,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(303,44,'slide_template',''),(304,44,'rs_page_bg_color',''),(305,44,'_wpb_vc_js_status','true'),(306,44,'_nt_header_background_color','#222222'),(307,44,'_nt_header_alignment','left'),(308,44,'_nt_header_text_color','#ffffff'),(309,44,'_nt_header_breadcrumb_color','light'),(310,44,'_nt_header_padding_top','200'),(311,44,'_nt_header_padding_bottom','10'),(312,44,'_nt_enable_page_header','on'),(313,44,'_nt_header_background_image_id','20'),(314,44,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(315,44,'_nt_header_title','Dumpers'),(316,44,'_thumbnail_id','265'),(317,44,'_wp_old_slug','camiones-articulados-2'),(319,44,'_dp_original','42'),(320,44,'_edit_lock','1605637139:2'),(321,44,'_edit_last','2'),(322,45,'_wp_attached_file','2020/10/compresores-de-aire.jpg'),(323,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:31:\"2020/10/compresores-de-aire.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"compresores-de-aire-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"compresores-de-aire-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"compresores-de-aire-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:31:\"compresores-de-aire-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:31:\"compresores-de-aire-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:31:\"compresores-de-aire-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:31:\"compresores-de-aire-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:31:\"compresores-de-aire-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:31:\"compresores-de-aire-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:31:\"compresores-de-aire-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:32:\"compresores-de-aire-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"compresores-de-aire-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:31:\"compresores-de-aire-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"compresores-de-aire-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:31:\"compresores-de-aire-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:31:\"compresores-de-aire-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"compresores-de-aire-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:{}}}'),(324,46,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(325,46,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(326,46,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(327,46,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(328,46,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(329,46,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(330,46,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(331,46,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(332,46,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(333,46,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(334,46,'slide_template',''),(335,46,'rs_page_bg_color',''),(336,46,'_wpb_vc_js_status','true'),(337,46,'_nt_header_background_color','#222222'),(338,46,'_nt_header_alignment','left'),(339,46,'_nt_header_text_color','#ffffff'),(340,46,'_nt_header_breadcrumb_color','light'),(341,46,'_nt_header_padding_top','200'),(342,46,'_nt_header_padding_bottom','10'),(343,46,'_nt_enable_page_header','on'),(344,46,'_nt_header_background_image_id','20'),(345,46,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(346,46,'_nt_header_title','Camiones grúas plataforma'),(348,46,'_wp_old_slug','camiones-articulados-2'),(350,46,'_dp_original','44'),(351,46,'_edit_lock','1605637142:2'),(352,46,'_edit_last','2'),(355,48,'_wp_attached_file','2020/10/Camiones-plataforma.jpg'),(356,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:31:\"2020/10/Camiones-plataforma.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Camiones-plataforma-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Camiones-plataforma-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Camiones-plataforma-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:31:\"Camiones-plataforma-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:31:\"Camiones-plataforma-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:31:\"Camiones-plataforma-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:31:\"Camiones-plataforma-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:31:\"Camiones-plataforma-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:31:\"Camiones-plataforma-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:31:\"Camiones-plataforma-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:32:\"Camiones-plataforma-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Camiones-plataforma-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:31:\"Camiones-plataforma-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Camiones-plataforma-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:31:\"Camiones-plataforma-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:31:\"Camiones-plataforma-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Camiones-plataforma-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:{}}}'),(357,46,'_thumbnail_id','309'),(358,50,'_wp_attached_file','2020/10/Compactadoras-1.jpg'),(359,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:27:\"2020/10/Compactadoras-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Compactadoras-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Compactadoras-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Compactadoras-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:27:\"Compactadoras-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:27:\"Compactadoras-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:27:\"Compactadoras-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:27:\"Compactadoras-1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:27:\"Compactadoras-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:27:\"Compactadoras-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:27:\"Compactadoras-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:28:\"Compactadoras-1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Compactadoras-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:27:\"Compactadoras-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Compactadoras-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:27:\"Compactadoras-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:27:\"Compactadoras-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Compactadoras-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:{}}}'),(360,51,'_wp_attached_file','2020/10/Motoniveladoras-1.jpg'),(361,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:29:\"2020/10/Motoniveladoras-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Motoniveladoras-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Motoniveladoras-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Motoniveladoras-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:29:\"Motoniveladoras-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:29:\"Motoniveladoras-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:29:\"Motoniveladoras-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:29:\"Motoniveladoras-1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:29:\"Motoniveladoras-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:29:\"Motoniveladoras-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:29:\"Motoniveladoras-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:30:\"Motoniveladoras-1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Motoniveladoras-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:29:\"Motoniveladoras-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Motoniveladoras-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:29:\"Motoniveladoras-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:29:\"Motoniveladoras-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Motoniveladoras-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:{}}}'),(362,52,'_wp_attached_file','2020/10/Tractores-bulldozer-1.jpg'),(363,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:33:\"2020/10/Tractores-bulldozer-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Tractores-bulldozer-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Tractores-bulldozer-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Tractores-bulldozer-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:33:\"Tractores-bulldozer-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:33:\"Tractores-bulldozer-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:33:\"Tractores-bulldozer-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:33:\"Tractores-bulldozer-1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:33:\"Tractores-bulldozer-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:33:\"Tractores-bulldozer-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:33:\"Tractores-bulldozer-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:34:\"Tractores-bulldozer-1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Tractores-bulldozer-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:33:\"Tractores-bulldozer-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Tractores-bulldozer-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:33:\"Tractores-bulldozer-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:33:\"Tractores-bulldozer-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Tractores-bulldozer-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:{}}}'),(364,53,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(365,53,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(366,53,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(367,53,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(368,53,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(369,53,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(370,53,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(371,53,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(372,53,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(373,53,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(374,53,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(375,53,'slide_template',''),(376,53,'rs_page_bg_color',''),(377,53,'_wpb_vc_js_status','true'),(378,53,'_nt_header_background_color','#222222'),(379,53,'_nt_header_alignment','left'),(380,53,'_nt_header_text_color','#ffffff'),(381,53,'_nt_header_breadcrumb_color','light'),(382,53,'_nt_header_padding_top','200'),(383,53,'_nt_header_padding_bottom','10'),(384,53,'_nt_enable_page_header','on'),(385,53,'_nt_header_background_image_id','20'),(386,53,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(387,53,'_nt_header_title','Camiones cisterna'),(388,53,'_wp_old_slug','camiones-articulados-2'),(390,53,'_thumbnail_id','54'),(391,53,'_dp_original','46'),(392,53,'_edit_lock','1605637367:2'),(393,53,'_edit_last','2'),(394,54,'_wp_attached_file','2020/10/Camiones-cisterna.jpg'),(395,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:29:\"2020/10/Camiones-cisterna.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Camiones-cisterna-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Camiones-cisterna-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Camiones-cisterna-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:29:\"Camiones-cisterna-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:29:\"Camiones-cisterna-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:29:\"Camiones-cisterna-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:29:\"Camiones-cisterna-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:29:\"Camiones-cisterna-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:29:\"Camiones-cisterna-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:29:\"Camiones-cisterna-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:30:\"Camiones-cisterna-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Camiones-cisterna-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:29:\"Camiones-cisterna-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Camiones-cisterna-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:29:\"Camiones-cisterna-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:29:\"Camiones-cisterna-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Camiones-cisterna-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:{}}}'),(396,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(397,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(398,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(399,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(400,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(401,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(402,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(403,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(404,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(405,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(406,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(407,55,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(408,55,'slide_template',''),(409,55,'rs_page_bg_color',''),(410,55,'_wpb_vc_js_status','true'),(411,55,'_nt_header_background_color','#222222'),(412,55,'_nt_header_alignment','left'),(413,55,'_nt_header_text_color','#ffffff'),(414,55,'_nt_header_breadcrumb_color','light'),(415,55,'_nt_header_padding_top','200'),(416,55,'_nt_header_padding_bottom','10'),(417,55,'_nt_enable_page_header','on'),(418,55,'_nt_header_background_image_id','20'),(419,55,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(420,55,'_nt_header_title','Telehanders'),(421,55,'_wp_old_slug','camiones-articulados-2'),(422,55,'_thumbnail_id','56'),(424,55,'_dp_original','53'),(425,55,'_edit_lock','1605637367:2'),(426,55,'_edit_last','2'),(427,56,'_wp_attached_file','2020/10/Telehanders.jpg'),(428,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:23:\"2020/10/Telehanders.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Telehanders-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Telehanders-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Telehanders-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:23:\"Telehanders-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:23:\"Telehanders-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:23:\"Telehanders-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:23:\"Telehanders-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:23:\"Telehanders-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:23:\"Telehanders-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:23:\"Telehanders-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:24:\"Telehanders-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Telehanders-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:23:\"Telehanders-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Telehanders-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:23:\"Telehanders-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:23:\"Telehanders-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Telehanders-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:{}}}'),(429,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(430,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(431,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(432,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(433,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(434,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(435,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(436,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(437,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(438,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(439,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(440,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(441,57,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(442,57,'slide_template',''),(443,57,'rs_page_bg_color',''),(444,57,'_wpb_vc_js_status','true'),(445,57,'_nt_header_background_color','#222222'),(446,57,'_nt_header_alignment','left'),(447,57,'_nt_header_text_color','#ffffff'),(448,57,'_nt_header_breadcrumb_color','light'),(449,57,'_nt_header_padding_top','200'),(450,57,'_nt_header_padding_bottom','10'),(451,57,'_nt_enable_page_header','on'),(452,57,'_nt_header_background_image_id','20'),(453,57,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(454,57,'_nt_header_title','Hormigonera auto cargante'),(455,57,'_wp_old_slug','camiones-articulados-2'),(456,57,'_thumbnail_id','267'),(458,57,'_dp_original','55'),(459,57,'_edit_lock','1605637366:2'),(460,57,'_edit_last','2'),(461,58,'_wp_attached_file','2020/10/Hormigonera.jpg'),(462,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:23:\"2020/10/Hormigonera.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Hormigonera-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Hormigonera-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Hormigonera-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:23:\"Hormigonera-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:23:\"Hormigonera-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:23:\"Hormigonera-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:23:\"Hormigonera-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:23:\"Hormigonera-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:23:\"Hormigonera-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:23:\"Hormigonera-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:24:\"Hormigonera-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Hormigonera-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:23:\"Hormigonera-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Hormigonera-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:23:\"Hormigonera-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:23:\"Hormigonera-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Hormigonera-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:{}}}'),(463,60,'_wp_attached_file','2020/09/alquiler-camiones-articulados-1-1.jpg'),(464,60,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:45:\"2020/09/alquiler-camiones-articulados-1-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"alquiler-camiones-articulados-1-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"alquiler-camiones-articulados-1-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"alquiler-camiones-articulados-1-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:45:\"alquiler-camiones-articulados-1-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:45:\"alquiler-camiones-articulados-1-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:45:\"alquiler-camiones-articulados-1-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:45:\"alquiler-camiones-articulados-1-1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:45:\"alquiler-camiones-articulados-1-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:45:\"alquiler-camiones-articulados-1-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:45:\"alquiler-camiones-articulados-1-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:46:\"alquiler-camiones-articulados-1-1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"alquiler-camiones-articulados-1-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:45:\"alquiler-camiones-articulados-1-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"alquiler-camiones-articulados-1-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:45:\"alquiler-camiones-articulados-1-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:45:\"alquiler-camiones-articulados-1-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"alquiler-camiones-articulados-1-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:{}}}'),(465,57,'_wp_old_date','2020-10-02'),(466,55,'_wp_old_date','2020-10-02'),(467,53,'_wp_old_date','2020-10-02'),(468,46,'_wp_old_date','2020-10-02'),(469,44,'_wp_old_date','2020-10-02'),(470,42,'_wp_old_date','2020-10-02'),(471,40,'_wp_old_date','2020-10-02'),(472,38,'_wp_old_date','2020-10-02'),(473,31,'_wp_old_date','2020-09-29'),(474,28,'_wp_old_date','2020-09-29'),(475,26,'_wp_old_date','2020-09-29'),(476,22,'_wp_old_date','2020-09-29'),(477,15,'_wp_old_date','2020-09-29'),(478,63,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(479,63,'slide_template',''),(480,63,'rs_page_bg_color',''),(481,63,'_wpb_vc_js_status','true'),(482,63,'_nt_header_background_color','#222222'),(483,63,'_nt_header_alignment','left'),(484,63,'_nt_header_text_color','#ffffff'),(485,63,'_nt_header_breadcrumb_color','light'),(486,63,'_nt_header_padding_top','200'),(487,63,'_nt_header_padding_bottom','10'),(489,63,'_nt_header_title','Construcción de obras civiles'),(490,63,'_nt_enable_page_header','on'),(491,63,'_nt_header_background_image_id','20'),(492,63,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(493,63,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(494,63,'_wp_old_date','2020-09-29'),(495,63,'_dp_original','15'),(496,63,'_edit_lock','1605636370:2'),(497,63,'_edit_last','2'),(504,67,'_wp_attached_file','2020/10/construcciones-civiles.jpg'),(505,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:34:\"2020/10/construcciones-civiles.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"construcciones-civiles-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"construcciones-civiles-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"construcciones-civiles-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:34:\"construcciones-civiles-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"construcciones-civiles-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"construcciones-civiles-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"construcciones-civiles-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"construcciones-civiles-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"construcciones-civiles-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"construcciones-civiles-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"construcciones-civiles-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"construcciones-civiles-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:34:\"construcciones-civiles-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"construcciones-civiles-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:\"construcciones-civiles-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:34:\"construcciones-civiles-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"construcciones-civiles-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:{}}}'),(506,63,'_thumbnail_id','67'),(507,68,'_wp_page_template','default'),(508,68,'slide_template','default'),(509,68,'rs_page_bg_color','#ffffff'),(510,68,'_wpb_vc_js_status','true'),(511,68,'_nt_header_background_color','#222222'),(512,68,'_nt_header_alignment','left'),(513,68,'_nt_header_text_color','#ffffff'),(514,68,'_nt_header_breadcrumb_color','light'),(515,68,'_nt_header_padding_top','200'),(516,68,'_nt_header_padding_bottom','0'),(517,68,'_dp_original','13'),(518,68,'_edit_lock','1602193919:2'),(519,68,'_edit_last','2'),(520,70,'_menu_item_type','post_type'),(521,70,'_menu_item_menu_item_parent','0'),(522,70,'_menu_item_object_id','68'),(523,70,'_menu_item_object','page'),(524,70,'_menu_item_target',''),(525,70,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(526,70,'_menu_item_xfn',''),(527,70,'_menu_item_url',''),(529,71,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(530,71,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(531,71,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(532,71,'slide_template',''),(533,71,'rs_page_bg_color',''),(534,71,'_wpb_vc_js_status','true'),(535,71,'_nt_header_background_color','#222222'),(536,71,'_nt_header_alignment','left'),(537,71,'_nt_header_text_color','#ffffff'),(538,71,'_nt_header_breadcrumb_color','light'),(539,71,'_nt_header_padding_top','200'),(540,71,'_nt_header_padding_bottom','10'),(541,71,'_nt_header_title','Construcción y mantenimiento de hidroeléctricas'),(542,71,'_nt_enable_page_header','on'),(543,71,'_nt_header_background_image_id','20'),(544,71,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(545,71,'_wp_old_date','2020-09-29'),(547,71,'_thumbnail_id','72'),(548,71,'_dp_original','63'),(549,71,'_edit_lock','1605636370:2'),(550,72,'_wp_attached_file','2020/10/Construccon-hidroelectricas.jpg'),(551,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:39:\"2020/10/Construccon-hidroelectricas.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Construccon-hidroelectricas-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Construccon-hidroelectricas-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Construccon-hidroelectricas-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:39:\"Construccon-hidroelectricas-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:39:\"Construccon-hidroelectricas-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:39:\"Construccon-hidroelectricas-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:39:\"Construccon-hidroelectricas-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:39:\"Construccon-hidroelectricas-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:39:\"Construccon-hidroelectricas-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:39:\"Construccon-hidroelectricas-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:40:\"Construccon-hidroelectricas-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"Construccon-hidroelectricas-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:39:\"Construccon-hidroelectricas-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"Construccon-hidroelectricas-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:39:\"Construccon-hidroelectricas-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:39:\"Construccon-hidroelectricas-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"Construccon-hidroelectricas-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:{}}}'),(552,71,'_edit_last','2'),(553,73,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(554,73,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(555,73,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(556,73,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(557,73,'slide_template',''),(558,73,'rs_page_bg_color',''),(559,73,'_wpb_vc_js_status','true'),(560,73,'_nt_header_background_color','#222222'),(561,73,'_nt_header_alignment','left'),(562,73,'_nt_header_text_color','#ffffff'),(563,73,'_nt_header_breadcrumb_color','light'),(564,73,'_nt_header_padding_top','200'),(565,73,'_nt_header_padding_bottom','10'),(566,73,'_nt_header_title','Construcción de infraestructura vial'),(567,73,'_nt_enable_page_header','on'),(568,73,'_nt_header_background_image_id','20'),(569,73,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(570,73,'_wp_old_date','2020-09-29'),(571,73,'_thumbnail_id','296'),(573,73,'_dp_original','71'),(574,73,'_edit_lock','1605636366:2'),(575,73,'_edit_last','2'),(576,74,'_wp_attached_file','2020/10/infraestructura-vial.jpg'),(577,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:32:\"2020/10/infraestructura-vial.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"infraestructura-vial-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"infraestructura-vial-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"infraestructura-vial-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:32:\"infraestructura-vial-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:32:\"infraestructura-vial-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:32:\"infraestructura-vial-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:32:\"infraestructura-vial-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:32:\"infraestructura-vial-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:32:\"infraestructura-vial-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:32:\"infraestructura-vial-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:33:\"infraestructura-vial-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"infraestructura-vial-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:32:\"infraestructura-vial-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"infraestructura-vial-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:32:\"infraestructura-vial-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:32:\"infraestructura-vial-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"infraestructura-vial-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:{}}}'),(578,75,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(579,75,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(580,75,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(581,75,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(582,75,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(583,75,'slide_template',''),(584,75,'rs_page_bg_color',''),(585,75,'_wpb_vc_js_status','true'),(586,75,'_nt_header_background_color','#222222'),(587,75,'_nt_header_alignment','left'),(588,75,'_nt_header_text_color','#ffffff'),(589,75,'_nt_header_breadcrumb_color','light'),(590,75,'_nt_header_padding_top','200'),(591,75,'_nt_header_padding_bottom','10'),(592,75,'_nt_header_title','Construcción de puentes y carreteras'),(593,75,'_nt_enable_page_header','on'),(594,75,'_nt_header_background_image_id','20'),(595,75,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(596,75,'_wp_old_date','2020-09-29'),(597,75,'_thumbnail_id','76'),(599,75,'_dp_original','73'),(600,75,'_edit_lock','1605636374:2'),(601,75,'_edit_last','2'),(602,76,'_wp_attached_file','2020/10/Construccion-puentes.jpg'),(603,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:32:\"2020/10/Construccion-puentes.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Construccion-puentes-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Construccion-puentes-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Construccion-puentes-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:32:\"Construccion-puentes-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:32:\"Construccion-puentes-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:32:\"Construccion-puentes-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:32:\"Construccion-puentes-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:32:\"Construccion-puentes-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:32:\"Construccion-puentes-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:32:\"Construccion-puentes-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:33:\"Construccion-puentes-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"Construccion-puentes-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:32:\"Construccion-puentes-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Construccion-puentes-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:32:\"Construccion-puentes-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:32:\"Construccion-puentes-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Construccion-puentes-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:{}}}'),(604,75,'_wp_old_date','2020-10-02'),(605,77,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(606,77,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(607,77,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(608,77,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(609,77,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(610,77,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(611,77,'slide_template',''),(612,77,'rs_page_bg_color',''),(613,77,'_wpb_vc_js_status','true'),(614,77,'_nt_header_background_color','#222222'),(615,77,'_nt_header_alignment','left'),(616,77,'_nt_header_text_color','#ffffff'),(617,77,'_nt_header_breadcrumb_color','light'),(618,77,'_nt_header_padding_top','200'),(619,77,'_nt_header_padding_bottom','10'),(620,77,'_nt_header_title','Construcción de galeras y edificios'),(621,77,'_nt_enable_page_header','on'),(622,77,'_nt_header_background_image_id','20'),(623,77,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(624,77,'_wp_old_date','2020-09-29'),(625,77,'_wp_old_date','2020-10-02'),(626,77,'_thumbnail_id','78'),(628,77,'_dp_original','75'),(629,77,'_edit_lock','1605636575:2'),(630,77,'_edit_last','2'),(631,78,'_wp_attached_file','2020/10/Construccion-galeras-edificios.jpg'),(632,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:42:\"2020/10/Construccion-galeras-edificios.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Construccion-galeras-edificios-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Construccion-galeras-edificios-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Construccion-galeras-edificios-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:42:\"Construccion-galeras-edificios-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:42:\"Construccion-galeras-edificios-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:42:\"Construccion-galeras-edificios-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:42:\"Construccion-galeras-edificios-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:42:\"Construccion-galeras-edificios-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:42:\"Construccion-galeras-edificios-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:42:\"Construccion-galeras-edificios-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:43:\"Construccion-galeras-edificios-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"Construccion-galeras-edificios-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:42:\"Construccion-galeras-edificios-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"Construccion-galeras-edificios-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:42:\"Construccion-galeras-edificios-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:42:\"Construccion-galeras-edificios-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:42:\"Construccion-galeras-edificios-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:{}}}'),(633,79,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(634,79,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(635,79,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(636,79,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(637,79,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(638,79,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(639,79,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(640,79,'slide_template',''),(641,79,'rs_page_bg_color',''),(642,79,'_wpb_vc_js_status','true'),(643,79,'_nt_header_background_color','#222222'),(644,79,'_nt_header_alignment','left'),(645,79,'_nt_header_text_color','#ffffff'),(646,79,'_nt_header_breadcrumb_color','light'),(647,79,'_nt_header_padding_top','200'),(648,79,'_nt_header_padding_bottom','10'),(649,79,'_nt_header_title','Proyectos residenciales y de interés social'),(650,79,'_nt_enable_page_header','on'),(651,79,'_nt_header_background_image_id','20'),(652,79,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(653,79,'_wp_old_date','2020-09-29'),(654,79,'_wp_old_date','2020-10-02'),(655,79,'_thumbnail_id','270'),(657,79,'_dp_original','77'),(658,79,'_edit_lock','1605636574:2'),(659,79,'_edit_last','2'),(660,80,'_wp_attached_file','2020/10/Residenciales-interes-social.jpg'),(661,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:40:\"2020/10/Residenciales-interes-social.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Residenciales-interes-social-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Residenciales-interes-social-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Residenciales-interes-social-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:40:\"Residenciales-interes-social-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:40:\"Residenciales-interes-social-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:40:\"Residenciales-interes-social-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:40:\"Residenciales-interes-social-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:40:\"Residenciales-interes-social-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:40:\"Residenciales-interes-social-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:40:\"Residenciales-interes-social-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:41:\"Residenciales-interes-social-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"Residenciales-interes-social-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:40:\"Residenciales-interes-social-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"Residenciales-interes-social-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:40:\"Residenciales-interes-social-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:40:\"Residenciales-interes-social-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"Residenciales-interes-social-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:{}}}'),(662,82,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(663,82,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(664,82,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(665,82,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(666,82,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(667,82,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(668,82,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(669,82,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(670,82,'slide_template',''),(671,82,'rs_page_bg_color',''),(672,82,'_wpb_vc_js_status','true'),(673,82,'_nt_header_background_color','#222222'),(674,82,'_nt_header_alignment','left'),(675,82,'_nt_header_text_color','#ffffff'),(676,82,'_nt_header_breadcrumb_color','light'),(677,82,'_nt_header_padding_top','200'),(678,82,'_nt_header_padding_bottom','10'),(679,82,'_nt_header_title','Instalación de tuberías para sistemas de acueducto y alcantarillado'),(680,82,'_nt_enable_page_header','on'),(681,82,'_nt_header_background_image_id','20'),(682,82,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(683,82,'_wp_old_date','2020-09-29'),(684,82,'_wp_old_date','2020-10-02'),(685,82,'_thumbnail_id','83'),(687,82,'_dp_original','79'),(688,82,'_edit_lock','1605636573:2'),(689,82,'_edit_last','2'),(690,83,'_wp_attached_file','2020/10/Instalacion-de-tuberias.jpg'),(691,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:35:\"2020/10/Instalacion-de-tuberias.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Instalacion-de-tuberias-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Instalacion-de-tuberias-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Instalacion-de-tuberias-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:35:\"Instalacion-de-tuberias-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:35:\"Instalacion-de-tuberias-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:35:\"Instalacion-de-tuberias-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:35:\"Instalacion-de-tuberias-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:35:\"Instalacion-de-tuberias-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:35:\"Instalacion-de-tuberias-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:35:\"Instalacion-de-tuberias-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:36:\"Instalacion-de-tuberias-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Instalacion-de-tuberias-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:35:\"Instalacion-de-tuberias-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Instalacion-de-tuberias-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:35:\"Instalacion-de-tuberias-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:35:\"Instalacion-de-tuberias-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Instalacion-de-tuberias-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:{}}}'),(692,85,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(693,85,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(694,85,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(695,85,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(696,85,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(697,85,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(698,85,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(699,85,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(700,85,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(701,85,'slide_template',''),(702,85,'rs_page_bg_color',''),(703,85,'_wpb_vc_js_status','true'),(704,85,'_nt_header_background_color','#222222'),(705,85,'_nt_header_alignment','left'),(706,85,'_nt_header_text_color','#ffffff'),(707,85,'_nt_header_breadcrumb_color','light'),(708,85,'_nt_header_padding_top','200'),(709,85,'_nt_header_padding_bottom','10'),(710,85,'_nt_header_title','Mejoramiento de caminos'),(711,85,'_nt_enable_page_header','on'),(712,85,'_nt_header_background_image_id','20'),(713,85,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(714,85,'_wp_old_date','2020-09-29'),(715,85,'_wp_old_date','2020-10-02'),(716,85,'_thumbnail_id','86'),(718,85,'_dp_original','82'),(719,85,'_edit_lock','1605636572:2'),(720,85,'_edit_last','2'),(721,86,'_wp_attached_file','2020/10/Mejoramiento-de-caminos.jpg'),(722,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:35:\"2020/10/Mejoramiento-de-caminos.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Mejoramiento-de-caminos-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Mejoramiento-de-caminos-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Mejoramiento-de-caminos-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:35:\"Mejoramiento-de-caminos-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:35:\"Mejoramiento-de-caminos-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:35:\"Mejoramiento-de-caminos-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:35:\"Mejoramiento-de-caminos-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:35:\"Mejoramiento-de-caminos-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:35:\"Mejoramiento-de-caminos-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:35:\"Mejoramiento-de-caminos-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:36:\"Mejoramiento-de-caminos-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Mejoramiento-de-caminos-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:35:\"Mejoramiento-de-caminos-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Mejoramiento-de-caminos-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:35:\"Mejoramiento-de-caminos-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:35:\"Mejoramiento-de-caminos-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Mejoramiento-de-caminos-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:{}}}'),(723,87,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(724,87,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(725,87,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(726,87,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(727,87,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(728,87,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(729,87,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(730,87,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(731,87,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(732,87,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601673517854{margin-top: -20px !important;}'),(733,87,'slide_template',''),(734,87,'rs_page_bg_color',''),(735,87,'_wpb_vc_js_status','true'),(736,87,'_nt_header_background_color','#222222'),(737,87,'_nt_header_alignment','left'),(738,87,'_nt_header_text_color','#ffffff'),(739,87,'_nt_header_breadcrumb_color','light'),(740,87,'_nt_header_padding_top','200'),(741,87,'_nt_header_padding_bottom','10'),(742,87,'_nt_header_title','Movimientos de tierra'),(743,87,'_nt_enable_page_header','on'),(744,87,'_nt_header_background_image_id','20'),(745,87,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(746,87,'_wp_old_date','2020-09-29'),(747,87,'_wp_old_date','2020-10-02'),(748,87,'_thumbnail_id','88'),(750,87,'_dp_original','85'),(751,87,'_edit_lock','1605636571:2'),(752,87,'_edit_last','2'),(753,88,'_wp_attached_file','2020/10/Movimientos-de-tierra.jpg'),(754,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:33:\"2020/10/Movimientos-de-tierra.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Movimientos-de-tierra-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Movimientos-de-tierra-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Movimientos-de-tierra-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:33:\"Movimientos-de-tierra-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:33:\"Movimientos-de-tierra-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:33:\"Movimientos-de-tierra-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:33:\"Movimientos-de-tierra-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:33:\"Movimientos-de-tierra-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:33:\"Movimientos-de-tierra-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:33:\"Movimientos-de-tierra-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:34:\"Movimientos-de-tierra-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Movimientos-de-tierra-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:33:\"Movimientos-de-tierra-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Movimientos-de-tierra-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:33:\"Movimientos-de-tierra-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:33:\"Movimientos-de-tierra-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Movimientos-de-tierra-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:{}}}'),(755,89,'_edit_lock','1605635347:2'),(756,89,'_edit_last','2'),(757,89,'slide_template','default'),(758,89,'rs_page_bg_color','#ffffff'),(759,89,'_wpb_vc_js_status','true'),(760,89,'_nt_header_background_color','#222222'),(761,89,'_nt_header_alignment','left'),(762,89,'_nt_header_text_color','#ffffff'),(763,89,'_nt_header_breadcrumb_color','light'),(764,89,'_nt_header_padding_top','200'),(765,89,'_nt_header_padding_bottom','0'),(766,89,'_wp_page_template','default'),(767,94,'_wpb_shortcodes_custom_css','.vc_custom_1602102061473{margin-top: -20px !important;}'),(768,89,'_wpb_shortcodes_custom_css','.vc_custom_1602105863382{margin-top: 40px !important;}.vc_custom_1602702322343{margin-top: -35px !important;}'),(769,95,'_wpb_shortcodes_custom_css','.vc_custom_1602102092944{margin-top: -20px !important;}'),(770,96,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(771,97,'_wp_attached_file','2020/10/GrupoSuadi-Panama.jpg'),(772,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2020/10/GrupoSuadi-Panama.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-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:29:\"GrupoSuadi-Panama-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-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:29:\"GrupoSuadi-Panama-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-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:29:\"GrupoSuadi-Panama-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:29:\"GrupoSuadi-Panama-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"GrupoSuadi-Panama-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:{}}}'),(773,98,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(774,99,'_wp_attached_file','2020/10/GrupoSuadi-Panama-1.jpg'),(775,99,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:816;s:4:\"file\";s:31:\"2020/10/GrupoSuadi-Panama-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-1-294x300.jpg\";s:5:\"width\";i:294;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-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:31:\"GrupoSuadi-Panama-1-768x783.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-1-800x550.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-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:31:\"GrupoSuadi-Panama-1-600x612.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-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:31:\"GrupoSuadi-Panama-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:31:\"GrupoSuadi-Panama-1-600x612.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"GrupoSuadi-Panama-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:{}}}'),(776,100,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(777,101,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(778,102,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(779,103,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(780,104,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(781,105,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(782,106,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(783,107,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(784,108,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(785,109,'_wpb_shortcodes_custom_css','.vc_custom_1602102130263{margin-top: -40px !important;}'),(786,110,'_wpb_shortcodes_custom_css','.vc_custom_1602105863382{margin-top: 40px !important;}.vc_custom_1602102130263{margin-top: -40px !important;}'),(787,111,'_menu_item_type','post_type'),(788,111,'_menu_item_menu_item_parent','0'),(789,111,'_menu_item_object_id','89'),(790,111,'_menu_item_object','page'),(791,111,'_menu_item_target',''),(792,111,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(793,111,'_menu_item_xfn',''),(794,111,'_menu_item_url',''),(796,112,'_edit_lock','1605634819:2'),(797,112,'_edit_last','2'),(798,112,'slide_template','default'),(799,112,'rs_page_bg_color','#ffffff'),(800,112,'_wpb_vc_js_status','true'),(801,112,'_nt_header_background_color','#222222'),(802,112,'_nt_header_alignment','left'),(803,112,'_nt_header_text_color','#ffffff'),(804,112,'_nt_header_breadcrumb_color','light'),(805,112,'_nt_header_padding_top','80'),(806,112,'_nt_header_padding_bottom','80'),(807,112,'_wp_page_template','default'),(808,117,'_wpb_shortcodes_custom_css','.vc_custom_1602106481189{margin-top: -40px !important;}'),(809,112,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602800290952{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(810,118,'_wpb_shortcodes_custom_css','.vc_custom_1602106481189{margin-top: -40px !important;}'),(811,119,'_wp_attached_file','2020/10/Slide01-Suadi.jpg'),(812,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1086;s:4:\"file\";s:25:\"2020/10/Slide01-Suadi.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Slide01-Suadi-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Slide01-Suadi-1024x579.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Slide01-Suadi-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:25:\"Slide01-Suadi-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"Slide01-Suadi-1536x869.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:869;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"Slide01-Suadi-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"Slide01-Suadi-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"Slide01-Suadi-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"Slide01-Suadi-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"Slide01-Suadi-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"Slide01-Suadi-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"Slide01-Suadi-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Slide01-Suadi-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:25:\"Slide01-Suadi-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Slide01-Suadi-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:25:\"Slide01-Suadi-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:25:\"Slide01-Suadi-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Slide01-Suadi-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:{}}}'),(813,120,'_wpb_shortcodes_custom_css','.vc_custom_1602106481189{margin-top: -40px !important;}'),(814,112,'_nt_remove_default_pageheader','on'),(815,121,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(816,122,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(817,123,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(818,124,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(819,125,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(820,126,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(821,127,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(822,128,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(823,129,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(824,130,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(825,132,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(826,133,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(827,134,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(828,135,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(829,136,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(830,137,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(831,138,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(832,139,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(833,140,'_wp_attached_file','2020/10/Maquinarias-GrupoSuadi-1.jpg'),(834,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:456;s:4:\"file\";s:36:\"2020/10/Maquinarias-GrupoSuadi-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Maquinarias-GrupoSuadi-1-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Maquinarias-GrupoSuadi-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:36:\"Maquinarias-GrupoSuadi-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:36:\"Maquinarias-GrupoSuadi-1-500x456.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:36:\"Maquinarias-GrupoSuadi-1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:36:\"Maquinarias-GrupoSuadi-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:36:\"Maquinarias-GrupoSuadi-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:36:\"Maquinarias-GrupoSuadi-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"Maquinarias-GrupoSuadi-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:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Maquinarias-GrupoSuadi-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:36:\"Maquinarias-GrupoSuadi-1-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:36:\"Maquinarias-GrupoSuadi-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:{}}}'),(835,141,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602169877281{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(836,142,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602169903512{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(837,143,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602169927673{margin-top: -100px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(838,144,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602169964833{margin-top: -100px !important;}.vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(839,145,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170002150{margin-top: -100px !important;}.vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(842,149,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170207289{margin-top: -100px !important;background-color: #ffffff !important;}.vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(843,150,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170207289{margin-top: -100px !important;background-color: #ffffff !important;}.vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(844,151,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170207289{margin-top: -100px !important;background-color: #ffffff !important;}.vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602170389855{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(845,152,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170579599{margin-top: -100px !important;}.vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602170389855{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(846,153,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602170389855{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(849,156,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602170777889{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602170771120{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(850,157,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602170809976{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602170815663{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(851,158,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602170809976{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1602170888600{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !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_1602106481189{margin-top: -40px !important;}'),(852,159,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602170924408{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !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_1602170888600{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !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_1602106481189{margin-top: -40px !important;}'),(853,160,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171098912{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171112151{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(854,161,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171112151{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(855,162,'_wp_attached_file','2020/10/Constructura-GrupoSuadi-1.jpg'),(856,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:456;s:4:\"file\";s:37:\"2020/10/Constructura-GrupoSuadi-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Constructura-GrupoSuadi-1-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Constructura-GrupoSuadi-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:37:\"Constructura-GrupoSuadi-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:37:\"Constructura-GrupoSuadi-1-500x456.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:37:\"Constructura-GrupoSuadi-1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:37:\"Constructura-GrupoSuadi-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:37:\"Constructura-GrupoSuadi-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:37:\"Constructura-GrupoSuadi-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"Constructura-GrupoSuadi-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:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"Constructura-GrupoSuadi-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:37:\"Constructura-GrupoSuadi-1-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:37:\"Constructura-GrupoSuadi-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:{}}}'),(857,163,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(858,164,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(859,165,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(860,166,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(861,167,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(862,168,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(863,169,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(864,170,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(865,171,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(866,172,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(867,173,'_edit_lock','1602771856:2'),(868,173,'_edit_last','2'),(869,173,'slide_template','default'),(870,173,'rs_page_bg_color','#ffffff'),(871,173,'_wpb_vc_js_status','true'),(872,173,'_nt_header_background_color','#222222'),(873,173,'_nt_header_alignment','left'),(874,173,'_nt_header_text_color','#ffffff'),(875,173,'_nt_header_breadcrumb_color','light'),(876,173,'_nt_header_padding_top','200'),(877,173,'_nt_header_padding_bottom','0'),(878,173,'_wp_page_template','default'),(879,176,'_form','<div class=\"row\">\n<div class=\"col-sm-12\">\n<label> Nombre completo (requerido)\n [text* su-nombre] </label>\n\n<label> Correo electrónico (requerido)\n [email* su-email] </label>\n</div> <div class=\"col-sm-6\">\n<label> Teléfono\n [text su-telefono] </label>\n</div> <div class=\"col-sm-6\">\n<label> Ubicación\n [text su-telefono] </label>\n</div> <div class=\"col-sm-12\">\n<label> Mensaje / Comentarios\n [textarea su-mensaje] </label>\n\n[submit \"Enviar\"]\n</div>\n</div>'),(880,176,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:28:\"Grupo Suadi \"[your-subject]\"\";s:6:\"sender\";s:36:\"Grupo Suadi <wordpress@zewsdemo.com>\";s:9:\"recipient\";s:19:\"hferreto@zews.co.cr\";s:4:\"body\";s:180:\"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 Grupo Suadi (http://zewsdemo.com/gruposuadi)\";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;}'),(881,176,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:28:\"Grupo Suadi \"[your-subject]\"\";s:6:\"sender\";s:36:\"Grupo Suadi <wordpress@zewsdemo.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:122:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Grupo Suadi (http://zewsdemo.com/gruposuadi)\";s:18:\"additional_headers\";s:29:\"Reply-To: hferreto@zews.co.cr\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(882,176,'_messages','a:22:{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: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.\";}'),(883,176,'_additional_settings',''),(884,176,'_locale','es_ES'),(886,180,'_wpb_shortcodes_custom_css','.vc_custom_1602179867890{margin-top: -40px !important;}'),(887,173,'_wpb_shortcodes_custom_css','.vc_custom_1602182219543{margin-top: 50px !important;}.vc_custom_1602181164970{margin-top: -10px !important;}.vc_custom_1602179914019{margin-top: -10px !important;}.vc_custom_1602181838970{margin-top: -10px !important;}'),(888,181,'_wpb_shortcodes_custom_css','.vc_custom_1602179887620{margin-top: -20px !important;}'),(889,182,'_wpb_shortcodes_custom_css','.vc_custom_1602179914019{margin-top: -10px !important;}'),(890,183,'_wpb_shortcodes_custom_css','.vc_custom_1602179914019{margin-top: -10px !important;}'),(891,184,'_wpb_shortcodes_custom_css','.vc_custom_1602179914019{margin-top: -10px !important;}'),(892,185,'_wpb_shortcodes_custom_css','.vc_custom_1602179914019{margin-top: -10px !important;}'),(893,186,'_wpb_shortcodes_custom_css','.vc_custom_1602181164970{margin-top: -10px !important;}.vc_custom_1602179914019{margin-top: -10px !important;}'),(894,187,'_wpb_shortcodes_custom_css','.vc_custom_1602181164970{margin-top: -10px !important;}.vc_custom_1602179914019{margin-top: -10px !important;}'),(895,188,'_wpb_shortcodes_custom_css','.vc_custom_1602181164970{margin-top: -10px !important;}.vc_custom_1602179914019{margin-top: -10px !important;}'),(896,189,'_wpb_shortcodes_custom_css','.vc_custom_1602181164970{margin-top: -10px !important;}.vc_custom_1602179914019{margin-top: -10px !important;}.vc_custom_1602181838970{margin-top: -10px !important;}'),(897,190,'_wpb_shortcodes_custom_css','.vc_custom_1602181164970{margin-top: -10px !important;}.vc_custom_1602179914019{margin-top: -10px !important;}.vc_custom_1602181838970{margin-top: -10px !important;}'),(898,191,'_wpb_shortcodes_custom_css','.vc_custom_1602181164970{margin-top: -10px !important;}.vc_custom_1602179914019{margin-top: -10px !important;}.vc_custom_1602181838970{margin-top: -10px !important;}'),(899,192,'_wpb_shortcodes_custom_css','.vc_custom_1602181164970{margin-top: -10px !important;}.vc_custom_1602179914019{margin-top: -10px !important;}.vc_custom_1602181838970{margin-top: -10px !important;}'),(900,193,'_wpb_shortcodes_custom_css','.vc_custom_1602181164970{margin-top: -10px !important;}.vc_custom_1602179914019{margin-top: -10px !important;}.vc_custom_1602181838970{margin-top: -10px !important;}'),(901,194,'_wpb_shortcodes_custom_css','.vc_custom_1602182219543{margin-top: 50px !important;}.vc_custom_1602181164970{margin-top: -10px !important;}.vc_custom_1602179914019{margin-top: -10px !important;}.vc_custom_1602181838970{margin-top: -10px !important;}'),(902,195,'_menu_item_type','post_type'),(903,195,'_menu_item_menu_item_parent','0'),(904,195,'_menu_item_object_id','173'),(905,195,'_menu_item_object','page'),(906,195,'_menu_item_target',''),(907,195,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(908,195,'_menu_item_xfn',''),(909,195,'_menu_item_url',''),(911,196,'_wp_attached_file','2020/10/Slide02-Suadi.jpg'),(912,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1086;s:4:\"file\";s:25:\"2020/10/Slide02-Suadi.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Slide02-Suadi-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Slide02-Suadi-1024x579.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Slide02-Suadi-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:25:\"Slide02-Suadi-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"Slide02-Suadi-1536x869.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:869;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"Slide02-Suadi-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"Slide02-Suadi-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"Slide02-Suadi-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"Slide02-Suadi-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"Slide02-Suadi-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"Slide02-Suadi-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"Slide02-Suadi-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Slide02-Suadi-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:25:\"Slide02-Suadi-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Slide02-Suadi-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:25:\"Slide02-Suadi-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:25:\"Slide02-Suadi-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Slide02-Suadi-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:{}}}'),(913,197,'_wpb_shortcodes_custom_css','.vc_custom_1602105863382{margin-top: 40px !important;}.vc_custom_1602102130263{margin-top: -40px !important;}'),(914,89,'_nt_header_background_image_id','231'),(915,89,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Header-maquinaria-2_1.jpg'),(917,89,'_nt_enable_page_header','on'),(918,89,'_nt_remove_default_pageheader','on'),(919,89,'_nt_header_title','Nosotros'),(920,13,'_nt_remove_default_pageheader','on'),(921,13,'_nt_enable_page_header','on'),(922,13,'_nt_header_background_image_id','20'),(923,13,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(924,13,'_nt_header_title','Maquinarias'),(925,198,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(926,199,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(927,200,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(928,201,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(929,112,'_yoast_wpseo_content_score','30'),(930,202,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(931,68,'_nt_remove_default_pageheader','on'),(932,68,'_nt_enable_page_header','on'),(933,68,'_nt_header_background_image_id','20'),(934,68,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(935,68,'_yoast_wpseo_content_score','30'),(936,68,'_nt_header_title','Construcción'),(937,203,'_wpb_shortcodes_custom_css','.vc_custom_1602105863382{margin-top: 40px !important;}.vc_custom_1602102130263{margin-top: -40px !important;}'),(938,89,'_yoast_wpseo_content_score','60'),(939,204,'_wpb_shortcodes_custom_css','.vc_custom_1602105863382{margin-top: 40px !important;}.vc_custom_1602102130263{margin-top: -40px !important;}'),(940,205,'_wpb_shortcodes_custom_css','.vc_custom_1602105863382{margin-top: 40px !important;}.vc_custom_1602702322343{margin-top: -35px !important;}'),(941,206,'_wpb_shortcodes_custom_css','.vc_custom_1602105863382{margin-top: 40px !important;}.vc_custom_1602702322343{margin-top: -35px !important;}'),(942,207,'_wpb_shortcodes_custom_css','.vc_custom_1602105863382{margin-top: 40px !important;}.vc_custom_1602702322343{margin-top: -35px !important;}'),(943,208,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(944,15,'_yoast_wpseo_content_score','60'),(945,22,'_yoast_wpseo_content_score','90'),(948,26,'_yoast_wpseo_content_score','90'),(949,28,'_yoast_wpseo_content_score','60'),(950,31,'_yoast_wpseo_content_score','90'),(951,34,'_yoast_wpseo_content_score','60'),(952,38,'_yoast_wpseo_content_score','60'),(953,40,'_yoast_wpseo_content_score','90'),(954,42,'_yoast_wpseo_content_score','60'),(955,44,'_yoast_wpseo_content_score','90'),(956,46,'_yoast_wpseo_content_score','60'),(957,53,'_yoast_wpseo_content_score','60'),(958,55,'_yoast_wpseo_content_score','60'),(959,57,'_yoast_wpseo_content_score','60'),(960,211,'_wpb_shortcodes_custom_css','.vc_custom_1602182219543{margin-top: 50px !important;}.vc_custom_1602181164970{margin-top: -10px !important;}.vc_custom_1602179914019{margin-top: -10px !important;}.vc_custom_1602181838970{margin-top: -10px !important;}'),(961,173,'_yoast_wpseo_content_score','60'),(962,87,'_yoast_wpseo_content_score','30'),(963,85,'_yoast_wpseo_content_score','30'),(964,82,'_yoast_wpseo_content_score','30'),(965,79,'_yoast_wpseo_content_score','90'),(966,77,'_yoast_wpseo_content_score','60'),(967,75,'_yoast_wpseo_content_score','60'),(968,73,'_yoast_wpseo_content_score','60'),(969,71,'_yoast_wpseo_content_score','60'),(970,63,'_yoast_wpseo_content_score','60'),(971,212,'_wp_attached_file','2020/10/suadi-dark.jpg'),(972,212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:205;s:6:\"height\";i:50;s:4:\"file\";s:22:\"2020/10/suadi-dark.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"suadi-dark-150x50.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"suadi-dark-100x50.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"suadi-dark-100x50.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:50;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:{}}}'),(973,213,'_wp_attached_file','2020/10/suadi-1.jpg'),(974,213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:205;s:6:\"height\";i:50;s:4:\"file\";s:19:\"2020/10/suadi-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"suadi-1-150x50.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"suadi-1-100x50.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"suadi-1-100x50.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:50;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:{}}}'),(978,173,'_nt_remove_default_pageheader','on'),(979,173,'_nt_enable_page_header','on'),(980,173,'_nt_header_parallax','on'),(981,173,'_nt_header_background_image_id','234'),(982,173,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Header-maquinaria-4.jpg'),(983,173,'_nt_header_title','Contacto'),(984,214,'_menu_item_type','post_type'),(985,214,'_menu_item_menu_item_parent','25'),(986,214,'_menu_item_object_id','15'),(987,214,'_menu_item_object','services'),(988,214,'_menu_item_target',''),(989,214,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(990,214,'_menu_item_xfn',''),(991,214,'_menu_item_url',''),(993,215,'_menu_item_type','post_type'),(994,215,'_menu_item_menu_item_parent','25'),(995,215,'_menu_item_object_id','28'),(996,215,'_menu_item_object','services'),(997,215,'_menu_item_target',''),(998,215,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(999,215,'_menu_item_xfn',''),(1000,215,'_menu_item_url',''),(1002,216,'_menu_item_type','post_type'),(1003,216,'_menu_item_menu_item_parent','25'),(1004,216,'_menu_item_object_id','53'),(1005,216,'_menu_item_object','services'),(1006,216,'_menu_item_target',''),(1007,216,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1008,216,'_menu_item_xfn',''),(1009,216,'_menu_item_url',''),(1011,217,'_menu_item_type','post_type'),(1012,217,'_menu_item_menu_item_parent','25'),(1013,217,'_menu_item_object_id','46'),(1014,217,'_menu_item_object','services'),(1015,217,'_menu_item_target',''),(1016,217,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1017,217,'_menu_item_xfn',''),(1018,217,'_menu_item_url',''),(1020,218,'_menu_item_type','post_type'),(1021,218,'_menu_item_menu_item_parent','25'),(1022,218,'_menu_item_object_id','40'),(1023,218,'_menu_item_object','services'),(1024,218,'_menu_item_target',''),(1025,218,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1026,218,'_menu_item_xfn',''),(1027,218,'_menu_item_url',''),(1029,219,'_menu_item_type','post_type'),(1030,219,'_menu_item_menu_item_parent','25'),(1031,219,'_menu_item_object_id','34'),(1032,219,'_menu_item_object','services'),(1033,219,'_menu_item_target',''),(1034,219,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1035,219,'_menu_item_xfn',''),(1036,219,'_menu_item_url',''),(1038,220,'_menu_item_type','post_type'),(1039,220,'_menu_item_menu_item_parent','25'),(1040,220,'_menu_item_object_id','44'),(1041,220,'_menu_item_object','services'),(1042,220,'_menu_item_target',''),(1043,220,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1044,220,'_menu_item_xfn',''),(1045,220,'_menu_item_url',''),(1047,221,'_menu_item_type','post_type'),(1048,221,'_menu_item_menu_item_parent','25'),(1049,221,'_menu_item_object_id','22'),(1050,221,'_menu_item_object','services'),(1051,221,'_menu_item_target',''),(1052,221,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1053,221,'_menu_item_xfn',''),(1054,221,'_menu_item_url',''),(1056,222,'_menu_item_type','post_type'),(1057,222,'_menu_item_menu_item_parent','25'),(1058,222,'_menu_item_object_id','57'),(1059,222,'_menu_item_object','services'),(1060,222,'_menu_item_target',''),(1061,222,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1062,222,'_menu_item_xfn',''),(1063,222,'_menu_item_url',''),(1065,223,'_menu_item_type','post_type'),(1066,223,'_menu_item_menu_item_parent','25'),(1067,223,'_menu_item_object_id','38'),(1068,223,'_menu_item_object','services'),(1069,223,'_menu_item_target',''),(1070,223,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1071,223,'_menu_item_xfn',''),(1072,223,'_menu_item_url',''),(1074,224,'_menu_item_type','post_type'),(1075,224,'_menu_item_menu_item_parent','25'),(1076,224,'_menu_item_object_id','42'),(1077,224,'_menu_item_object','services'),(1078,224,'_menu_item_target',''),(1079,224,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1080,224,'_menu_item_xfn',''),(1081,224,'_menu_item_url',''),(1083,225,'_menu_item_type','post_type'),(1084,225,'_menu_item_menu_item_parent','25'),(1085,225,'_menu_item_object_id','31'),(1086,225,'_menu_item_object','services'),(1087,225,'_menu_item_target',''),(1088,225,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1089,225,'_menu_item_xfn',''),(1090,225,'_menu_item_url',''),(1092,226,'_menu_item_type','post_type'),(1093,226,'_menu_item_menu_item_parent','25'),(1094,226,'_menu_item_object_id','55'),(1095,226,'_menu_item_object','services'),(1096,226,'_menu_item_target',''),(1097,226,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1098,226,'_menu_item_xfn',''),(1099,226,'_menu_item_url',''),(1101,227,'_menu_item_type','post_type'),(1102,227,'_menu_item_menu_item_parent','25'),(1103,227,'_menu_item_object_id','26'),(1104,227,'_menu_item_object','services'),(1105,227,'_menu_item_target',''),(1106,227,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1107,227,'_menu_item_xfn',''),(1108,227,'_menu_item_url',''),(1115,231,'_wp_attached_file','2020/10/Header-maquinaria-2_1.jpg'),(1116,231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:967;s:4:\"file\";s:33:\"2020/10/Header-maquinaria-2_1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Header-maquinaria-2_1-300x151.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Header-maquinaria-2_1-1024x516.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Header-maquinaria-2_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:33:\"Header-maquinaria-2_1-768x387.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"Header-maquinaria-2_1-1536x774.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:774;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:33:\"Header-maquinaria-2_1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:33:\"Header-maquinaria-2_1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:33:\"Header-maquinaria-2_1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:33:\"Header-maquinaria-2_1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:33:\"Header-maquinaria-2_1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:33:\"Header-maquinaria-2_1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:34:\"Header-maquinaria-2_1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Header-maquinaria-2_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:33:\"Header-maquinaria-2_1-600x302.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Header-maquinaria-2_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:33:\"Header-maquinaria-2_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:33:\"Header-maquinaria-2_1-600x302.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Header-maquinaria-2_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:{}}}'),(1119,233,'_wp_attached_file','2020/10/Header-maquinaria-3.jpg'),(1120,233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:967;s:4:\"file\";s:31:\"2020/10/Header-maquinaria-3.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-3-300x151.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Header-maquinaria-3-1024x516.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-3-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:31:\"Header-maquinaria-3-768x387.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"Header-maquinaria-3-1536x774.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:774;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-3-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-3-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-3-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-3-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-3-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:32:\"Header-maquinaria-3-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Header-maquinaria-3-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:31:\"Header-maquinaria-3-600x302.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-3-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:31:\"Header-maquinaria-3-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:31:\"Header-maquinaria-3-600x302.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-3-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:{}}}'),(1121,234,'_wp_attached_file','2020/10/Header-maquinaria-4.jpg'),(1122,234,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:967;s:4:\"file\";s:31:\"2020/10/Header-maquinaria-4.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-4-300x151.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Header-maquinaria-4-1024x516.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-4-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:31:\"Header-maquinaria-4-768x387.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"Header-maquinaria-4-1536x774.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:774;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-4-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-4-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-4-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-4-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-4-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-4-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:32:\"Header-maquinaria-4-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Header-maquinaria-4-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:31:\"Header-maquinaria-4-600x302.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-4-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:31:\"Header-maquinaria-4-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:31:\"Header-maquinaria-4-600x302.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Header-maquinaria-4-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:{}}}'),(1123,235,'_menu_item_type','post_type'),(1124,235,'_menu_item_menu_item_parent','0'),(1125,235,'_menu_item_object_id','112'),(1126,235,'_menu_item_object','page'),(1127,235,'_menu_item_target',''),(1128,235,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1129,235,'_menu_item_xfn',''),(1130,235,'_menu_item_url',''),(1132,236,'_menu_item_type','post_type'),(1133,236,'_menu_item_menu_item_parent','0'),(1134,236,'_menu_item_object_id','68'),(1135,236,'_menu_item_object','page'),(1136,236,'_menu_item_target',''),(1137,236,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1138,236,'_menu_item_xfn',''),(1139,236,'_menu_item_url',''),(1141,237,'_menu_item_type','post_type'),(1142,237,'_menu_item_menu_item_parent','0'),(1143,237,'_menu_item_object_id','173'),(1144,237,'_menu_item_object','page'),(1145,237,'_menu_item_target',''),(1146,237,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1147,237,'_menu_item_xfn',''),(1148,237,'_menu_item_url',''),(1150,238,'_menu_item_type','post_type'),(1151,238,'_menu_item_menu_item_parent','0'),(1152,238,'_menu_item_object_id','13'),(1153,238,'_menu_item_object','page'),(1154,238,'_menu_item_target',''),(1155,238,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1156,238,'_menu_item_xfn',''),(1157,238,'_menu_item_url',''),(1159,239,'_menu_item_type','post_type'),(1160,239,'_menu_item_menu_item_parent','0'),(1161,239,'_menu_item_object_id','89'),(1162,239,'_menu_item_object','page'),(1163,239,'_menu_item_target',''),(1164,239,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1165,239,'_menu_item_xfn',''),(1166,239,'_menu_item_url',''),(1168,240,'_menu_item_type','custom'),(1169,240,'_menu_item_menu_item_parent','0'),(1170,240,'_menu_item_object_id','240'),(1171,240,'_menu_item_object','custom'),(1172,240,'_menu_item_target',''),(1173,240,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1174,240,'_menu_item_xfn',''),(1175,240,'_menu_item_url','#'),(1177,241,'_menu_item_type','post_type'),(1178,241,'_menu_item_menu_item_parent','70'),(1179,241,'_menu_item_object_id','77'),(1180,241,'_menu_item_object','services'),(1181,241,'_menu_item_target',''),(1182,241,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1183,241,'_menu_item_xfn',''),(1184,241,'_menu_item_url',''),(1186,242,'_menu_item_type','post_type'),(1187,242,'_menu_item_menu_item_parent','70'),(1188,242,'_menu_item_object_id','73'),(1189,242,'_menu_item_object','services'),(1190,242,'_menu_item_target',''),(1191,242,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1192,242,'_menu_item_xfn',''),(1193,242,'_menu_item_url',''),(1195,243,'_menu_item_type','post_type'),(1196,243,'_menu_item_menu_item_parent','70'),(1197,243,'_menu_item_object_id','63'),(1198,243,'_menu_item_object','services'),(1199,243,'_menu_item_target',''),(1200,243,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1201,243,'_menu_item_xfn',''),(1202,243,'_menu_item_url',''),(1204,244,'_menu_item_type','post_type'),(1205,244,'_menu_item_menu_item_parent','70'),(1206,244,'_menu_item_object_id','79'),(1207,244,'_menu_item_object','services'),(1208,244,'_menu_item_target',''),(1209,244,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1210,244,'_menu_item_xfn',''),(1211,244,'_menu_item_url',''),(1213,245,'_menu_item_type','post_type'),(1214,245,'_menu_item_menu_item_parent','70'),(1215,245,'_menu_item_object_id','75'),(1216,245,'_menu_item_object','services'),(1217,245,'_menu_item_target',''),(1218,245,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1219,245,'_menu_item_xfn',''),(1220,245,'_menu_item_url',''),(1222,246,'_menu_item_type','post_type'),(1223,246,'_menu_item_menu_item_parent','70'),(1224,246,'_menu_item_object_id','71'),(1225,246,'_menu_item_object','services'),(1226,246,'_menu_item_target',''),(1227,246,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1228,246,'_menu_item_xfn',''),(1229,246,'_menu_item_url',''),(1231,247,'_menu_item_type','post_type'),(1232,247,'_menu_item_menu_item_parent','70'),(1233,247,'_menu_item_object_id','82'),(1234,247,'_menu_item_object','services'),(1235,247,'_menu_item_target',''),(1236,247,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1237,247,'_menu_item_xfn',''),(1238,247,'_menu_item_url',''),(1240,248,'_menu_item_type','post_type'),(1241,248,'_menu_item_menu_item_parent','70'),(1242,248,'_menu_item_object_id','85'),(1243,248,'_menu_item_object','services'),(1244,248,'_menu_item_target',''),(1245,248,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1246,248,'_menu_item_xfn',''),(1247,248,'_menu_item_url',''),(1249,249,'_menu_item_type','post_type'),(1250,249,'_menu_item_menu_item_parent','70'),(1251,249,'_menu_item_object_id','87'),(1252,249,'_menu_item_object','services'),(1253,249,'_menu_item_target',''),(1254,249,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1255,249,'_menu_item_xfn',''),(1256,249,'_menu_item_url',''),(1258,63,'_wp_old_date','2020-10-02'),(1259,71,'_wp_old_date','2020-10-02'),(1260,73,'_wp_old_date','2020-10-02'),(1261,251,'_wp_attached_file','2020/10/Grupo-SUADI-1.png'),(1262,251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:235;s:6:\"height\";i:88;s:4:\"file\";s:25:\"2020/10/Grupo-SUADI-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Grupo-SUADI-1-150x88.png\";s:5:\"width\";i:150;s:6:\"height\";i:88;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Grupo-SUADI-1-100x88.png\";s:5:\"width\";i:100;s:6:\"height\";i:88;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Grupo-SUADI-1-100x88.png\";s:5:\"width\";i:100;s:6:\"height\";i:88;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:{}}}'),(1263,252,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602800290952{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(1264,253,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602800290952{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(1265,254,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602800290952{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(1267,176,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(1270,256,'_wp_attached_file','2020/10/Equipo-pesado-grupo-suadi1.jpg'),(1271,256,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:38:\"2020/10/Equipo-pesado-grupo-suadi1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Equipo-pesado-grupo-suadi1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Equipo-pesado-grupo-suadi1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Equipo-pesado-grupo-suadi1-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:38:\"Equipo-pesado-grupo-suadi1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:38:\"Equipo-pesado-grupo-suadi1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:38:\"Equipo-pesado-grupo-suadi1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:38:\"Equipo-pesado-grupo-suadi1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:38:\"Equipo-pesado-grupo-suadi1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:38:\"Equipo-pesado-grupo-suadi1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:38:\"Equipo-pesado-grupo-suadi1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:39:\"Equipo-pesado-grupo-suadi1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"Equipo-pesado-grupo-suadi1-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:38:\"Equipo-pesado-grupo-suadi1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"Equipo-pesado-grupo-suadi1-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:38:\"Equipo-pesado-grupo-suadi1-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:38:\"Equipo-pesado-grupo-suadi1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"Equipo-pesado-grupo-suadi1-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:{}}}'),(1275,258,'_wp_attached_file','2020/10/excavadoras-panama.jpg'),(1276,258,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:30:\"2020/10/excavadoras-panama.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"excavadoras-panama-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"excavadoras-panama-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"excavadoras-panama-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:30:\"excavadoras-panama-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:30:\"excavadoras-panama-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:30:\"excavadoras-panama-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:30:\"excavadoras-panama-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:30:\"excavadoras-panama-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:30:\"excavadoras-panama-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:30:\"excavadoras-panama-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:31:\"excavadoras-panama-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"excavadoras-panama-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:30:\"excavadoras-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"excavadoras-panama-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:30:\"excavadoras-panama-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:30:\"excavadoras-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"excavadoras-panama-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:{}}}'),(1277,258,'_wp_attachment_image_alt',''),(1278,22,'_wp_old_slug','excavadoras-mini-excavadoras-y-palas'),(1279,260,'_wp_attached_file','2020/10/tractores-sobre-oruga-panama.jpg'),(1280,260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:40:\"2020/10/tractores-sobre-oruga-panama.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"tractores-sobre-oruga-panama-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"tractores-sobre-oruga-panama-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"tractores-sobre-oruga-panama-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:40:\"tractores-sobre-oruga-panama-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:40:\"tractores-sobre-oruga-panama-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:40:\"tractores-sobre-oruga-panama-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:40:\"tractores-sobre-oruga-panama-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:40:\"tractores-sobre-oruga-panama-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:40:\"tractores-sobre-oruga-panama-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:40:\"tractores-sobre-oruga-panama-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:41:\"tractores-sobre-oruga-panama-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"tractores-sobre-oruga-panama-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:40:\"tractores-sobre-oruga-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"tractores-sobre-oruga-panama-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:40:\"tractores-sobre-oruga-panama-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:40:\"tractores-sobre-oruga-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"tractores-sobre-oruga-panama-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:{}}}'),(1281,26,'_wp_old_slug','tractores-o-bulldozer'),(1282,260,'_wp_attachment_image_alt','Tractores sobre Oruga Panamá'),(1283,261,'_wp_attached_file','2020/10/Retroexcavadoras-4x4-Panama.jpg'),(1284,261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:39:\"2020/10/Retroexcavadoras-4x4-Panama.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Retroexcavadoras-4x4-Panama-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Retroexcavadoras-4x4-Panama-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Retroexcavadoras-4x4-Panama-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:39:\"Retroexcavadoras-4x4-Panama-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:39:\"Retroexcavadoras-4x4-Panama-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:39:\"Retroexcavadoras-4x4-Panama-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:39:\"Retroexcavadoras-4x4-Panama-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:39:\"Retroexcavadoras-4x4-Panama-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:39:\"Retroexcavadoras-4x4-Panama-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:39:\"Retroexcavadoras-4x4-Panama-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:40:\"Retroexcavadoras-4x4-Panama-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"Retroexcavadoras-4x4-Panama-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:39:\"Retroexcavadoras-4x4-Panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"Retroexcavadoras-4x4-Panama-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:39:\"Retroexcavadoras-4x4-Panama-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:39:\"Retroexcavadoras-4x4-Panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"Retroexcavadoras-4x4-Panama-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:{}}}'),(1285,262,'_wp_attached_file','2020/10/tractores-sobre-oruga-panama-1.jpg'),(1286,262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:42:\"2020/10/tractores-sobre-oruga-panama-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"tractores-sobre-oruga-panama-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"tractores-sobre-oruga-panama-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"tractores-sobre-oruga-panama-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:42:\"tractores-sobre-oruga-panama-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:42:\"tractores-sobre-oruga-panama-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:42:\"tractores-sobre-oruga-panama-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:42:\"tractores-sobre-oruga-panama-1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:42:\"tractores-sobre-oruga-panama-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:42:\"tractores-sobre-oruga-panama-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:42:\"tractores-sobre-oruga-panama-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:43:\"tractores-sobre-oruga-panama-1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"tractores-sobre-oruga-panama-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:42:\"tractores-sobre-oruga-panama-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"tractores-sobre-oruga-panama-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:42:\"tractores-sobre-oruga-panama-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:42:\"tractores-sobre-oruga-panama-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:42:\"tractores-sobre-oruga-panama-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:{}}}'),(1287,262,'_wp_attachment_image_alt','Tractores sobre orugas'),(1288,263,'_wp_attached_file','2020/10/mononiveladoras-panama.jpg'),(1289,263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:34:\"2020/10/mononiveladoras-panama.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"mononiveladoras-panama-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"mononiveladoras-panama-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"mononiveladoras-panama-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:34:\"mononiveladoras-panama-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"mononiveladoras-panama-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"mononiveladoras-panama-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"mononiveladoras-panama-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"mononiveladoras-panama-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"mononiveladoras-panama-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"mononiveladoras-panama-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"mononiveladoras-panama-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"mononiveladoras-panama-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:34:\"mononiveladoras-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"mononiveladoras-panama-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:\"mononiveladoras-panama-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:34:\"mononiveladoras-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"mononiveladoras-panama-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:{}}}'),(1290,38,'_yoast_wpseo_metadesc','La máquina de ingeniería civil diseñada con la versatilidad necesaria para la nivelación de suelos, construcción de carreteras y caminos...'),(1291,263,'_wp_attachment_image_alt','Motoniveladoras o cuchillas en Panamá'),(1292,42,'_wp_old_slug','perforadoras-o-track-drill'),(1293,44,'_wp_old_slug','compresores-de-aire'),(1294,265,'_wp_attached_file','2020/10/Dumpers-panama.jpg'),(1295,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:26:\"2020/10/Dumpers-panama.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Dumpers-panama-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Dumpers-panama-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Dumpers-panama-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:26:\"Dumpers-panama-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:26:\"Dumpers-panama-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:26:\"Dumpers-panama-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:26:\"Dumpers-panama-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:26:\"Dumpers-panama-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:26:\"Dumpers-panama-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:26:\"Dumpers-panama-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:27:\"Dumpers-panama-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Dumpers-panama-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:26:\"Dumpers-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Dumpers-panama-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:26:\"Dumpers-panama-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:26:\"Dumpers-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Dumpers-panama-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:{}}}'),(1296,267,'_wp_attached_file','2020/10/Hormigonera-auto-cargante.jpg'),(1297,267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:37:\"2020/10/Hormigonera-auto-cargante.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Hormigonera-auto-cargante-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Hormigonera-auto-cargante-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Hormigonera-auto-cargante-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:37:\"Hormigonera-auto-cargante-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:37:\"Hormigonera-auto-cargante-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:37:\"Hormigonera-auto-cargante-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:37:\"Hormigonera-auto-cargante-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:37:\"Hormigonera-auto-cargante-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:37:\"Hormigonera-auto-cargante-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:37:\"Hormigonera-auto-cargante-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:38:\"Hormigonera-auto-cargante-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"Hormigonera-auto-cargante-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:37:\"Hormigonera-auto-cargante-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"Hormigonera-auto-cargante-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:37:\"Hormigonera-auto-cargante-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:37:\"Hormigonera-auto-cargante-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"Hormigonera-auto-cargante-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:{}}}'),(1298,267,'_wp_attachment_image_alt','Hormigonera auto cargante'),(1299,268,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1300,268,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1301,268,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1302,268,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1303,268,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1304,268,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1305,268,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1306,268,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1307,268,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1308,268,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1309,268,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1310,268,'slide_template',''),(1311,268,'rs_page_bg_color',''),(1312,268,'_wpb_vc_js_status','true'),(1313,268,'_nt_header_background_color','#222222'),(1314,268,'_nt_header_alignment','left'),(1315,268,'_nt_header_text_color','#ffffff'),(1316,268,'_nt_header_breadcrumb_color','light'),(1317,268,'_nt_header_padding_top','200'),(1318,268,'_nt_header_padding_bottom','10'),(1319,268,'_nt_enable_page_header','on'),(1320,268,'_nt_header_background_image_id','20'),(1321,268,'_nt_header_background_image','http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg'),(1322,268,'_nt_header_title','Camiones Volquetes'),(1323,268,'_wp_old_slug','camiones-articulados-2'),(1325,268,'_thumbnail_id','311'),(1326,268,'_wp_old_date','2020-10-02'),(1327,268,'_yoast_wpseo_content_score','60'),(1328,268,'_dp_original','46'),(1329,268,'_edit_lock','1605637367:2'),(1330,268,'_edit_last','2'),(1331,269,'_wp_attached_file','2020/11/Camiones-Volquetes-Panama.jpg'),(1332,269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:37:\"2020/11/Camiones-Volquetes-Panama.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Camiones-Volquetes-Panama-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-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:37:\"Camiones-Volquetes-Panama-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:38:\"Camiones-Volquetes-Panama-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-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:37:\"Camiones-Volquetes-Panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-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:37:\"Camiones-Volquetes-Panama-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:37:\"Camiones-Volquetes-Panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-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:{}}}'),(1333,268,'_wp_old_date','2020-11-02'),(1334,270,'_wp_attached_file','2020/10/proyectos-residenciales01.jpg'),(1335,270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:37:\"2020/10/proyectos-residenciales01.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"proyectos-residenciales01-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"proyectos-residenciales01-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"proyectos-residenciales01-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:37:\"proyectos-residenciales01-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:37:\"proyectos-residenciales01-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:37:\"proyectos-residenciales01-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:37:\"proyectos-residenciales01-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:37:\"proyectos-residenciales01-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:37:\"proyectos-residenciales01-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:37:\"proyectos-residenciales01-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:38:\"proyectos-residenciales01-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"proyectos-residenciales01-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:37:\"proyectos-residenciales01-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"proyectos-residenciales01-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:37:\"proyectos-residenciales01-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:37:\"proyectos-residenciales01-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"proyectos-residenciales01-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:{}}}'),(1336,271,'_wp_attached_file','2020/10/residencial2.jpeg'),(1337,271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:25:\"2020/10/residencial2.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"residencial2-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial2-150x150.jpeg\";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:25:\"residencial2-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial2-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"residencial2-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial2-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial2-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"residencial2-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"residencial2-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"residencial2-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"residencial2-300x300.jpeg\";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:25:\"residencial2-600x338.jpeg\";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:25:\"residencial2-100x100.jpeg\";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:25:\"residencial2-300x300.jpeg\";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:25:\"residencial2-600x338.jpeg\";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:25:\"residencial2-100x100.jpeg\";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:{}}}'),(1338,272,'_wp_attached_file','2020/10/residencial3.jpeg'),(1339,272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:25:\"2020/10/residencial3.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"residencial3-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial3-150x150.jpeg\";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:25:\"residencial3-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial3-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"residencial3-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial3-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial3-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"residencial3-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"residencial3-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"residencial3-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"residencial3-300x300.jpeg\";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:25:\"residencial3-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial3-100x100.jpeg\";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:25:\"residencial3-300x300.jpeg\";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:25:\"residencial3-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial3-100x100.jpeg\";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:{}}}'),(1340,273,'_wp_attached_file','2020/10/residencial4.jpeg'),(1341,273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:25:\"2020/10/residencial4.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"residencial4-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial4-150x150.jpeg\";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:25:\"residencial4-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial4-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"residencial4-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial4-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial4-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"residencial4-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"residencial4-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"residencial4-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"residencial4-300x300.jpeg\";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:25:\"residencial4-600x338.jpeg\";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:25:\"residencial4-100x100.jpeg\";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:25:\"residencial4-300x300.jpeg\";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:25:\"residencial4-600x338.jpeg\";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:25:\"residencial4-100x100.jpeg\";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:{}}}'),(1342,274,'_wp_attached_file','2020/10/residencial5.jpeg'),(1343,274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:25:\"2020/10/residencial5.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"residencial5-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial5-150x150.jpeg\";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:25:\"residencial5-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial5-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"residencial5-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial5-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial5-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"residencial5-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"residencial5-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"residencial5-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"residencial5-300x300.jpeg\";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:25:\"residencial5-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial5-100x100.jpeg\";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:25:\"residencial5-300x300.jpeg\";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:25:\"residencial5-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial5-100x100.jpeg\";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:{}}}'),(1344,275,'_wp_attached_file','2020/10/residencial6.jpeg'),(1345,275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:25:\"2020/10/residencial6.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"residencial6-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial6-150x150.jpeg\";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:25:\"residencial6-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial6-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"residencial6-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial6-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial6-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"residencial6-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"residencial6-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"residencial6-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"residencial6-300x300.jpeg\";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:25:\"residencial6-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial6-100x100.jpeg\";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:25:\"residencial6-300x300.jpeg\";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:25:\"residencial6-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial6-100x100.jpeg\";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:{}}}'),(1346,276,'_wp_attached_file','2020/10/residencial7.jpeg'),(1347,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:614;s:4:\"file\";s:25:\"2020/10/residencial7.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"residencial7-300x180.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial7-150x150.jpeg\";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:25:\"residencial7-768x461.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial7-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"residencial7-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial7-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial7-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"residencial7-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"residencial7-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"residencial7-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"residencial7-300x300.jpeg\";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:25:\"residencial7-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial7-100x100.jpeg\";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:25:\"residencial7-300x300.jpeg\";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:25:\"residencial7-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial7-100x100.jpeg\";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:{}}}'),(1348,277,'_wp_attached_file','2020/10/residencial8.jpeg'),(1349,277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:25:\"2020/10/residencial8.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"residencial8-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial8-150x150.jpeg\";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:25:\"residencial8-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial8-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"residencial8-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial8-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial8-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"residencial8-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"residencial8-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"residencial8-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"residencial8-300x300.jpeg\";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:25:\"residencial8-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial8-100x100.jpeg\";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:25:\"residencial8-300x300.jpeg\";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:25:\"residencial8-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial8-100x100.jpeg\";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:{}}}'),(1350,278,'_wp_attached_file','2020/10/residencial9.jpeg'),(1351,278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:25:\"2020/10/residencial9.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"residencial9-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial9-150x150.jpeg\";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:25:\"residencial9-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial9-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"residencial9-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial9-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial9-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"residencial9-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"residencial9-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"residencial9-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"residencial9-300x300.jpeg\";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:25:\"residencial9-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial9-100x100.jpeg\";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:25:\"residencial9-300x300.jpeg\";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:25:\"residencial9-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial9-100x100.jpeg\";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:{}}}'),(1352,279,'_wp_attached_file','2020/10/residencial10.jpeg'),(1353,279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:26:\"2020/10/residencial10.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"residencial10-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial10-150x150.jpeg\";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:26:\"residencial10-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial10-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:26:\"residencial10-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial10-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial10-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:26:\"residencial10-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:26:\"residencial10-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:27:\"residencial10-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"residencial10-300x300.jpeg\";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:26:\"residencial10-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial10-100x100.jpeg\";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:26:\"residencial10-300x300.jpeg\";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:26:\"residencial10-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial10-100x100.jpeg\";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:{}}}'),(1354,280,'_wp_attached_file','2020/10/residencial11.jpeg'),(1355,280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:614;s:4:\"file\";s:26:\"2020/10/residencial11.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"residencial11-300x180.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial11-150x150.jpeg\";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:26:\"residencial11-768x461.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial11-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:26:\"residencial11-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial11-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial11-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:26:\"residencial11-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:26:\"residencial11-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:27:\"residencial11-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"residencial11-300x300.jpeg\";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:26:\"residencial11-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial11-100x100.jpeg\";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:26:\"residencial11-300x300.jpeg\";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:26:\"residencial11-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial11-100x100.jpeg\";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:{}}}'),(1356,281,'_wp_attached_file','2020/10/residencial12.jpeg'),(1357,281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:26:\"2020/10/residencial12.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"residencial12-300x188.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial12-150x150.jpeg\";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:26:\"residencial12-768x480.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial12-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:26:\"residencial12-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial12-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial12-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:26:\"residencial12-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:26:\"residencial12-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:27:\"residencial12-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"residencial12-300x300.jpeg\";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:26:\"residencial12-600x375.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial12-100x100.jpeg\";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:26:\"residencial12-300x300.jpeg\";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:26:\"residencial12-600x375.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial12-100x100.jpeg\";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:{}}}'),(1358,282,'_wp_attached_file','2020/10/residencial13.jpeg'),(1359,282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:614;s:4:\"file\";s:26:\"2020/10/residencial13.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"residencial13-300x180.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial13-150x150.jpeg\";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:26:\"residencial13-768x461.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial13-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:26:\"residencial13-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial13-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial13-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:26:\"residencial13-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:26:\"residencial13-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:27:\"residencial13-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"residencial13-300x300.jpeg\";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:26:\"residencial13-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial13-100x100.jpeg\";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:26:\"residencial13-300x300.jpeg\";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:26:\"residencial13-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial13-100x100.jpeg\";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:{}}}'),(1360,283,'_wp_attached_file','2020/10/residencial14.jpeg'),(1361,283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:26:\"2020/10/residencial14.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"residencial14-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"residencial14-150x150.jpeg\";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:26:\"residencial14-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial14-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:26:\"residencial14-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial14-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:26:\"residencial14-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:26:\"residencial14-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:26:\"residencial14-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:27:\"residencial14-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"residencial14-300x300.jpeg\";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:26:\"residencial14-600x338.jpeg\";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:26:\"residencial14-100x100.jpeg\";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:26:\"residencial14-300x300.jpeg\";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:26:\"residencial14-600x338.jpeg\";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:26:\"residencial14-100x100.jpeg\";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:{}}}'),(1362,284,'_wp_attached_file','2020/10/residencial1.jpeg'),(1363,284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:25:\"2020/10/residencial1.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"residencial1-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial1-150x150.jpeg\";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:25:\"residencial1-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial1-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:25:\"residencial1-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial1-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:25:\"residencial1-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:25:\"residencial1-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:25:\"residencial1-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:26:\"residencial1-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"residencial1-300x300.jpeg\";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:25:\"residencial1-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial1-100x100.jpeg\";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:25:\"residencial1-300x300.jpeg\";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:25:\"residencial1-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"residencial1-100x100.jpeg\";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:{}}}'),(1364,286,'_wp_attached_file','2020/10/infraestructura-vial1.jpeg'),(1365,286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:34:\"2020/10/infraestructura-vial1.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial1-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial1-150x150.jpeg\";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:34:\"infraestructura-vial1-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial1-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial1-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial1-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial1-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial1-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial1-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial1-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"infraestructura-vial1-300x300.jpeg\";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:34:\"infraestructura-vial1-600x338.jpeg\";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:34:\"infraestructura-vial1-100x100.jpeg\";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:\"infraestructura-vial1-300x300.jpeg\";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:34:\"infraestructura-vial1-600x338.jpeg\";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:34:\"infraestructura-vial1-100x100.jpeg\";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:{}}}'),(1366,287,'_wp_attached_file','2020/10/infraestructura-vial2.jpeg'),(1367,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:34:\"2020/10/infraestructura-vial2.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial2-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial2-150x150.jpeg\";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:34:\"infraestructura-vial2-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial2-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial2-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial2-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial2-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial2-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial2-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial2-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"infraestructura-vial2-300x300.jpeg\";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:34:\"infraestructura-vial2-600x338.jpeg\";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:34:\"infraestructura-vial2-100x100.jpeg\";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:\"infraestructura-vial2-300x300.jpeg\";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:34:\"infraestructura-vial2-600x338.jpeg\";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:34:\"infraestructura-vial2-100x100.jpeg\";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:{}}}'),(1368,288,'_wp_attached_file','2020/10/infraestructura-vial3.jpeg'),(1369,288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:614;s:4:\"file\";s:34:\"2020/10/infraestructura-vial3.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial3-300x180.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial3-150x150.jpeg\";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:34:\"infraestructura-vial3-768x461.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial3-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial3-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial3-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial3-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial3-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial3-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial3-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"infraestructura-vial3-300x300.jpeg\";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:34:\"infraestructura-vial3-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial3-100x100.jpeg\";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:\"infraestructura-vial3-300x300.jpeg\";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:34:\"infraestructura-vial3-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial3-100x100.jpeg\";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:{}}}'),(1370,289,'_wp_attached_file','2020/10/infraestructura-vial4.jpeg'),(1371,289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:576;s:6:\"height\";i:1024;s:4:\"file\";s:34:\"2020/10/infraestructura-vial4.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial4-169x300.jpeg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial4-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial4-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial4-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial4-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial4-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial4-576x400.jpeg\";s:5:\"width\";i:576;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial4-576x550.jpeg\";s:5:\"width\";i:576;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"infraestructura-vial4-300x300.jpeg\";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:\"infraestructura-vial4-100x100.jpeg\";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:\"infraestructura-vial4-300x300.jpeg\";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:\"infraestructura-vial4-100x100.jpeg\";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:{}}}'),(1372,290,'_wp_attached_file','2020/10/infraestructura-vial5.jpeg'),(1373,290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:614;s:4:\"file\";s:34:\"2020/10/infraestructura-vial5.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial5-300x180.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial5-150x150.jpeg\";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:34:\"infraestructura-vial5-768x461.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial5-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial5-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial5-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial5-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial5-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial5-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial5-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"infraestructura-vial5-300x300.jpeg\";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:34:\"infraestructura-vial5-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial5-100x100.jpeg\";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:\"infraestructura-vial5-300x300.jpeg\";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:34:\"infraestructura-vial5-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial5-100x100.jpeg\";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:{}}}'),(1374,291,'_wp_attached_file','2020/10/infraestructura-vial6.jpeg'),(1375,291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:614;s:4:\"file\";s:34:\"2020/10/infraestructura-vial6.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial6-300x180.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial6-150x150.jpeg\";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:34:\"infraestructura-vial6-768x461.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial6-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial6-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial6-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial6-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial6-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial6-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial6-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"infraestructura-vial6-300x300.jpeg\";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:34:\"infraestructura-vial6-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial6-100x100.jpeg\";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:\"infraestructura-vial6-300x300.jpeg\";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:34:\"infraestructura-vial6-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial6-100x100.jpeg\";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:{}}}'),(1376,292,'_wp_attached_file','2020/10/infraestructura-vial7.jpeg'),(1377,292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:34:\"2020/10/infraestructura-vial7.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial7-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial7-150x150.jpeg\";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:34:\"infraestructura-vial7-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial7-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial7-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial7-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial7-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial7-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial7-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial7-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"infraestructura-vial7-300x300.jpeg\";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:34:\"infraestructura-vial7-600x338.jpeg\";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:34:\"infraestructura-vial7-100x100.jpeg\";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:\"infraestructura-vial7-300x300.jpeg\";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:34:\"infraestructura-vial7-600x338.jpeg\";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:34:\"infraestructura-vial7-100x100.jpeg\";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:{}}}'),(1378,293,'_wp_attached_file','2020/10/infraestructura-vial8.jpeg'),(1379,293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:34:\"2020/10/infraestructura-vial8.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial8-300x188.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial8-150x150.jpeg\";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:34:\"infraestructura-vial8-768x480.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial8-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial8-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial8-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial8-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial8-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial8-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial8-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"infraestructura-vial8-300x300.jpeg\";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:34:\"infraestructura-vial8-600x375.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial8-100x100.jpeg\";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:\"infraestructura-vial8-300x300.jpeg\";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:34:\"infraestructura-vial8-600x375.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial8-100x100.jpeg\";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:{}}}'),(1380,294,'_wp_attached_file','2020/10/infraestructura-vial9.jpeg'),(1381,294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:34:\"2020/10/infraestructura-vial9.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial9-300x188.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial9-150x150.jpeg\";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:34:\"infraestructura-vial9-768x480.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial9-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial9-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial9-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial9-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial9-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial9-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial9-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"infraestructura-vial9-300x300.jpeg\";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:34:\"infraestructura-vial9-600x375.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial9-100x100.jpeg\";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:\"infraestructura-vial9-300x300.jpeg\";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:34:\"infraestructura-vial9-600x375.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"infraestructura-vial9-100x100.jpeg\";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:{}}}'),(1382,295,'_wp_attached_file','2020/10/infraestructura-vial10.jpeg'),(1383,295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:576;s:6:\"height\";i:1024;s:4:\"file\";s:35:\"2020/10/infraestructura-vial10.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial10-169x300.jpeg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial10-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial10-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial10-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial10-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial10-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial10-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial10-576x400.jpeg\";s:5:\"width\";i:576;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"infraestructura-vial10-576x550.jpeg\";s:5:\"width\";i:576;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"infraestructura-vial10-300x300.jpeg\";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:35:\"infraestructura-vial10-100x100.jpeg\";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:35:\"infraestructura-vial10-300x300.jpeg\";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:35:\"infraestructura-vial10-100x100.jpeg\";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:{}}}'),(1384,296,'_wp_attached_file','2020/10/infraestructura-vial-panama.jpg'),(1385,296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:39:\"2020/10/infraestructura-vial-panama.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"infraestructura-vial-panama-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"infraestructura-vial-panama-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"infraestructura-vial-panama-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:39:\"infraestructura-vial-panama-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:39:\"infraestructura-vial-panama-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:39:\"infraestructura-vial-panama-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:39:\"infraestructura-vial-panama-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:39:\"infraestructura-vial-panama-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:39:\"infraestructura-vial-panama-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:39:\"infraestructura-vial-panama-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:40:\"infraestructura-vial-panama-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"infraestructura-vial-panama-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:39:\"infraestructura-vial-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"infraestructura-vial-panama-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:39:\"infraestructura-vial-panama-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:39:\"infraestructura-vial-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"infraestructura-vial-panama-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:{}}}'),(1386,297,'_wp_attached_file','2020/10/Urbanizaciones1.jpeg'),(1387,297,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:576;s:6:\"height\";i:1024;s:4:\"file\";s:28:\"2020/10/Urbanizaciones1.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones1-169x300.jpeg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones1-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones1-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones1-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones1-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones1-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones1-576x400.jpeg\";s:5:\"width\";i:576;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones1-576x550.jpeg\";s:5:\"width\";i:576;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Urbanizaciones1-300x300.jpeg\";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:28:\"Urbanizaciones1-100x100.jpeg\";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:28:\"Urbanizaciones1-300x300.jpeg\";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:28:\"Urbanizaciones1-100x100.jpeg\";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:{}}}'),(1388,298,'_wp_attached_file','2020/10/Urbanizaciones2.jpeg'),(1389,298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:28:\"2020/10/Urbanizaciones2.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones2-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones2-150x150.jpeg\";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:28:\"Urbanizaciones2-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones2-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones2-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones2-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones2-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones2-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones2-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:29:\"Urbanizaciones2-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Urbanizaciones2-300x300.jpeg\";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:28:\"Urbanizaciones2-600x338.jpeg\";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:28:\"Urbanizaciones2-100x100.jpeg\";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:28:\"Urbanizaciones2-300x300.jpeg\";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:28:\"Urbanizaciones2-600x338.jpeg\";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:28:\"Urbanizaciones2-100x100.jpeg\";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:{}}}'),(1390,299,'_wp_attached_file','2020/10/Urbanizaciones3.jpeg'),(1391,299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:28:\"2020/10/Urbanizaciones3.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones3-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones3-150x150.jpeg\";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:28:\"Urbanizaciones3-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones3-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones3-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones3-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones3-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones3-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones3-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:29:\"Urbanizaciones3-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Urbanizaciones3-300x300.jpeg\";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:28:\"Urbanizaciones3-600x338.jpeg\";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:28:\"Urbanizaciones3-100x100.jpeg\";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:28:\"Urbanizaciones3-300x300.jpeg\";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:28:\"Urbanizaciones3-600x338.jpeg\";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:28:\"Urbanizaciones3-100x100.jpeg\";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:{}}}'),(1392,300,'_wp_attached_file','2020/10/Urbanizaciones4.jpeg'),(1393,300,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:28:\"2020/10/Urbanizaciones4.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones4-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones4-150x150.jpeg\";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:28:\"Urbanizaciones4-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones4-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones4-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones4-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones4-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones4-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones4-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:29:\"Urbanizaciones4-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Urbanizaciones4-300x300.jpeg\";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:28:\"Urbanizaciones4-600x338.jpeg\";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:28:\"Urbanizaciones4-100x100.jpeg\";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:28:\"Urbanizaciones4-300x300.jpeg\";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:28:\"Urbanizaciones4-600x338.jpeg\";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:28:\"Urbanizaciones4-100x100.jpeg\";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:{}}}'),(1394,301,'_wp_attached_file','2020/10/Urbanizaciones5.jpeg'),(1395,301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:28:\"2020/10/Urbanizaciones5.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones5-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones5-150x150.jpeg\";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:28:\"Urbanizaciones5-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones5-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones5-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones5-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones5-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones5-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones5-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:29:\"Urbanizaciones5-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Urbanizaciones5-300x300.jpeg\";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:28:\"Urbanizaciones5-600x338.jpeg\";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:28:\"Urbanizaciones5-100x100.jpeg\";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:28:\"Urbanizaciones5-300x300.jpeg\";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:28:\"Urbanizaciones5-600x338.jpeg\";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:28:\"Urbanizaciones5-100x100.jpeg\";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:{}}}'),(1396,302,'_wp_attached_file','2020/10/Urbanizaciones6.jpeg'),(1397,302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:28:\"2020/10/Urbanizaciones6.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones6-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones6-150x150.jpeg\";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:28:\"Urbanizaciones6-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones6-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones6-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones6-450x250.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones6-350x250.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones6-550x300.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones6-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:29:\"Urbanizaciones6-1024x550.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Urbanizaciones6-300x300.jpeg\";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:28:\"Urbanizaciones6-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones6-100x100.jpeg\";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:28:\"Urbanizaciones6-300x300.jpeg\";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:28:\"Urbanizaciones6-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Urbanizaciones6-100x100.jpeg\";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:{}}}'),(1398,209,'_wpb_shortcodes_custom_css','.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601395062729{margin-top: -40px !important;}.vc_custom_1601396758265{margin-top: -20px !important;}'),(1399,303,'_wp_attached_file','2020/10/Excavadoras-brazo-largo1.jpg'),(1400,303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1040;s:6:\"height\";i:780;s:4:\"file\";s:36:\"2020/10/Excavadoras-brazo-largo1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo1-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:36:\"Excavadoras-brazo-largo1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo1-1040x550.jpg\";s:5:\"width\";i:1040;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo1-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:36:\"Excavadoras-brazo-largo1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo1-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:36:\"Excavadoras-brazo-largo1-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:36:\"Excavadoras-brazo-largo1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo1-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:{}}}'),(1401,304,'_wp_attached_file','2020/10/Excavadoras-brazo-largo3.jpg'),(1402,304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:36:\"2020/10/Excavadoras-brazo-largo3.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo3-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:36:\"Excavadoras-brazo-largo3-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo3-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo3-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo3-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo3-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo3-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo3-1024x550.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo3-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:36:\"Excavadoras-brazo-largo3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo3-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:36:\"Excavadoras-brazo-largo3-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:36:\"Excavadoras-brazo-largo3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"Excavadoras-brazo-largo3-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:{}}}'),(1405,306,'_wp_attached_file','2020/10/Excavadoras-brazo-largo02.jpg'),(1406,306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:37:\"2020/10/Excavadoras-brazo-largo02.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo02-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo02-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:37:\"Excavadoras-brazo-largo02-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo02-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo02-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo02-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo02-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo02-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo02-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:38:\"Excavadoras-brazo-largo02-1024x550.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo02-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:37:\"Excavadoras-brazo-largo02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo02-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:37:\"Excavadoras-brazo-largo02-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:37:\"Excavadoras-brazo-largo02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"Excavadoras-brazo-largo02-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:{}}}'),(1407,42,'_wp_old_slug','pala-con-martillo-o-fresadoras'),(1408,6,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(1409,308,'_form','<div class=\"row\">\n<div class=\"col-sm-12\">\n<label> Nombre completo (requerido)\n [text* su-nombre] </label>\n\n<label> Correo electrónico (requerido)\n [email* su-email] </label>\n</div> <div class=\"col-sm-6\">\n<label> Teléfono\n [text su-telefono] </label>\n</div> <div class=\"col-sm-6\">\n<label> Ubicación\n [text su-telefono] </label>\n</div> <div class=\"col-sm-12\">\n<label> Mensaje / Comentarios\n [textarea su-mensaje] </label>\n\n[submit \"Enviar\"]\n</div>\n</div>'),(1410,308,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:28:\"Grupo Suadi \"[your-subject]\"\";s:6:\"sender\";s:36:\"Grupo Suadi <wordpress@zewsdemo.com>\";s:9:\"recipient\";s:19:\"hferreto@zews.co.cr\";s:4:\"body\";s:180:\"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 Grupo Suadi (http://zewsdemo.com/gruposuadi)\";s:18:\"additional_headers\";s:20:\"Reply-To: [su-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1411,308,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:28:\"Grupo Suadi \"[your-subject]\"\";s:6:\"sender\";s:36:\"Grupo Suadi <wordpress@zewsdemo.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:122:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Grupo Suadi (http://zewsdemo.com/gruposuadi)\";s:18:\"additional_headers\";s:29:\"Reply-To: hferreto@zews.co.cr\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1412,308,'_messages','a:22:{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: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.\";}'),(1413,308,'_additional_settings',''),(1414,308,'_locale','es_ES'),(1416,309,'_wp_attached_file','2020/10/camion-plataforma.jpg'),(1417,309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:29:\"2020/10/camion-plataforma.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"camion-plataforma-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"camion-plataforma-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"camion-plataforma-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:29:\"camion-plataforma-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:29:\"camion-plataforma-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:29:\"camion-plataforma-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:29:\"camion-plataforma-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:29:\"camion-plataforma-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:29:\"camion-plataforma-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:29:\"camion-plataforma-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:30:\"camion-plataforma-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"camion-plataforma-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:29:\"camion-plataforma-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"camion-plataforma-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:29:\"camion-plataforma-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:29:\"camion-plataforma-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"camion-plataforma-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:{}}}'),(1418,310,'_menu_item_type','post_type'),(1419,310,'_menu_item_menu_item_parent','25'),(1420,310,'_menu_item_object_id','268'),(1421,310,'_menu_item_object','services'),(1422,310,'_menu_item_target',''),(1423,310,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1424,310,'_menu_item_xfn',''),(1425,310,'_menu_item_url',''),(1427,311,'_wp_attached_file','2020/10/Camiones-Volquetes-Panama.jpg'),(1428,311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:37:\"2020/10/Camiones-Volquetes-Panama.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Camiones-Volquetes-Panama-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-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:37:\"Camiones-Volquetes-Panama-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:38:\"Camiones-Volquetes-Panama-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-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:37:\"Camiones-Volquetes-Panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-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:37:\"Camiones-Volquetes-Panama-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:37:\"Camiones-Volquetes-Panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"Camiones-Volquetes-Panama-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:{}}}'),(1429,312,'_wp_attached_file','2020/10/compactadoras-panama.jpg'),(1430,312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:32:\"2020/10/compactadoras-panama.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"compactadoras-panama-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"compactadoras-panama-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"compactadoras-panama-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:32:\"compactadoras-panama-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:32:\"compactadoras-panama-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:32:\"compactadoras-panama-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:32:\"compactadoras-panama-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:32:\"compactadoras-panama-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:32:\"compactadoras-panama-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:32:\"compactadoras-panama-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:33:\"compactadoras-panama-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"compactadoras-panama-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:32:\"compactadoras-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"compactadoras-panama-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:32:\"compactadoras-panama-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:32:\"compactadoras-panama-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"compactadoras-panama-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:{}}}'),(1431,312,'_wp_attachment_image_alt','Compactadora Lisa o De Piña'),(1432,313,'_wp_attached_file','2020/10/PalaMartillo-RetroMartillo.jpg'),(1433,313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:38:\"2020/10/PalaMartillo-RetroMartillo.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"PalaMartillo-RetroMartillo-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"PalaMartillo-RetroMartillo-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"PalaMartillo-RetroMartillo-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:38:\"PalaMartillo-RetroMartillo-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:38:\"PalaMartillo-RetroMartillo-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:38:\"PalaMartillo-RetroMartillo-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:38:\"PalaMartillo-RetroMartillo-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:38:\"PalaMartillo-RetroMartillo-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:38:\"PalaMartillo-RetroMartillo-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:38:\"PalaMartillo-RetroMartillo-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:39:\"PalaMartillo-RetroMartillo-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"PalaMartillo-RetroMartillo-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:38:\"PalaMartillo-RetroMartillo-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"PalaMartillo-RetroMartillo-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:38:\"PalaMartillo-RetroMartillo-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:38:\"PalaMartillo-RetroMartillo-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"PalaMartillo-RetroMartillo-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:{}}}'),(1434,314,'_wp_attached_file','2020/10/cargadores-frontales-1.jpg'),(1435,314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:34:\"2020/10/cargadores-frontales-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cargadores-frontales-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"cargadores-frontales-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cargadores-frontales-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:34:\"cargadores-frontales-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:34:\"cargadores-frontales-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:34:\"cargadores-frontales-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:34:\"cargadores-frontales-1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:34:\"cargadores-frontales-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:34:\"cargadores-frontales-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:34:\"cargadores-frontales-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:35:\"cargadores-frontales-1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"cargadores-frontales-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:34:\"cargadores-frontales-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"cargadores-frontales-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:34:\"cargadores-frontales-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:34:\"cargadores-frontales-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"cargadores-frontales-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:{}}}'),(1436,314,'_wp_attachment_image_alt','Cargadores frontales'),(1437,315,'_wp_attached_file','2020/10/Excavadoras-panama-1.jpg'),(1438,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:32:\"2020/10/Excavadoras-panama-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Excavadoras-panama-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Excavadoras-panama-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Excavadoras-panama-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:32:\"Excavadoras-panama-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:32:\"Excavadoras-panama-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-500x500-cropped\";a:4:{s:4:\"file\";s:32:\"Excavadoras-panama-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-450x250-cropped\";a:4:{s:4:\"file\";s:32:\"Excavadoras-panama-1-450x250.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:32:\"Excavadoras-panama-1-350x250.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-550x300-cropped\";a:4:{s:4:\"file\";s:32:\"Excavadoras-panama-1-550x300.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"construction-image-600x400-cropped\";a:4:{s:4:\"file\";s:32:\"Excavadoras-panama-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"construction-image-1110x550-cropped\";a:4:{s:4:\"file\";s:33:\"Excavadoras-panama-1-1110x550.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"Excavadoras-panama-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:32:\"Excavadoras-panama-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Excavadoras-panama-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:32:\"Excavadoras-panama-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:32:\"Excavadoras-panama-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Excavadoras-panama-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:{}}}'),(1441,317,'_wp_attached_file','2020/11/Logo-GSUADI-1.png'),(1442,317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:90;s:4:\"file\";s:25:\"2020/11/Logo-GSUADI-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Logo-GSUADI-1-150x90.png\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Logo-GSUADI-1-100x90.png\";s:5:\"width\";i:100;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Logo-GSUADI-1-100x90.png\";s:5:\"width\";i:100;s:6:\"height\";i:90;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:{}}}'),(1443,318,'_wp_attached_file','2020/11/LogoG-SUADI1-Ret.png'),(1444,318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:392;s:6:\"height\";i:141;s:4:\"file\";s:28:\"2020/11/LogoG-SUADI1-Ret.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"LogoG-SUADI1-Ret-300x108.png\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"LogoG-SUADI1-Ret-150x141.png\";s:5:\"width\";i:150;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"construction-image-250x250-cropped\";a:4:{s:4:\"file\";s:28:\"LogoG-SUADI1-Ret-250x141.png\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"construction-image-350x250-cropped\";a:4:{s:4:\"file\";s:28:\"LogoG-SUADI1-Ret-350x141.png\";s:5:\"width\";i:350;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"LogoG-SUADI1-Ret-300x141.png\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"LogoG-SUADI1-Ret-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:28:\"LogoG-SUADI1-Ret-300x141.png\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"LogoG-SUADI1-Ret-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:{}}}'),(1445,319,'_wp_attached_file','2020/11/LogoG-SUADI1-mob.png'),(1446,319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:91;s:4:\"file\";s:28:\"2020/11/LogoG-SUADI1-mob.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"LogoG-SUADI1-mob-150x91.png\";s:5:\"width\";i:150;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"LogoG-SUADI1-mob-100x91.png\";s:5:\"width\";i:100;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"LogoG-SUADI1-mob-100x91.png\";s:5:\"width\";i:100;s:6:\"height\";i:91;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:{}}}'),(1447,320,'_wpb_shortcodes_custom_css','.vc_custom_1602108056330{margin-top: -100px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602166176131{margin-top: 50px !important;}.vc_custom_1602800290952{margin-top: 50px !important;}.vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}.vc_custom_1602170601913{margin-top: -100px !important;}.vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}.vc_custom_1602106481189{margin-top: -40px !important;}'),(1448,321,'_wpb_shortcodes_custom_css','.vc_custom_1602105863382{margin-top: 40px !important;}.vc_custom_1602702322343{margin-top: -35px !important;}'),(1449,322,'_wpb_shortcodes_custom_css','.vc_custom_1602105863382{margin-top: 40px !important;}.vc_custom_1602702322343{margin-top: -35px !important;}'),(1450,40,'_wp_old_slug','cargadores-frontales-y-mini-cargadores'); /*!40000 ALTER TABLE `grpsd_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_posts` -- DROP TABLE IF EXISTS `grpsd_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB AUTO_INCREMENT=325 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_posts` -- LOCK TABLES `grpsd_posts` WRITE; /*!40000 ALTER TABLE `grpsd_posts` DISABLE KEYS */; INSERT INTO `grpsd_posts` VALUES (6,2,'2020-09-28 18:55:05','2020-09-28 18:55:05','<div class=\"row\">\r\n<div class=\"col-sm-12\">\r\n<label> Nombre completo (requerido)\r\n [text* su-nombre] </label>\r\n\r\n<label> Correo electrónico (requerido)\r\n [email* su-email] </label>\r\n</div> <div class=\"col-sm-6\">\r\n<label> Teléfono\r\n [text su-telefono] </label>\r\n</div> <div class=\"col-sm-6\">\r\n<label> Ubicación\r\n [text su-telefono] </label>\r\n</div> <div class=\"col-sm-12\">\r\n<label> Mensaje / Comentarios\r\n [textarea su-mensaje] </label>\r\n\r\n[submit \"Enviar\"]\r\n</div>\r\n</div>\n1\nGrupo Suadi \"[your-subject]\"\nGrupo Suadi <wordpress@zewsdemo.com>\nhferreto@zews.co.cr\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 Grupo Suadi (http://zewsdemo.com/gruposuadi)\nReply-To: [your-email]\n\n\n\n\nGrupo Suadi \"[your-subject]\"\nGrupo Suadi <wordpress@zewsdemo.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Grupo Suadi (http://zewsdemo.com/gruposuadi)\nReply-To: hferreto@zews.co.cr\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.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Servicios maquinaria','','publish','closed','closed','','contact-form-1','','','2020-11-12 22:18:07','2020-11-12 22:18:07','',0,'http://zewsdemo.com/gruposuadi/?post_type=wpcf7_contact_form&p=6',0,'wpcf7_contact_form','',0),(7,2,'2020-09-28 18:55:08','2020-09-28 18:55:08','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2020-09-28 18:55:08','2020-09-28 18:55:08','',0,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/woocommerce-placeholder.png',0,'attachment','image/png',0),(8,2,'2020-09-28 18:58:16','2020-09-28 18:58:16','','mt-sample-background','','inherit','open','closed','','mt-sample-background','','','2020-09-28 18:58:16','2020-09-28 18:58:16','',0,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/mt-sample-background.jpg',0,'attachment','image/jpeg',0),(13,2,'2020-09-29 15:12:29','2020-09-29 15:12:29','[vc_row][vc_column][construction_services_grid services_grid_number=\"-1\" services_grid_layout=\"col-sm-4 col-xs-12\" service_categories=\"Maquinaria\" services_grid_link_txt=\"Ver más\"][/vc_column][/vc_row]','Maquinarias','','publish','closed','closed','','maquinarias','','','2020-10-08 20:57:45','2020-10-08 20:57:45','',0,'http://zewsdemo.com/gruposuadi/?page_id=13',0,'page','',0),(14,2,'2020-09-28 22:57:14','2020-09-28 22:57:14','[vc_row][vc_column][construction_services_grid services_grid_number=\"-1\" services_grid_layout=\"col-sm-4 col-xs-12\" service_categories=\"all\" services_grid_link_txt=\"See More\"][/vc_column][/vc_row]','','','inherit','closed','closed','','13-revision-v1','','','2020-09-28 22:57:14','2020-09-28 22:57:14','',13,'http://zewsdemo.com/gruposuadi/2020/09/28/13-revision-v1/',0,'revision','',0),(15,2,'2020-10-02 13:26:50','2020-10-02 13:26:50','[vc_row][vc_column][vc_single_image image=\"256\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Equipo Pesado\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Brindamos el servicio de alquiler de equipo pesado para la ejecución de proyectos públicos y privados, en los ámbitos de la industria de la construcción que se desarrollen en todo el territorio panameño.\r\n\r\nComplementamos nuestro servicio con el mantenimiento preventivo y correctivo, la movilización y desmovilización de la maquinaria, el respaldo de operadores calificados y el abastecimiento de combustible.\r\n\r\nNuestros equipos están asegurados, para respaldar el cumplimiento de los compromisos adquiridos.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Alquiler de equipos','','publish','closed','closed','','alquiler-de-equipos','','','2020-11-17 18:11:53','2020-11-17 18:11:53','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=15',0,'services','',0),(16,2,'2020-09-29 14:27:16','2020-09-29 14:27:16','[vc_row][vc_column][construction_services_grid services_grid_number=\"-1\" services_grid_layout=\"col-sm-4 col-xs-12\" service_categories=\"all\" services_grid_link_txt=\"See More\"][/vc_column][/vc_row]','Maquinarias','','inherit','closed','closed','','13-revision-v1','','','2020-09-29 14:27:16','2020-09-29 14:27:16','',13,'http://zewsdemo.com/gruposuadi/2020/09/29/13-revision-v1/',0,'revision','',0),(17,2,'2020-09-29 14:27:31','2020-09-29 14:27:31','[vc_row][vc_column][construction_services_grid services_grid_number=\"-1\" services_grid_layout=\"col-sm-4 col-xs-12\" service_categories=\"Maquinaria\" services_grid_link_txt=\"See More\"][/vc_column][/vc_row]','Maquinarias','','inherit','closed','closed','','13-revision-v1','','','2020-09-29 14:27:31','2020-09-29 14:27:31','',13,'http://zewsdemo.com/gruposuadi/2020/09/29/13-revision-v1/',0,'revision','',0),(18,2,'2020-09-29 15:11:08','2020-09-29 15:11:08','','Alquiler-de-equipos','','inherit','open','closed','','alquiler-de-equipos-2','','','2020-09-29 15:11:08','2020-09-29 15:11:08','',15,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Alquiler-de-equipos.jpg',0,'attachment','image/jpeg',0),(19,2,'2020-09-29 15:11:53','2020-09-29 15:11:53','[vc_row][vc_column][construction_services_grid services_grid_number=\"-1\" services_grid_layout=\"col-sm-4 col-xs-12\" service_categories=\"Maquinaria\" services_grid_link_txt=\"Ver más\"][/vc_column][/vc_row]','Maquinarias','','inherit','closed','closed','','13-revision-v1','','','2020-09-29 15:11:53','2020-09-29 15:11:53','',13,'http://zewsdemo.com/gruposuadi/2020/09/29/13-revision-v1/',0,'revision','',0),(20,2,'2020-09-29 15:34:42','2020-09-29 15:34:42','','Header-maquinaria','','inherit','open','closed','','header-maquinaria','','','2020-09-29 15:34:42','2020-09-29 15:34:42','',15,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Header-maquinaria.jpg',0,'attachment','image/jpeg',0),(21,2,'2020-10-14 19:09:36','2020-10-14 19:09:36','<p>[vc_row][vc_column][vc_single_image image=\"18\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Equipo Pesado\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Brindamos el servicio de alquiler de equipo pesado para la ejecución de proyectos públicos y privados, en los ámbitos de la industria de la construcción que se desarrollen en todo el territorio panameño.</p>\n<p>Complementamos nuestro servicio con el mantenimiento preventivo y correctivo, la movilización y desmovilización de la maquinaria, el respaldo de operadores calificados y el abastecimiento de combustible.</p>\n<p>Nuestros equipos están asegurados, para respaldar el cumplimiento de los compromisos adquiridos.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Contáctenos\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]</p>\n','Alquiler de equipos','','inherit','closed','closed','','15-autosave-v1','','','2020-10-14 19:09:36','2020-10-14 19:09:36','',15,'http://zewsdemo.com/gruposuadi/2020/09/29/15-autosave-v1/',0,'revision','',0),(22,2,'2020-10-02 12:54:37','2020-10-02 12:54:37','[vc_row][vc_column][vc_single_image image=\"315\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Excavadoras hidráulicas\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Excavadoras hidráulicas sobre orugas de 12 ton hasta 48 ton y mini excavadoras sobre orugas de caucho de 5 ton hasta 9 ton, para facilitar las tareas de excavación de terrenos y la carga, elevación, giro y descarga de materiales.\r\n\r\n<strong>Excavadoras brazo largo o de largo alcance para realizar talud o limpieza de gran profundidad.</strong>[/vc_column_text][vc_empty_space height=\"22px\"][vc_gallery type=\"image_grid\" images=\"306,304,303\" img_size=\"medium\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Excavadoras','','publish','closed','closed','','excavadoras','','','2020-11-17 18:03:21','2020-11-17 18:03:21','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=22',0,'services','',0),(23,2,'2020-09-29 17:30:14','2020-09-29 17:30:14','','excavadoras-hidraulicas','','inherit','open','closed','','excavadoras-hidraulicas','','','2020-09-29 17:30:14','2020-09-29 17:30:14','',22,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/excavadoras-hidraulicas.jpg',0,'attachment','image/jpeg',0),(24,2,'2020-09-29 17:53:32','2020-09-29 17:53:32','','Inicio','','publish','closed','closed','','inicio','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=24',1,'nav_menu_item','',0),(25,2,'2020-09-29 17:53:32','2020-09-29 17:53:32',' ','','','publish','closed','closed','','25','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=25',3,'nav_menu_item','',0),(26,2,'2020-10-02 11:04:11','2020-10-02 11:04:11','[vc_row][vc_column][vc_single_image image=\"262\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Tractores oruga\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Tractores sobre orugas tipo D4, D5 y D6, para sus trabajos de excavación y empuje, en la construcción de obras residenciales, grandes edificios, represas, caminos y carreteras.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Tractores sobre Oruga','','publish','closed','closed','','tractores-sobre-oruga','','','2020-11-17 18:13:03','2020-11-17 18:13:03','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=26',0,'services','',0),(27,2,'2020-09-29 18:03:27','2020-09-29 18:03:27','','Alquiler de Tractores bulldozer','','inherit','open','closed','','tractores-bulldozer','','','2020-09-29 18:03:48','2020-09-29 18:03:48','',26,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Tractores-bulldozer.jpg',0,'attachment','image/jpeg',0),(28,2,'2020-10-02 10:27:31','2020-10-02 10:27:31','[vc_row][vc_column][vc_single_image image=\"60\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Camiones articulados\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Con la versatilidad y la capacidad requerida para mover materiales de grandes excavaciones, en el desarrollo de proyectos de construcción de viviendas, edificios empresariales e institucionales, represas, puentes, caminos y carreteras.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Camiones articulados','','publish','closed','closed','','camiones-articulados','','','2020-11-17 18:13:37','2020-11-17 18:13:37','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=28',0,'services','',0),(30,2,'2020-09-29 18:26:59','2020-09-29 18:26:59','','alquiler-camiones-articulados','','inherit','open','closed','','alquiler-camiones-articulados-2','','','2020-09-29 18:26:59','2020-09-29 18:26:59','',28,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/alquiler-camiones-articulados-1.jpg',0,'attachment','image/jpeg',0),(31,2,'2020-10-02 09:37:29','2020-10-02 09:37:29','[vc_row][vc_column][vc_single_image image=\"261\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Retroexcavadoras 4x4\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Poderosas retroexcavadoras 4x4, variante de la excavadora, de gran utilidad para el movimiento de tierras, construir rampas en solares, abrir zanjas para la instalación de tuberías, cables y drenajes y preparar el terreno en que se asientan las bases de un edificio.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Retroexcavadoras','','publish','closed','closed','','retroexcavadoras','','','2020-11-17 18:14:18','2020-11-17 18:14:18','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=31',0,'services','',0),(32,2,'2020-09-29 20:18:47','2020-09-29 20:18:47','[vc_row][vc_column][vc_single_image image=\"30\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Retroexcavadoras \" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Poderosas retroexcavadoras 4x4, variante de la excavadora, de gran utilidad para el movimiento de tierras, construir rampas en solares, abrir zanjas para la instalación de tuberías, cables y drenajes y preparar el terreno en que se asientan las bases de un edificio.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Contáctenos\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Retroexcavadoras','','inherit','closed','closed','','31-autosave-v1','','','2020-09-29 20:18:47','2020-09-29 20:18:47','',31,'http://zewsdemo.com/gruposuadi/2020/09/29/31-autosave-v1/',0,'revision','',0),(33,2,'2020-09-29 20:19:45','2020-09-29 20:19:45','','Alquiler-Retroexcavadoras','','inherit','open','closed','','alquiler-retroexcavadoras','','','2020-09-29 20:19:45','2020-09-29 20:19:45','',31,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Alquiler-Retroexcavadoras.jpg',0,'attachment','image/jpeg',0),(34,2,'2020-10-02 08:38:53','2020-10-02 08:38:53','[vc_row][vc_column][vc_single_image image=\"312\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Compactadoras\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Esencial, en la construcción de obras civiles, para la compactación de suelos y pavimentos. Tenemos a su servicio la apisonadora estática de rodillos fijos y la apisonadora estática de rodillo de patas apisonadoras, o de piña, especial para la compactación de materiales pegadizos, como la arcilla.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Compactadora lisa o de piña','','publish','closed','closed','','compactadora-lisa-o-de-pina','','','2020-11-17 18:15:04','2020-11-17 18:15:04','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=34',0,'services','',0),(35,2,'2020-10-02 14:38:25','2020-10-02 14:38:25','','Compactadoras','','inherit','open','closed','','compactadoras','','','2020-10-02 14:38:25','2020-10-02 14:38:25','',34,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Compactadoras.jpg',0,'attachment','image/jpeg',0),(36,2,'2020-10-02 14:39:53','2020-10-02 14:39:53','','Alquiler-Retroexcavadoras1','','inherit','open','closed','','alquiler-retroexcavadoras1','','','2020-10-02 14:39:53','2020-10-02 14:39:53','',31,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Alquiler-Retroexcavadoras1.jpg',0,'attachment','image/jpeg',0),(37,2,'2020-10-02 14:41:24','2020-10-02 14:41:24','','Retro-escavadoras','','inherit','open','closed','','retro-escavadoras','','','2020-10-02 14:41:24','2020-10-02 14:41:24','',31,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Retro-escavadoras.jpg',0,'attachment','image/jpeg',0),(38,2,'2020-10-01 15:09:04','2020-10-01 15:09:04','[vc_row][vc_column][vc_single_image image=\"263\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Motoniveladoras\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]La máquina de ingeniería civil diseñada con la versatilidad necesaria para la nivelación de suelos, construcción de carreteras y caminos, construcción y limpieza de canales y perfilar taludes y cunetas de caminos.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Motoniveladoras o cuchillas','','publish','closed','closed','','motoniveladoras-o-cuchillas','','','2020-11-17 18:15:39','2020-11-17 18:15:39','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=38',0,'services','',0),(39,2,'2020-10-02 15:19:19','2020-10-02 15:19:19','','Motoniveladoras','','inherit','open','closed','','motoniveladoras','','','2020-10-02 15:19:19','2020-10-02 15:19:19','',38,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Motoniveladoras.jpg',0,'attachment','image/jpeg',0),(40,2,'2020-10-01 14:36:23','2020-10-01 14:36:23','[vc_row][vc_column][vc_single_image image=\"314\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Cargadores frontales\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Tractores con cuchara frontal de gran utilidad para cargar materiales como piedra, arena y tierra. Muy utilizados en canteras o con trituradoras donde se acumula gran cantidad de material para ser trasladado de un lugar cercano a otro, o para movilizar en camiones o vagonetas.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Cargadores frontales','','publish','closed','closed','','cargadores-frontales','','','2020-11-17 20:49:34','2020-11-17 20:49:34','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=40',0,'services','',0),(41,2,'2020-10-02 15:34:55','2020-10-02 15:34:55','','Cargadores-frontales','','inherit','open','closed','','cargadores-frontales','','','2020-10-02 15:34:55','2020-10-02 15:34:55','',40,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Cargadores-frontales.jpg',0,'attachment','image/jpeg',0),(42,2,'2020-10-01 13:51:10','2020-10-01 13:51:10','[vc_row][vc_column][vc_single_image image=\"313\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Perforadoras\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Pala martillo y retro martillos desde 5 toneladas hasta 25 toneladas. Opcional minipalas o retros con fresadoras hasta 9 toneladas.\r\n\r\nEquipo utilizado como perforadoras de roca de alto desempeño en aplicaciones como la minería, construcción y obras viales. Con dispositivos de rotación y sistemas de perforación auto sincronizados.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Pala Martillo y Retro Martillo','','publish','closed','closed','','pala-martillo-y-retro-martillo','','','2020-11-17 18:19:16','2020-11-17 18:19:16','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=42',0,'services','',0),(43,2,'2020-10-02 15:50:09','2020-10-02 15:50:09','','Perforadoras o track drill','','inherit','open','closed','','perforadoras-track-drill','','','2020-10-02 15:50:17','2020-10-02 15:50:17','',42,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Perforadoras-track-drill.jpg',0,'attachment','image/jpeg',0),(44,2,'2020-10-01 12:09:05','2020-10-01 12:09:05','[vc_row][vc_column][vc_single_image image=\"265\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Dumpers\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Son pequeños equipos rodantes que transportan más o menos 3,5 m3 de material en recorridos cortos. Pueden dumpear hacia atrás o hacia un lado.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Dumpers','','publish','closed','closed','','dumpers','','','2020-11-17 18:21:11','2020-11-17 18:21:11','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=44',0,'services','',0),(45,2,'2020-10-02 16:08:48','2020-10-02 16:08:48','','compresores-de-aire','','inherit','open','closed','','compresores-de-aire','','','2020-10-02 16:08:48','2020-10-02 16:08:48','',44,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compresores-de-aire.jpg',0,'attachment','image/jpeg',0),(46,2,'2020-10-01 11:23:34','2020-10-01 11:23:34','[vc_row][vc_column][vc_single_image image=\"309\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Grúas de plataforma\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Conocidas como grúas de plataforma, con capacidad para elevar maquinaria de considerable volumen y peso.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Camiones grúas plataforma','','publish','closed','closed','','camiones-gruas-plataforma','','','2020-11-17 18:21:21','2020-11-17 18:21:21','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=46',0,'services','',0),(48,2,'2020-10-02 16:41:40','2020-10-02 16:41:40','','Camiones-plataforma','','inherit','open','closed','','camiones-plataforma','','','2020-10-02 16:41:40','2020-10-02 16:41:40','',46,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-plataforma.jpg',0,'attachment','image/jpeg',0),(49,2,'2020-11-02 16:59:43','2020-11-02 16:59:43','<p>[vc_row][vc_column][vc_single_image image=\"48\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Grúas de plataforma\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Conocidas como grúas de plataforma, con capacidad para elevar maquinaria de considerable volumen y peso.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]</p>\n','Camiones grúas plataforma','','inherit','closed','closed','','46-autosave-v1','','','2020-11-02 16:59:43','2020-11-02 16:59:43','',46,'http://zewsdemo.com/gruposuadi/2020/10/02/46-autosave-v1/',0,'revision','',0),(50,2,'2020-10-02 16:45:38','2020-10-02 16:45:38','','Compactadoras-1','','inherit','open','closed','','compactadoras-1','','','2020-10-02 16:45:38','2020-10-02 16:45:38','',34,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Compactadoras-1.jpg',0,'attachment','image/jpeg',0),(51,2,'2020-10-02 16:52:09','2020-10-02 16:52:09','','Motoniveladoras-1','','inherit','open','closed','','motoniveladoras-1','','','2020-10-02 16:52:09','2020-10-02 16:52:09','',38,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Motoniveladoras-1.jpg',0,'attachment','image/jpeg',0),(52,2,'2020-10-02 16:59:34','2020-10-02 16:59:34','','Tractores-bulldozer--1','','inherit','open','closed','','tractores-bulldozer-1','','','2020-10-02 16:59:34','2020-10-02 16:59:34','',38,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Tractores-bulldozer-1.jpg',0,'attachment','image/jpeg',0),(53,2,'2020-10-01 10:24:23','2020-10-01 10:24:23','[vc_row][vc_column][vc_single_image image=\"54\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Camiones cisterna\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Con nuestros camiones cisterna acaba la escasez de agua que se requieran durante la construcción de una obra civil.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Camiones cisterna','','publish','closed','closed','','camiones-cisterna','','','2020-11-17 18:22:16','2020-11-17 18:22:16','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=53',0,'services','',0),(54,2,'2020-10-02 18:23:58','2020-10-02 18:23:58','','Camiones-cisterna','','inherit','open','closed','','camiones-cisterna','','','2020-10-02 18:23:58','2020-10-02 18:23:58','',53,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-cisterna.jpg',0,'attachment','image/jpeg',0),(55,2,'2020-10-01 09:43:04','2020-10-01 09:43:04','[vc_row][vc_column][vc_single_image image=\"56\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Telehanders\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]El manipulador telescópico, conocido como “telehanders”, de particular utilidad en la industria y la construcción, gracias a la versatilidad del brazo telescópico, cuya capacidad para extenderse hacia adelante y hacia arriba, desde el vehículo, llega a los sitios donde otras máquinas no pueden hacerlo.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Telehanders','','publish','closed','closed','','telehanders','','','2020-11-17 18:22:36','2020-11-17 18:22:36','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=55',0,'services','',0),(56,2,'2020-10-02 18:42:23','2020-10-02 18:42:23','','Telehanders','','inherit','open','closed','','telehanders','','','2020-10-02 18:42:23','2020-10-02 18:42:23','',55,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Telehanders.jpg',0,'attachment','image/jpeg',0),(57,2,'2020-10-01 08:58:32','2020-10-01 08:58:32','[vc_row][vc_column][vc_single_image image=\"267\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Hormigonera\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Hormigonera autocargante con rendimiento de 2,5 m³. Excelente dosificación y homogeneidad de la mezcla lo que realiza un concreto de alta calidad. Excelente para trabajar en lugares reducidos. Rinde 2,0 m3 en un ciclo de 30 minutos aproximadamente.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Hormigonera auto cargante','','publish','closed','closed','','hormigonera-auto-cargante','','','2020-11-17 18:23:00','2020-11-17 18:23:00','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=57',0,'services','',0),(58,2,'2020-10-02 18:58:09','2020-10-02 18:58:09','','Hormigonera','','inherit','open','closed','','hormigonera','','','2020-10-02 18:58:09','2020-10-02 18:58:09','',57,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera.jpg',0,'attachment','image/jpeg',0),(59,2,'2020-11-02 17:15:40','2020-11-02 17:15:40','[vc_row][vc_column][vc_single_image image=\"58\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Hormigonera\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Hormigonera autocargante con rendimiento de 2,5 m³. Excelente dosificación y homogeneidad de la mezcla lo que realiza un concreto de alta calidad. Excelente para trabajar en lugares reducidos. Rinde 2,0 m3 en un ciclo de 30 minutos aproximadamente.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Hormigonera auto cargante','','inherit','closed','closed','','57-autosave-v1','','','2020-11-02 17:15:40','2020-11-02 17:15:40','',57,'http://zewsdemo.com/gruposuadi/2020/10/02/57-autosave-v1/',0,'revision','',0),(60,2,'2020-10-02 19:04:03','2020-10-02 19:04:03','','alquiler-camiones-articulados-1','','inherit','open','closed','','alquiler-camiones-articulados-1','','','2020-10-02 19:04:03','2020-10-02 19:04:03','',28,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/alquiler-camiones-articulados-1-1.jpg',0,'attachment','image/jpeg',0),(61,2,'2020-10-02 19:04:27','2020-10-02 19:04:27','<p>[vc_row][vc_column][vc_single_image image=\"60\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Camiones articulados\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Con la versatilidad y la capacidad requerida para mover materiales desde espacios reducidos o grandes excavaciones, en el desarrollo de proyectos de construcción de viviendas, edificios empresariales e institucionales, represas, puentes, caminos y carreteras.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Contáctenos\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]</p>\n','Camiones articulados','','inherit','closed','closed','','28-autosave-v1','','','2020-10-02 19:04:27','2020-10-02 19:04:27','',28,'http://zewsdemo.com/gruposuadi/2020/10/02/28-autosave-v1/',0,'revision','',0),(62,2,'2020-10-02 19:11:32','2020-10-02 19:11:32','<p>[vc_row][vc_column][construction_services_grid services_grid_number=\"-1\" services_grid_layout=\"col-sm-4 col-xs-12\" service_categories=\"Maquinaria\" services_grid_link_txt=\"Ver más\"][/vc_column][/vc_row]</p>\n','Maquinarias','','inherit','closed','closed','','13-autosave-v1','','','2020-10-02 19:11:32','2020-10-02 19:11:32','',13,'http://zewsdemo.com/gruposuadi/2020/10/02/13-autosave-v1/',0,'revision','',0),(63,2,'2020-10-07 15:05:50','2020-10-07 15:05:50','[vc_row][vc_column][vc_single_image image=\"67\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][vc_column_text]Realizamos todo tipo de obra civil que contribuya a mejorar la organización del territorio y el bienestar de los habitantes, como la construcción de carreteras, puentes, represas y alcantarillados.\r\n\r\nHemos materializado dos proyectos habitacionales de mil viviendas cada uno, para comunidades aborígenes y una urbanización de 20 residencias.\r\n\r\nEntre otros de nuestros proyectos representativos también se encuentra nuestra participación en el programa de expansión del Aeropuerto Internacional de Tocumen y la ampliación del cauce y construcción de berma del río Guarumo, en Chiriquí Grande.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"308\"][/vc_column][/vc_row]','Construcción de obras civiles','','publish','closed','closed','','construccion-de-obras-civiles','','','2020-11-17 18:07:36','2020-11-17 18:07:36','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=63',0,'services','',0),(67,2,'2020-10-02 21:17:28','2020-10-02 21:17:28','','construcciones-civiles','','inherit','open','closed','','construcciones-civiles','','','2020-10-02 21:17:28','2020-10-02 21:17:28','',0,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/construcciones-civiles.jpg',0,'attachment','image/jpeg',0),(68,2,'2020-10-02 21:19:42','2020-10-02 21:19:42','[vc_row][vc_column][construction_services_grid services_grid_number=\"-1\" services_grid_layout=\"col-sm-4 col-xs-12\" service_categories=\"Construcción\" services_grid_link_txt=\"Ver más\"][/vc_column][/vc_row]','Construcción','','publish','closed','closed','','construccion','','','2020-10-08 21:51:57','2020-10-08 21:51:57','',0,'http://zewsdemo.com/gruposuadi/?page_id=68',0,'page','',0),(69,2,'2020-10-02 21:19:42','2020-10-02 21:19:42','[vc_row][vc_column][construction_services_grid services_grid_number=\"-1\" services_grid_layout=\"col-sm-4 col-xs-12\" service_categories=\"Construcción\" services_grid_link_txt=\"Ver más\"][/vc_column][/vc_row]','Construcción','','inherit','closed','closed','','68-revision-v1','','','2020-10-02 21:19:42','2020-10-02 21:19:42','',68,'http://zewsdemo.com/gruposuadi/2020/10/02/68-revision-v1/',0,'revision','',0),(70,2,'2020-10-02 21:20:06','2020-10-02 21:20:06',' ','','','publish','closed','closed','','70','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=70',19,'nav_menu_item','',0),(71,2,'2020-10-07 14:47:28','2020-10-07 14:47:28','[vc_row][vc_column][vc_single_image image=\"72\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][vc_column_text]Realizamos todo tipo de obra civil que contribuya a mejorar la organización del territorio y el bienestar de los habitantes, como la construcción de carreteras, puentes, represas y alcantarillados.\r\n\r\nHemos materializado dos proyectos habitacionales de mil viviendas cada uno, para comunidades aborígenes y una urbanización de 20 residencias.\r\n\r\nEntre otros de nuestros proyectos representativos también se encuentra nuestra participación en el programa de expansión del Aeropuerto Internacional de Tocumen y la ampliación del cauce y construcción de berma del río Guarumo, en Chiriquí Grande.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"308\"][/vc_column][/vc_row]','Construcción y mantenimiento de hidroeléctricas','','publish','closed','closed','','construccion-y-mantenimiento-de-hidroelectricas','','','2020-11-17 18:07:49','2020-11-17 18:07:49','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=71',0,'services','',0),(72,2,'2020-10-02 21:46:28','2020-10-02 21:46:28','','Construccon-hidroelectricas','','inherit','open','closed','','construccon-hidroelectricas','','','2020-10-02 21:46:28','2020-10-02 21:46:28','',71,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccon-hidroelectricas.jpg',0,'attachment','image/jpeg',0),(73,2,'2020-10-07 13:05:45','2020-10-07 13:05:45','[vc_row][vc_column][vc_single_image image=\"296\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][vc_column_text]Contamos con la maquinaria, el equipo humano y la logística, para desarrollar proyectos de infraestructura vial que contribuyan en la conectividad terrestre de Panamá, para el transporte de personas y de carga, con el consecuente apoyo a la economía y el desarrollo productivo del país.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_gallery type=\"image_grid\" images=\"286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"308\"][/vc_column][/vc_row]','Construcción de infraestructura vial','','publish','closed','closed','','construccion-de-infraestructura-vial','','','2020-11-17 18:08:04','2020-11-17 18:08:04','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=73',0,'services','',0),(74,2,'2020-10-02 22:05:12','2020-10-02 22:05:12','','infraestructura-vial','','inherit','open','closed','','infraestructura-vial','','','2020-10-02 22:05:12','2020-10-02 22:05:12','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial.jpg',0,'attachment','image/jpeg',0),(75,2,'2020-10-07 12:13:57','2020-10-07 12:13:57','[vc_row][vc_column][vc_single_image image=\"76\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][vc_column_text]Tenemos a disposición de los sectores público y privado nuestro servicio de construcción de puentes y carreteras, factores fundamentales para el desarrollo económico y social de Panamá y el mejoramiento de la calidad de vida de los panameños.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"308\"][/vc_column][/vc_row]','Construcción de puentes y carreteras','','publish','closed','closed','','construccion-de-puentes-y-carreteras','','','2020-11-17 18:08:29','2020-11-17 18:08:29','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=75',0,'services','',0),(76,2,'2020-10-07 17:13:26','2020-10-07 17:13:26','','Construccion-puentes','','inherit','open','closed','','construccion-puentes','','','2020-10-07 17:13:26','2020-10-07 17:13:26','',75,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-puentes.jpg',0,'attachment','image/jpeg',0),(77,2,'2020-10-07 11:20:51','2020-10-07 11:20:51','[vc_row][vc_column][vc_single_image image=\"78\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][vc_column_text]Construimos galeras y edificios institucionales y empresariales, con estricto apego a las normas nacionales e internacionales que rigen la construcción, en la República de Panamá.\r\n\r\nUno de nuestros proyectos representativos es la construcción del Programa de Expansión del Aeropuerto Internacional de Tocumen, desarrollado durante el período 2012-2014.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"308\"][/vc_column][/vc_row]','Construcción de galeras y edificios','','publish','closed','closed','','construccion-de-galeras-y-edificios','','','2020-11-17 18:09:34','2020-11-17 18:09:34','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=77',0,'services','',0),(78,2,'2020-10-07 17:20:02','2020-10-07 17:20:02','','Construccion-galeras-edificios','','inherit','open','closed','','construccion-galeras-edificios','','','2020-10-07 17:20:02','2020-10-07 17:20:02','',77,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-galeras-edificios.jpg',0,'attachment','image/jpeg',0),(79,2,'2020-10-07 10:53:36','2020-10-07 10:53:36','[vc_row][vc_column][vc_single_image image=\"270\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Construcción de proyectos residenciales y proyectos macro de interés social\" heading_size=\"40\"][vc_column_text]La construcción de dos proyectos de mil viviendas de interés social del Programa Techos de Esperanza, del Ministerio de Vivienda y Ordenamiento Territorial , para la comunidad NGÖBE BUBLÉ, uno en el distrito de Besiko y Minoro y el otro en el distrito de Muná, documentan nuestra capacidad en la ejecución de proyectos macro de interés social.\r\n\r\nOtro proyecto representativo de nuestra obra residencial es la construcción de la Urbanización Jardines de Las Perlas, David, Chiriquí, constituido por 22 casas unifamiliares.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_gallery type=\"image_grid\" images=\"284,282,278,280,271,272,273,274,275,276,277,279,281,283\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"308\"][/vc_column][/vc_row]','Construcción de proyectos residenciales y proyectos macro de interés social','','publish','closed','closed','','construccion-de-proyectos-residenciales-y-proyectos-de-interes-social','','','2020-11-17 18:10:39','2020-11-17 18:10:39','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=79',0,'services','',0),(80,2,'2020-10-07 17:52:57','2020-10-07 17:52:57','','Residenciales-interes-social','','inherit','open','closed','','residenciales-interes-social','','','2020-10-07 17:52:57','2020-10-07 17:52:57','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Residenciales-interes-social.jpg',0,'attachment','image/jpeg',0),(81,2,'2020-11-02 17:55:29','2020-11-02 17:55:29','<p>[vc_row][vc_column][vc_single_image image=\"270\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Construcción de proyectos residenciales y proyectos macro de interés social\" heading_size=\"40\"][vc_column_text]La construcción de dos proyectos de mil viviendas de interés social del Programa Techos de Esperanza, del Ministerio de Vivienda y Ordenamiento Territorial , para la comunidad NGÖBE BUBLÉ, uno en el distrito de Besiko y Minoro y el otro en el distrito de Muná, documentan nuestra capacidad en la ejecución de proyectos macro de interés social.</p>\n<p>Otro proyecto representativo de nuestra obra residencial es la construcción de la Urbanización Jardines de Las Perlas, David, Chiriquí, constituido por 22 casas unifamiliares.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_gallery][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]</p>\n','Construcción de proyectos residenciales y proyectos macro de interés social','','inherit','closed','closed','','79-autosave-v1','','','2020-11-02 17:55:29','2020-11-02 17:55:29','',79,'http://zewsdemo.com/gruposuadi/2020/10/07/79-autosave-v1/',0,'revision','',0),(82,2,'2020-10-07 09:09:59','2020-10-07 09:09:59','[vc_row][vc_column][vc_single_image image=\"83\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Instalación de tuberías para sistemas de acueducto y alcantarillado\" heading_size=\"40\"][vc_column_text]Contamos con la maquinaria, el equipo profesional y técnico y la logística para la ejecución de proyectos de instalación de tuberías para sistemas de acueductos y alcantarillado.\r\n\r\nEntre las obras modelo que hemos ejecutado se encuentra el Proyecto de Agua Potable del Grupo Obras 2, ubicado en Línea María Henríquez-Gonzalillo, Línea Oriente II, San Miguelito/Pedregal.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"308\"][/vc_column][/vc_row]','Instalación de tuberías para sistemas de acueducto y alcantarillado','','publish','closed','closed','','instalacion-de-tuberias-para-sistemas-de-acueducto-y-alcantarillado','','','2020-11-17 18:10:56','2020-11-17 18:10:56','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=82',0,'services','',0),(83,2,'2020-10-07 18:18:04','2020-10-07 18:18:04','','Instalacion-de-tuberias','','inherit','open','closed','','instalacion-de-tuberias','','','2020-10-07 18:18:04','2020-10-07 18:18:04','',82,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Instalacion-de-tuberias.jpg',0,'attachment','image/jpeg',0),(84,2,'2020-10-14 21:06:16','2020-10-14 21:06:16','[vc_row][vc_column][vc_single_image image=\"83\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Instalación de tuberías para sistemas de acueducto y alcantarillado\" heading_size=\"40\"][vc_column_text]Contamos con la maquinaria, el equipo profesional y técnico y la logística para la ejecución de proyectos de instalación de tuberías para sistemas de acueductos y alcantarillado.\n\nEntre las obras modelo que hemos ejecutado se encuentra el Proyecto de Agua Potable del Grupo Obras 2, ubicado en Línea María Henríquez-Gonzalillo, Línea Oriente II, San Miguelito/Pedregal.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Contáctenos\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Instalación de tuberías para sistemas de acueducto y alcantarillado','','inherit','closed','closed','','82-autosave-v1','','','2020-10-14 21:06:16','2020-10-14 21:06:16','',82,'http://zewsdemo.com/gruposuadi/2020/10/07/82-autosave-v1/',0,'revision','',0),(85,2,'2020-10-07 08:42:43','2020-10-07 08:42:43','[vc_row][vc_column][vc_single_image image=\"83\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][vc_column_text]Concebimos el buen estado de las carreteras y los caminos como una de las tareas prioritarias de la Administración Pública, para mejorar las condiciones económicas y sociales de nuestro país.\r\n\r\nContamos con el personal capacitado y equipos especializados para el mejoramiento de caminos, entre los cuales se encuentran: recicladora, dosificadora y distribuidora de ligantes, fresadora, tren de reciclado, medios de transporte, cisternas de riego, equipos de extendido y equipos de compactación.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"308\"][/vc_column][/vc_row]','Mejoramiento de caminos','','publish','closed','closed','','mejoramiento-de-caminos','','','2020-11-17 18:11:19','2020-11-17 18:11:19','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=85',0,'services','',0),(86,2,'2020-10-07 18:37:18','2020-10-07 18:37:18','','Mejoramiento-de-caminos','','inherit','open','closed','','mejoramiento-de-caminos-2','','','2020-10-07 18:37:18','2020-10-07 18:37:18','',85,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Mejoramiento-de-caminos.jpg',0,'attachment','image/jpeg',0),(87,2,'2020-10-07 07:47:43','2020-10-07 07:47:43','[vc_row][vc_column][vc_single_image image=\"88\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][vc_column_text]Concebimos el buen estado de las carreteras y los caminos como una de las tareas prioritarias de la Administración Pública, para mejorar las condiciones económicas y sociales de nuestro país.\r\n\r\nContamos con el personal capacitado y equipos especializados para el mejoramiento de caminos, entre los cuales se encuentran: recicladora, dosificadora y distribuidora de ligantes, fresadora, tren de reciclado, medios de transporte, cisternas de riego, equipos de extendido y equipos de compactación.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"308\"][/vc_column][/vc_row]','Movimientos de tierra','','publish','closed','closed','','movimientos-de-tierra','','','2020-11-17 18:11:40','2020-11-17 18:11:40','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=87',0,'services','',0),(88,2,'2020-10-07 18:50:16','2020-10-07 18:50:16','','Movimientos-de-tierra','','inherit','open','closed','','movimientos-de-tierra-2','','','2020-10-07 18:50:16','2020-10-07 18:50:16','',87,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Movimientos-de-tierra.jpg',0,'attachment','image/jpeg',0),(89,2,'2020-10-07 18:58:16','2020-10-07 18:58:16','[vc_row][vc_column width=\"1/2\"][vc_custom_heading text=\"ACERCA DE NOSOTROS\" font_container=\"tag:p|font_size:22|text_align:left|line_height:24px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602702322343{margin-top: -35px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"/gruposuadi/contacto/\" button_background_color=\"#ff6d00\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][vc_empty_space][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1602105863382{margin-top: 40px !important;}\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','publish','closed','closed','','nosotros','','','2020-11-17 17:45:03','2020-11-17 17:45:03','',0,'http://zewsdemo.com/gruposuadi/?page_id=89',0,'page','',0),(90,2,'2020-10-07 18:58:16','2020-10-07 18:58:16','','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 18:58:16','2020-10-07 18:58:16','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(91,2,'2020-11-17 17:44:30','2020-11-17 17:44:30','<p>[vc_row][vc_column width=\"1/2\"][vc_custom_heading text=\"ACERCA DE NOSOTROS\" font_container=\"tag:p|font_size:22|text_align:left|line_height:24px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602702322343{margin-top: -35px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.</p>\n<p>Nuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.</p>\n<p>Los rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"/gruposuadi/contacto/\" button_background_color=\"#ff6d00\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][vc_empty_space][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1602105863382{margin-top: 40px !important;}\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]</p>\n','Nosotros','','inherit','closed','closed','','89-autosave-v1','','','2020-11-17 17:44:30','2020-11-17 17:44:30','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-autosave-v1/',0,'revision','',0),(92,2,'2020-10-07 19:03:04','2020-10-07 19:03:04','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 19:03:04','2020-10-07 19:03:04','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(93,2,'2020-10-07 19:04:58','2020-10-07 19:04:58','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 19:04:58','2020-10-07 19:04:58','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(94,2,'2020-10-07 20:21:03','2020-10-07 20:21:03','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner css=\".vc_custom_1602102061473{margin-top: -20px !important;}\"][vc_column_inner][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 20:21:03','2020-10-07 20:21:03','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(95,2,'2020-10-07 20:21:34','2020-10-07 20:21:34','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102092944{margin-top: -20px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 20:21:34','2020-10-07 20:21:34','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(96,2,'2020-10-07 20:22:14','2020-10-07 20:22:14','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 20:22:14','2020-10-07 20:22:14','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(97,2,'2020-10-07 20:36:53','2020-10-07 20:36:53','','GrupoSuadi-Panama','','inherit','open','closed','','gruposuadi-panama','','','2020-10-07 20:36:53','2020-10-07 20:36:53','',89,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/GrupoSuadi-Panama.jpg',0,'attachment','image/jpeg',0),(98,2,'2020-10-07 20:37:14','2020-10-07 20:37:14','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"97\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 20:37:14','2020-10-07 20:37:14','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(99,2,'2020-10-07 21:05:56','2020-10-07 21:05:56','','GrupoSuadi-Panama-1','','inherit','open','closed','','gruposuadi-panama-1','','','2020-10-07 21:05:56','2020-10-07 21:05:56','',89,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/GrupoSuadi-Panama-1.jpg',0,'attachment','image/jpeg',0),(100,2,'2020-10-07 21:06:09','2020-10-07 21:06:09','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 21:06:09','2020-10-07 21:06:09','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(101,2,'2020-10-07 21:07:28','2020-10-07 21:07:28','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_medium\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"#\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 21:07:28','2020-10-07 21:07:28','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(102,2,'2020-10-07 21:07:50','2020-10-07 21:07:50','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"#\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 21:07:50','2020-10-07 21:07:50','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(103,2,'2020-10-07 21:09:56','2020-10-07 21:09:56','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"#\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][construction_featured_box featured_box_dimensions=\"360x250\" featured_box_image=\"97\" featured_box_title=\"Misión\" featured_box_text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente. \"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 21:09:56','2020-10-07 21:09:56','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(104,2,'2020-10-07 21:16:34','2020-10-07 21:16:34','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"#\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][construction_featured_box featured_box_dimensions=\"full\" featured_box_image=\"97\" featured_box_title=\"Misión\" featured_box_text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 21:16:34','2020-10-07 21:16:34','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(105,2,'2020-10-07 21:18:42','2020-10-07 21:18:42','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"#\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 21:18:42','2020-10-07 21:18:42','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(106,2,'2020-10-07 21:21:05','2020-10-07 21:21:05','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"#\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_icon_box icon_box_size=\"medium\" icon_box_radius=\"rounded\" icon_box_icon_margin=\"5\" icon_box_center=\"left-align\" icon_box_icon_left=\"icon-top\" icon_box_background=\"bg-active\" icon_box_icon=\"fas fa-bell\" icon_box_title=\"Visión\" icon_box_text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional. \"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 21:21:05','2020-10-07 21:21:05','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(107,2,'2020-10-07 21:21:38','2020-10-07 21:21:38','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"#\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_icon_box icon_box_size=\"medium\" icon_box_radius=\"rounded\" icon_box_icon_margin=\"5\" icon_box_center=\"left-align\" icon_box_icon_left=\"icon-top\" icon_box_background=\"bg-active\" icon_box_icon=\"fas fa-spider\" icon_box_title=\"Visión\" icon_box_text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 21:21:38','2020-10-07 21:21:38','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(108,2,'2020-10-07 21:22:42','2020-10-07 21:22:42','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"#\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional. \" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 21:22:42','2020-10-07 21:22:42','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(109,2,'2020-10-07 21:23:03','2020-10-07 21:23:03','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"#\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 21:23:03','2020-10-07 21:23:03','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(110,2,'2020-10-07 21:24:27','2020-10-07 21:24:27','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"#\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1602105863382{margin-top: 40px !important;}\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-07 21:24:27','2020-10-07 21:24:27','',89,'http://zewsdemo.com/gruposuadi/2020/10/07/89-revision-v1/',0,'revision','',0),(111,2,'2020-10-07 21:27:17','2020-10-07 21:27:17',' ','','','publish','closed','closed','','111','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=111',2,'nav_menu_item','',0),(112,2,'2020-10-07 21:28:23','2020-10-07 21:28:23','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fmaquinarias%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fconstruccion%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_custom_heading text=\"Contamos con un sistema de gestión integral, para la <strong>construcción de obras civiles</strong> y brindamos el servicio de <strong>renta de equipo pesado</strong> para la construcción de obras.\" font_container=\"tag:p|font_size:22|text_align:left|line_height:32px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:400%20regular%3A400%3Anormal\"][vc_column_text]En materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1602800290952{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:22|text_align:left|line_height:24px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','publish','closed','closed','','inicio','','','2020-11-17 17:34:06','2020-11-17 17:34:06','',0,'http://zewsdemo.com/gruposuadi/?page_id=112',0,'page','',0),(113,2,'2020-10-07 21:28:23','2020-10-07 21:28:23','','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-07 21:28:23','2020-10-07 21:28:23','',112,'http://zewsdemo.com/gruposuadi/2020/10/07/112-revision-v1/',0,'revision','',0),(114,2,'2020-10-07 21:29:42','2020-10-07 21:29:42','[vc_row][vc_column][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"3\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"true\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver más\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-07 21:29:42','2020-10-07 21:29:42','',112,'http://zewsdemo.com/gruposuadi/2020/10/07/112-revision-v1/',0,'revision','',0),(115,2,'2020-10-07 21:32:44','2020-10-07 21:32:44','[vc_row][vc_column][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"true\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver más\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-07 21:32:44','2020-10-07 21:32:44','',112,'http://zewsdemo.com/gruposuadi/2020/10/07/112-revision-v1/',0,'revision','',0),(117,2,'2020-10-07 21:34:43','2020-10-07 21:34:43','[vc_row][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"true\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver más\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-07 21:34:43','2020-10-07 21:34:43','',112,'http://zewsdemo.com/gruposuadi/2020/10/07/112-revision-v1/',0,'revision','',0),(118,2,'2020-10-07 21:35:53','2020-10-07 21:35:53','[vc_row][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver más\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-07 21:35:53','2020-10-07 21:35:53','',112,'http://zewsdemo.com/gruposuadi/2020/10/07/112-revision-v1/',0,'revision','',0),(119,2,'2020-10-07 21:49:44','2020-10-07 21:49:44','','Slide01-Suadi','','inherit','open','closed','','slide01-suadi','','','2020-10-07 21:49:44','2020-10-07 21:49:44','',0,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg',0,'attachment','image/jpeg',0),(120,2,'2020-10-07 22:00:16','2020-10-07 22:00:16','[vc_row][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\" offset=\"\"][/vc_column][/vc_row][vc_row][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver más\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-07 22:00:16','2020-10-07 22:00:16','',112,'http://zewsdemo.com/gruposuadi/2020/10/07/112-revision-v1/',0,'revision','',0),(121,2,'2020-10-07 22:00:58','2020-10-07 22:00:58','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver más\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-07 22:00:58','2020-10-07 22:00:58','',112,'http://zewsdemo.com/gruposuadi/2020/10/07/112-revision-v1/',0,'revision','',0),(122,2,'2020-10-07 22:06:26','2020-10-07 22:06:26','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver más\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-07 22:06:26','2020-10-07 22:06:26','',112,'http://zewsdemo.com/gruposuadi/2020/10/07/112-revision-v1/',0,'revision','',0),(123,2,'2020-10-07 22:07:04','2020-10-07 22:07:04','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-07 22:07:04','2020-10-07 22:07:04','',112,'http://zewsdemo.com/gruposuadi/2020/10/07/112-revision-v1/',0,'revision','',0),(124,2,'2020-10-08 14:03:17','2020-10-08 14:03:17','[vc_row][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:03:17','2020-10-08 14:03:17','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(125,2,'2020-10-08 14:03:45','2020-10-08 14:03:45','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:03:45','2020-10-08 14:03:45','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(126,2,'2020-10-08 14:09:38','2020-10-08 14:09:38','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:09:38','2020-10-08 14:09:38','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(127,2,'2020-10-08 14:21:56','2020-10-08 14:21:56','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_hoverbox image=\"119\" hover_title=\"Hola\" hover_background_color=\"juicy-pink\" reverse=\"true\"]Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_hoverbox][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:21:56','2020-10-08 14:21:56','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(128,2,'2020-10-08 14:22:39','2020-10-08 14:22:39','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_hoverbox image=\"119\" hover_title=\"Hola\" hover_background_color=\"juicy-pink\"]Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_hoverbox][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:22:39','2020-10-08 14:22:39','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(129,2,'2020-10-08 14:23:47','2020-10-08 14:23:47','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_hoverbox image=\"119\" hover_title=\"Hola\" hover_title_font_container=\"color:%23ffffff\" hover_title_use_theme_fonts=\"yes\" hover_background_color=\"black\" use_custom_fonts_hover_title=\"true\"]Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_hoverbox][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:23:47','2020-10-08 14:23:47','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(130,2,'2020-10-08 14:25:50','2020-10-08 14:25:50','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:25:50','2020-10-08 14:25:50','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(132,2,'2020-10-08 14:38:31','2020-10-08 14:38:31','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:38:31','2020-10-08 14:38:31','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(133,2,'2020-10-08 14:39:15','2020-10-08 14:39:15','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Maquinarias\" heading_size=\"40\" heading_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:39:15','2020-10-08 14:39:15','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(134,2,'2020-10-08 14:39:32','2020-10-08 14:39:32','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"center\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Maquinarias\" heading_size=\"40\" heading_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:39:32','2020-10-08 14:39:32','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(135,2,'2020-10-08 14:40:09','2020-10-08 14:40:09','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}\"][vc_empty_space][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"center\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Maquinarias\" heading_size=\"40\" heading_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:40:09','2020-10-08 14:40:09','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(136,2,'2020-10-08 14:42:28','2020-10-08 14:42:28','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}\"][vc_empty_space][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:42:28','2020-10-08 14:42:28','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(137,2,'2020-10-08 14:43:41','2020-10-08 14:43:41','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}\"][vc_empty_space][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:43:41','2020-10-08 14:43:41','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(138,2,'2020-10-08 14:44:15','2020-10-08 14:44:15','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}\"][vc_empty_space height=\"50px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"50px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:44:15','2020-10-08 14:44:15','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(139,2,'2020-10-08 14:44:58','2020-10-08 14:44:58','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602167458442{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide01-Suadi.jpg?id=119) !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 14:44:58','2020-10-08 14:44:58','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(140,2,'2020-10-08 15:11:00','2020-10-08 15:11:00','','Maquinarias-GrupoSuadi-1','','inherit','open','closed','','maquinarias-gruposuadi-1','','','2020-10-08 15:11:00','2020-10-08 15:11:00','',112,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg',0,'attachment','image/jpeg',0),(141,2,'2020-10-08 15:11:19','2020-10-08 15:11:19','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602169877281{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:11:19','2020-10-08 15:11:19','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(142,2,'2020-10-08 15:11:44','2020-10-08 15:11:44','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602169903512{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:11:44','2020-10-08 15:11:44','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(143,2,'2020-10-08 15:12:10','2020-10-08 15:12:10','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602169927673{margin-top: -100px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:12:10','2020-10-08 15:12:10','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(144,2,'2020-10-08 15:12:47','2020-10-08 15:12:47','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1602169964833{margin-top: -100px !important;}\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:12:47','2020-10-08 15:12:47','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(145,2,'2020-10-08 15:13:24','2020-10-08 15:13:24','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1602170002150{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:13:24','2020-10-08 15:13:24','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(147,2,'2020-10-08 15:14:27','2020-10-08 15:14:27','','construction-child','','publish','closed','closed','','construction-child','','','2020-10-15 13:46:26','2020-10-15 13:46:26','',0,'http://zewsdemo.com/gruposuadi/2020/10/08/construction-child/',0,'custom_css','',0),(148,2,'2020-10-08 15:14:27','2020-10-08 15:14:27','.sobre {\n z-index: 1;\n}','construction-child','','inherit','closed','closed','','147-revision-v1','','','2020-10-08 15:14:27','2020-10-08 15:14:27','',147,'http://zewsdemo.com/gruposuadi/2020/10/08/147-revision-v1/',0,'revision','',0),(149,2,'2020-10-08 15:16:48','2020-10-08 15:16:48','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1602170207289{margin-top: -100px !important;background-color: #ffffff !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:16:48','2020-10-08 15:16:48','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(150,2,'2020-10-08 15:18:34','2020-10-08 15:18:34','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1602170207289{margin-top: -100px !important;background-color: #ffffff !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:18:34','2020-10-08 15:18:34','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(151,2,'2020-10-08 15:19:52','2020-10-08 15:19:52','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1602170207289{margin-top: -100px !important;background-color: #ffffff !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602170389855{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:19:52','2020-10-08 15:19:52','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(152,2,'2020-10-08 15:23:01','2020-10-08 15:23:01','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170579599{margin-top: -100px !important;}\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602170389855{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:23:01','2020-10-08 15:23:01','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(153,2,'2020-10-08 15:23:23','2020-10-08 15:23:23','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602169957896{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602170389855{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:23:23','2020-10-08 15:23:23','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(155,2,'2020-10-08 15:25:45','2020-10-08 15:25:45','.sobre {\n z-index: 1;\n}\n.bannerhome {\n box-shadow: 0 0 0px 17px white;\n}','construction-child','','inherit','closed','closed','','147-revision-v1','','','2020-10-08 15:25:45','2020-10-08 15:25:45','',147,'http://zewsdemo.com/gruposuadi/2020/10/08/147-revision-v1/',0,'revision','',0),(156,2,'2020-10-08 15:26:24','2020-10-08 15:26:24','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner el_class=\"bannerhome\" width=\"1/2\" css=\".vc_custom_1602170777889{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner el_class=\"bannerhome\" width=\"1/2\" css=\".vc_custom_1602170771120{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:26:24','2020-10-08 15:26:24','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(157,2,'2020-10-08 15:26:57','2020-10-08 15:26:57','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602170809976{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602170815663{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:26:57','2020-10-08 15:26:57','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(158,2,'2020-10-08 15:28:11','2020-10-08 15:28:11','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602170809976{padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602170888600{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !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_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:28:11','2020-10-08 15:28:11','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(159,2,'2020-10-08 15:28:46','2020-10-08 15:28:46','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602170924408{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !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_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602170888600{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !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_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:28:46','2020-10-08 15:28:46','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(160,2,'2020-10-08 15:31:54','2020-10-08 15:31:54','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171098912{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171112151{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:31:54','2020-10-08 15:31:54','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(161,2,'2020-10-08 15:32:39','2020-10-08 15:32:39','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171112151{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:32:39','2020-10-08 15:32:39','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(162,2,'2020-10-08 15:39:29','2020-10-08 15:39:29','','Constructura-GrupoSuadi-1','','inherit','open','closed','','constructura-gruposuadi-1','','','2020-10-08 15:39:29','2020-10-08 15:39:29','',112,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg',0,'attachment','image/jpeg',0),(163,2,'2020-10-08 15:39:42','2020-10-08 15:39:42','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:39:42','2020-10-08 15:39:42','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(164,2,'2020-10-08 15:50:36','2020-10-08 15:50:36','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Construcción\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:50:36','2020-10-08 15:50:36','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(165,2,'2020-10-08 15:51:43','2020-10-08 15:51:43','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"3\" service_carousel_categories=\"Construcción\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:51:43','2020-10-08 15:51:43','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(166,2,'2020-10-08 15:52:00','2020-10-08 15:52:00','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Servicios\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:52:00','2020-10-08 15:52:00','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(167,2,'2020-10-08 15:53:41','2020-10-08 15:53:41','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:53:41','2020-10-08 15:53:41','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(168,2,'2020-10-08 15:54:04','2020-10-08 15:54:04','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:25|text_align:center\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:54:04','2020-10-08 15:54:04','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(169,2,'2020-10-08 15:54:26','2020-10-08 15:54:26','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 15:54:26','2020-10-08 15:54:26','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(170,2,'2020-10-08 17:09:33','2020-10-08 17:09:33','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 17:09:33','2020-10-08 17:09:33','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(171,2,'2020-10-08 17:10:48','2020-10-08 17:10:48','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"Maquinaria\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 17:10:48','2020-10-08 17:10:48','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(172,2,'2020-10-08 17:11:11','2020-10-08 17:11:11','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 17:11:11','2020-10-08 17:11:11','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(173,2,'2020-10-08 17:51:59','2020-10-08 17:51:59','[vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602182219543{margin-top: 50px !important;}\"][vc_column][vc_custom_heading text=\"VISÍTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_custom_heading text=\"NUESTRA UBICACIÓN\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181838970{margin-top: -10px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDY2MzcuMTkzMTIwMDcyNDM0JTIxMmQtODIuNDk4ODQ0NDQ1NTEyMjklMjEzZDguNDUwNzkyMTMyMzAwMTk2JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4OGZhNTllNjBjYjkzY2E0MSUyNTNBMHhkOTdiMGFkMjQ2YWQxNzElMjEyc0NPTlNUUlVDVE9SQSUyNTIwU1VBREklMjUyMFMuQS4lMjE1ZTAlMjEzbTIlMjExc2VzLTQxOSUyMTJzY3IlMjE0djE2MDIxODE1NjQzNjklMjE1bTIlMjExc2VzLTQxOSUyMTJzY3IlMjIlMjB3aWR0aCUzRCUyMjEwMCUyNSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row]','Contacto','','publish','closed','closed','','contacto','','','2020-10-15 14:25:51','2020-10-15 14:25:51','',0,'http://zewsdemo.com/gruposuadi/?page_id=173',0,'page','',0),(174,2,'2020-10-08 17:51:59','2020-10-08 17:51:59','','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 17:51:59','2020-10-08 17:51:59','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(175,2,'2020-10-14 20:58:14','2020-10-14 20:58:14','<p>[vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.</p>\n<p>Para más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"INFORMACIÓN DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602182219543{margin-top: 50px !important;}\"][vc_column][vc_custom_heading text=\"VISÍTENOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"NUESTRA UBICACIÓN\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181838970{margin-top: -10px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDY2MzcuMTkzMTIwMDcyNDM0JTIxMmQtODIuNDk4ODQ0NDQ1NTEyMjklMjEzZDguNDUwNzkyMTMyMzAwMTk2JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4OGZhNTllNjBjYjkzY2E0MSUyNTNBMHhkOTdiMGFkMjQ2YWQxNzElMjEyc0NPTlNUUlVDVE9SQSUyNTIwU1VBREklMjUyMFMuQS4lMjE1ZTAlMjEzbTIlMjExc2VzLTQxOSUyMTJzY3IlMjE0djE2MDIxODE1NjQzNjklMjE1bTIlMjExc2VzLTQxOSUyMTJzY3IlMjIlMjB3aWR0aCUzRCUyMjEwMCUyNSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row]</p>\n','Contacto','','inherit','closed','closed','','173-autosave-v1','','','2020-10-14 20:58:14','2020-10-14 20:58:14','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-autosave-v1/',0,'revision','',0),(176,2,'2020-10-08 17:53:41','2020-10-08 17:53:41','<div class=\"row\">\r\n<div class=\"col-sm-12\">\r\n<label> Nombre completo (requerido)\r\n [text* su-nombre] </label>\r\n\r\n<label> Correo electrónico (requerido)\r\n [email* su-email] </label>\r\n</div> <div class=\"col-sm-6\">\r\n<label> Teléfono\r\n [text su-telefono] </label>\r\n</div> <div class=\"col-sm-6\">\r\n<label> Ubicación\r\n [text su-telefono] </label>\r\n</div> <div class=\"col-sm-12\">\r\n<label> Mensaje / Comentarios\r\n [textarea su-mensaje] </label>\r\n\r\n[submit \"Enviar\"]\r\n</div>\r\n</div>\n1\nGrupo Suadi \"[your-subject]\"\nGrupo Suadi <wordpress@zewsdemo.com>\nhferreto@zews.co.cr\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 Grupo Suadi (http://zewsdemo.com/gruposuadi)\nReply-To: [your-email]\n\n\n\n\nGrupo Suadi \"[your-subject]\"\nGrupo Suadi <wordpress@zewsdemo.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Grupo Suadi (http://zewsdemo.com/gruposuadi)\nReply-To: hferreto@zews.co.cr\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.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contacto','','publish','closed','closed','','servicios_copy','','','2020-10-15 22:30:20','2020-10-15 22:30:20','',0,'http://zewsdemo.com/gruposuadi/?post_type=wpcf7_contact_form&p=176',0,'wpcf7_contact_form','',0),(177,2,'2020-10-08 17:54:07','2020-10-08 17:54:07','[vc_row][vc_column][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 17:54:07','2020-10-08 17:54:07','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(178,2,'2020-10-08 17:54:19','2020-10-08 17:54:19','[vc_row][vc_column][contact-form-7 id=\"176\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 17:54:19','2020-10-08 17:54:19','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(179,2,'2020-10-08 17:56:56','2020-10-08 17:56:56','[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"3/4\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS \" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][contact-form-7 id=\"176\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 17:56:56','2020-10-08 17:56:56','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(180,2,'2020-10-08 17:57:49','2020-10-08 17:57:49','[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"3/4\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179867890{margin-top: -40px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 17:57:49','2020-10-08 17:57:49','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(181,2,'2020-10-08 17:58:10','2020-10-08 17:58:10','[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"3/4\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179887620{margin-top: -20px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 17:58:10','2020-10-08 17:58:10','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(182,2,'2020-10-08 17:58:35','2020-10-08 17:58:35','[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"3/4\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 17:58:35','2020-10-08 17:58:35','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(183,2,'2020-10-08 18:12:55','2020-10-08 18:12:55','[vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"3/4\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:12:55','2020-10-08 18:12:55','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(184,2,'2020-10-08 18:16:26','2020-10-08 18:16:26','[vc_row][vc_column width=\"1/4\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"3/4\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:16:26','2020-10-08 18:16:26','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(185,2,'2020-10-08 18:17:00','2020-10-08 18:17:00','[vc_row][vc_column width=\"1/3\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:17:00','2020-10-08 18:17:00','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(186,2,'2020-10-08 18:19:45','2020-10-08 18:19:45','[vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:19:45','2020-10-08 18:19:45','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(187,2,'2020-10-08 18:20:00','2020-10-08 18:20:00','[vc_row gap=\"35\"][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:20:00','2020-10-08 18:20:00','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(188,2,'2020-10-08 18:20:28','2020-10-08 18:20:28','[vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:20:28','2020-10-08 18:20:28','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(189,2,'2020-10-08 18:30:56','2020-10-08 18:30:56','[vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"VISÍTENOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"NUESTRA UBICACIÓN\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181838970{margin-top: -10px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDY2MzcuMTkzMTIwMDcyNDM0JTIxMmQtODIuNDk4ODQ0NDQ1NTEyMjklMjEzZDguNDUwNzkyMTMyMzAwMTk2JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4OGZhNTllNjBjYjkzY2E0MSUyNTNBMHhkOTdiMGFkMjQ2YWQxNzElMjEyc0NPTlNUUlVDVE9SQSUyNTIwU1VBREklMjUyMFMuQS4lMjE1ZTAlMjEzbTIlMjExc2VzLTQxOSUyMTJzY3IlMjE0djE2MDIxODE1NjQzNjklMjE1bTIlMjExc2VzLTQxOSUyMTJzY3IlMjIlMjB3aWR0aCUzRCUyMjEwMCUyNSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:30:56','2020-10-08 18:30:56','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(190,2,'2020-10-08 18:33:21','2020-10-08 18:33:21','[vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"VISÍTENOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"NUESTRA UBICACIÓN\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181838970{margin-top: -10px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDY2MzcuMTkzMTIwMDcyNDM0JTIxMmQtODIuNDk4ODQ0NDQ1NTEyMjklMjEzZDguNDUwNzkyMTMyMzAwMTk2JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4OGZhNTllNjBjYjkzY2E0MSUyNTNBMHhkOTdiMGFkMjQ2YWQxNzElMjEyc0NPTlNUUlVDVE9SQSUyNTIwU1VBREklMjUyMFMuQS4lMjE1ZTAlMjEzbTIlMjExc2VzLTQxOSUyMTJzY3IlMjE0djE2MDIxODE1NjQzNjklMjE1bTIlMjExc2VzLTQxOSUyMTJzY3IlMjIlMjB3aWR0aCUzRCUyMjEwMCUyNSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][construction_googlemaps custom_map_style=\"default\"][construction_googlemaps_marker location_type=\"location\" map_location=\"CONSTRUCTORA SUADI S.A.\"][/construction_googlemaps][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:33:21','2020-10-08 18:33:21','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(191,2,'2020-10-08 18:33:46','2020-10-08 18:33:46','[vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"VISÍTENOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"NUESTRA UBICACIÓN\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181838970{margin-top: -10px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDY2MzcuMTkzMTIwMDcyNDM0JTIxMmQtODIuNDk4ODQ0NDQ1NTEyMjklMjEzZDguNDUwNzkyMTMyMzAwMTk2JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4OGZhNTllNjBjYjkzY2E0MSUyNTNBMHhkOTdiMGFkMjQ2YWQxNzElMjEyc0NPTlNUUlVDVE9SQSUyNTIwU1VBREklMjUyMFMuQS4lMjE1ZTAlMjEzbTIlMjExc2VzLTQxOSUyMTJzY3IlMjE0djE2MDIxODE1NjQzNjklMjE1bTIlMjExc2VzLTQxOSUyMTJzY3IlMjIlMjB3aWR0aCUzRCUyMjEwMCUyNSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][construction_googlemaps custom_map_style=\"default\"][construction_googlemaps_marker location_type=\"location\" map_location=\"Pan-American Highway, San Pablo Viejo Abajo, San Pablo Viejo, Panamá\"][/construction_googlemaps][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:33:46','2020-10-08 18:33:46','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(192,2,'2020-10-08 18:34:18','2020-10-08 18:34:18','[vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"VISÍTENOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"NUESTRA UBICACIÓN\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181838970{margin-top: -10px !important;}\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDY2MzcuMTkzMTIwMDcyNDM0JTIxMmQtODIuNDk4ODQ0NDQ1NTEyMjklMjEzZDguNDUwNzkyMTMyMzAwMTk2JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4OGZhNTllNjBjYjkzY2E0MSUyNTNBMHhkOTdiMGFkMjQ2YWQxNzElMjEyc0NPTlNUUlVDVE9SQSUyNTIwU1VBREklMjUyMFMuQS4lMjE1ZTAlMjEzbTIlMjExc2VzLTQxOSUyMTJzY3IlMjE0djE2MDIxODE1NjQzNjklMjE1bTIlMjExc2VzLTQxOSUyMTJzY3IlMjIlMjB3aWR0aCUzRCUyMjEwMCUyNSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][construction_googlemaps custom_map_style=\"default\" map_name=\"Saudi\"][construction_googlemaps_marker location_type=\"location\" map_location=\"Pan-American Highway, San Pablo Viejo Abajo, San Pablo Viejo, Panamá\"][/construction_googlemaps][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:34:18','2020-10-08 18:34:18','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(193,2,'2020-10-08 18:36:36','2020-10-08 18:36:36','[vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"VISÍTENOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"NUESTRA UBICACIÓN\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181838970{margin-top: -10px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDY2MzcuMTkzMTIwMDcyNDM0JTIxMmQtODIuNDk4ODQ0NDQ1NTEyMjklMjEzZDguNDUwNzkyMTMyMzAwMTk2JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4OGZhNTllNjBjYjkzY2E0MSUyNTNBMHhkOTdiMGFkMjQ2YWQxNzElMjEyc0NPTlNUUlVDVE9SQSUyNTIwU1VBREklMjUyMFMuQS4lMjE1ZTAlMjEzbTIlMjExc2VzLTQxOSUyMTJzY3IlMjE0djE2MDIxODE1NjQzNjklMjE1bTIlMjExc2VzLTQxOSUyMTJzY3IlMjIlMjB3aWR0aCUzRCUyMjEwMCUyNSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:36:36','2020-10-08 18:36:36','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(194,2,'2020-10-08 18:37:01','2020-10-08 18:37:01','[vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602182219543{margin-top: 50px !important;}\"][vc_column][vc_custom_heading text=\"VISÍTENOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"NUESTRA UBICACIÓN\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181838970{margin-top: -10px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDY2MzcuMTkzMTIwMDcyNDM0JTIxMmQtODIuNDk4ODQ0NDQ1NTEyMjklMjEzZDguNDUwNzkyMTMyMzAwMTk2JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4OGZhNTllNjBjYjkzY2E0MSUyNTNBMHhkOTdiMGFkMjQ2YWQxNzElMjEyc0NPTlNUUlVDVE9SQSUyNTIwU1VBREklMjUyMFMuQS4lMjE1ZTAlMjEzbTIlMjExc2VzLTQxOSUyMTJzY3IlMjE0djE2MDIxODE1NjQzNjklMjE1bTIlMjExc2VzLTQxOSUyMTJzY3IlMjIlMjB3aWR0aCUzRCUyMjEwMCUyNSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-08 18:37:01','2020-10-08 18:37:01','',173,'http://zewsdemo.com/gruposuadi/2020/10/08/173-revision-v1/',0,'revision','',0),(195,2,'2020-10-08 18:37:39','2020-10-08 18:37:39',' ','','','publish','closed','closed','','195','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=195',30,'nav_menu_item','',0),(196,2,'2020-10-08 20:42:28','2020-10-08 20:42:28','','Slide02-Suadi','','inherit','open','closed','','slide02-suadi','','','2020-10-08 20:42:28','2020-10-08 20:42:28','',0,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Slide02-Suadi.jpg',0,'attachment','image/jpeg',0),(197,2,'2020-10-08 20:51:59','2020-10-08 20:51:59','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"El Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"/gruposuadi/contacto/\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1602105863382{margin-top: 40px !important;}\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-08 20:51:59','2020-10-08 20:51:59','',89,'http://zewsdemo.com/gruposuadi/2020/10/08/89-revision-v1/',0,'revision','',0),(198,2,'2020-10-08 21:24:57','2020-10-08 21:24:57','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:p|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 21:24:57','2020-10-08 21:24:57','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(199,2,'2020-10-08 21:26:45','2020-10-08 21:26:45','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 21:26:45','2020-10-08 21:26:45','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(200,2,'2020-10-08 21:32:36','2020-10-08 21:32:36','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 21:32:36','2020-10-08 21:32:36','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(201,2,'2020-10-08 21:50:17','2020-10-08 21:50:17','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fconstruccion%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 21:50:17','2020-10-08 21:50:17','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(202,2,'2020-10-08 21:50:48','2020-10-08 21:50:48','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fmaquinarias%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fconstruccion%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:25|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-08 21:50:48','2020-10-08 21:50:48','',112,'http://zewsdemo.com/gruposuadi/2020/10/08/112-revision-v1/',0,'revision','',0),(203,2,'2020-10-14 19:03:34','2020-10-14 19:03:34','[vc_row][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"100\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Acerca de nosotros\" heading_size=\"25\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"/gruposuadi/contacto/\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1602105863382{margin-top: 40px !important;}\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-14 19:03:34','2020-10-14 19:03:34','',89,'http://zewsdemo.com/gruposuadi/2020/10/14/89-revision-v1/',0,'revision','',0),(204,2,'2020-10-14 19:04:44','2020-10-14 19:04:44','[vc_row][vc_column width=\"1/2\"][vc_custom_heading text=\"ACERCA DE NOSOTROS\" font_container=\"tag:p|font_size:25|text_align:left|line_height:26px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:200%20light%20regular%3A200%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602102130263{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"/gruposuadi/contacto/\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1602105863382{margin-top: 40px !important;}\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-14 19:04:44','2020-10-14 19:04:44','',89,'http://zewsdemo.com/gruposuadi/2020/10/14/89-revision-v1/',0,'revision','',0),(205,2,'2020-10-14 19:05:25','2020-10-14 19:05:25','[vc_row][vc_column width=\"1/2\"][vc_custom_heading text=\"ACERCA DE NOSOTROS\" font_container=\"tag:p|font_size:25|text_align:left|line_height:26px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:200%20light%20regular%3A200%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602702322343{margin-top: -35px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"/gruposuadi/contacto/\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1602105863382{margin-top: 40px !important;}\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-14 19:05:25','2020-10-14 19:05:25','',89,'http://zewsdemo.com/gruposuadi/2020/10/14/89-revision-v1/',0,'revision','',0),(206,2,'2020-10-14 19:05:56','2020-10-14 19:05:56','[vc_row][vc_column width=\"1/2\"][vc_custom_heading text=\"ACERCA DE NOSOTROS\" font_container=\"tag:p|font_size:25|text_align:left|line_height:26px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602702322343{margin-top: -35px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"/gruposuadi/contacto/\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1602105863382{margin-top: 40px !important;}\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-14 19:05:56','2020-10-14 19:05:56','',89,'http://zewsdemo.com/gruposuadi/2020/10/14/89-revision-v1/',0,'revision','',0),(207,2,'2020-10-14 19:06:18','2020-10-14 19:06:18','[vc_row][vc_column width=\"1/2\"][vc_custom_heading text=\"ACERCA DE NOSOTROS\" font_container=\"tag:p|font_size:22|text_align:left|line_height:24px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602702322343{margin-top: -35px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"/gruposuadi/contacto/\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1602105863382{margin-top: 40px !important;}\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-10-14 19:06:18','2020-10-14 19:06:18','',89,'http://zewsdemo.com/gruposuadi/2020/10/14/89-revision-v1/',0,'revision','',0),(208,2,'2020-10-14 19:07:22','2020-10-14 19:07:22','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fmaquinarias%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fconstruccion%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:22|text_align:left|line_height:24px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-14 19:07:22','2020-10-14 19:07:22','',112,'http://zewsdemo.com/gruposuadi/2020/10/14/112-revision-v1/',0,'revision','',0),(209,2,'2020-11-12 21:59:18','2020-11-12 21:59:18','<p>[vc_row][vc_column][vc_single_image image=\"258\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Excavadoras hidráulicas\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Excavadoras hidráulicas sobre orugas de 12 ton hasta 48 ton y mini excavadoras sobre orugas de caucho de 5 ton hasta 9 ton, para facilitar las tareas de excavación de terrenos y la carga, elevación, giro y descarga de materiales.</p>\n<p><strong>Excavadoras brazo largo o de largo alcance para realizar talud o limpieza de gran profundidad.</strong>[/vc_column_text][vc_gallery][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]</p>\n','Excavadoras','','inherit','closed','closed','','22-autosave-v1','','','2020-11-12 21:59:18','2020-11-12 21:59:18','',22,'http://zewsdemo.com/gruposuadi/2020/10/14/22-autosave-v1/',0,'revision','',0),(211,2,'2020-10-14 20:58:48','2020-10-14 20:58:48','[vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"INFORMACIÓN DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_custom_heading text=\"CONTACTO\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181164970{margin-top: -10px !important;}\"][vc_column_text]Contamos con años de experiencia en trabajos pesados con maquinaria y construcción de obras publicas y privadas.\r\n\r\nPara más información o cotización de proyectos contáctenos. Será un gusto poder servirle.[/vc_column_text][vc_raw_html]JTNDcCUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhJTIwZmEtcGhvbmUlMjIlM0UlM0MlMkZpJTNFJTIwJTJCNTA3JTIwNjYxMi0yNjQwJTNDJTJGcCUzRSUwQSUzQ3AlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYSUyMGZhLWVudmVsb3BlJTIyJTNFJTNDJTJGaSUzRSUyMGluZm8lNDBncnVwb3N1YWRpLmNvbSUzQyUyRnAlM0UlMEElM0NwJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1nbG9iZSUyMiUzRSUzQyUyRmklM0UlMjBWJUMzJUFEYSUyMEludGVyYW1lcmljYW5hJTJDJTIwU2FuJTIwUGFibG8lMjBWaWVqbyUyQyUyMERhdmlkJTJDJTIwQ2hpcmlxdSVDMyVBRCUyQyUyMFBhbmFtJUMzJUExLiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FORMULARIO DE CONTACTO\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_custom_heading text=\"ESCRIBANOS\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602179914019{margin-top: -10px !important;}\"][contact-form-7 id=\"176\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602182219543{margin-top: 50px !important;}\"][vc_column][vc_custom_heading text=\"VISÍTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_custom_heading text=\"NUESTRA UBICACIÓN\" font_container=\"tag:h2|font_size:40|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" css=\".vc_custom_1602181838970{margin-top: -10px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDY2MzcuMTkzMTIwMDcyNDM0JTIxMmQtODIuNDk4ODQ0NDQ1NTEyMjklMjEzZDguNDUwNzkyMTMyMzAwMTk2JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4OGZhNTllNjBjYjkzY2E0MSUyNTNBMHhkOTdiMGFkMjQ2YWQxNzElMjEyc0NPTlNUUlVDVE9SQSUyNTIwU1VBREklMjUyMFMuQS4lMjE1ZTAlMjEzbTIlMjExc2VzLTQxOSUyMTJzY3IlMjE0djE2MDIxODE1NjQzNjklMjE1bTIlMjExc2VzLTQxOSUyMTJzY3IlMjIlMjB3aWR0aCUzRCUyMjEwMCUyNSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGFyaWEtaGlkZGVuJTNEJTIyZmFsc2UlMjIlMjB0YWJpbmRleCUzRCUyMjAlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row]','Contacto','','inherit','closed','closed','','173-revision-v1','','','2020-10-14 20:58:48','2020-10-14 20:58:48','',173,'http://zewsdemo.com/gruposuadi/2020/10/14/173-revision-v1/',0,'revision','',0),(212,2,'2020-10-14 21:51:52','2020-10-14 21:51:52','','suadi-dark','','inherit','open','closed','','suadi-dark','','','2020-10-14 21:51:52','2020-10-14 21:51:52','',0,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/suadi-dark.jpg',0,'attachment','image/jpeg',0),(213,2,'2020-10-14 21:53:44','2020-10-14 21:53:44','','suadi-1','','inherit','open','closed','','suadi-1','','','2020-10-14 21:53:44','2020-10-14 21:53:44','',0,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/suadi-1.jpg',0,'attachment','image/jpeg',0),(214,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','214','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=214',4,'nav_menu_item','',0),(215,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','215','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=215',7,'nav_menu_item','',0),(216,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','216','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=216',15,'nav_menu_item','',0),(217,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','217','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=217',14,'nav_menu_item','',0),(218,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','218','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=218',11,'nav_menu_item','',0),(219,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','219','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=219',9,'nav_menu_item','',0),(220,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','220','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=220',13,'nav_menu_item','',0),(221,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','221','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=221',5,'nav_menu_item','',0),(222,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','222','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=222',17,'nav_menu_item','',0),(223,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','223','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=223',10,'nav_menu_item','',0),(224,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','224','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=224',12,'nav_menu_item','',0),(225,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','225','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=225',8,'nav_menu_item','',0),(226,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','226','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=226',16,'nav_menu_item','',0),(227,2,'2020-10-14 22:36:58','2020-10-14 22:36:58',' ','','','publish','closed','closed','','227','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=227',6,'nav_menu_item','',0),(229,2,'2020-10-15 13:46:26','2020-10-15 13:46:26','','construction-child','','inherit','closed','closed','','147-revision-v1','','','2020-10-15 13:46:26','2020-10-15 13:46:26','',147,'http://zewsdemo.com/gruposuadi/2020/10/15/147-revision-v1/',0,'revision','',0),(231,2,'2020-10-15 14:14:40','2020-10-15 14:14:40','','Header-maquinaria-2_1','','inherit','open','closed','','header-maquinaria-2_1','','','2020-10-15 14:14:40','2020-10-15 14:14:40','',89,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Header-maquinaria-2_1.jpg',0,'attachment','image/jpeg',0),(233,2,'2020-10-15 14:22:56','2020-10-15 14:22:56','','Header-maquinaria-3','','inherit','open','closed','','header-maquinaria-3','','','2020-10-15 14:22:56','2020-10-15 14:22:56','',173,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Header-maquinaria-3.jpg',0,'attachment','image/jpeg',0),(234,2,'2020-10-15 14:25:45','2020-10-15 14:25:45','','Header-maquinaria-4','','inherit','open','closed','','header-maquinaria-4','','','2020-10-15 14:25:45','2020-10-15 14:25:45','',173,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Header-maquinaria-4.jpg',0,'attachment','image/jpeg',0),(235,2,'2020-10-15 14:27:18','2020-10-15 14:27:18',' ','','','publish','closed','closed','','235','','','2020-10-15 14:27:18','2020-10-15 14:27:18','',0,'http://zewsdemo.com/gruposuadi/?p=235',1,'nav_menu_item','',0),(236,2,'2020-10-15 14:27:18','2020-10-15 14:27:18',' ','','','publish','closed','closed','','236','','','2020-10-15 14:27:18','2020-10-15 14:27:18','',0,'http://zewsdemo.com/gruposuadi/?p=236',4,'nav_menu_item','',0),(237,2,'2020-10-15 14:27:18','2020-10-15 14:27:18',' ','','','publish','closed','closed','','237','','','2020-10-15 14:27:18','2020-10-15 14:27:18','',0,'http://zewsdemo.com/gruposuadi/?p=237',5,'nav_menu_item','',0),(238,2,'2020-10-15 14:27:18','2020-10-15 14:27:18',' ','','','publish','closed','closed','','238','','','2020-10-15 14:27:18','2020-10-15 14:27:18','',0,'http://zewsdemo.com/gruposuadi/?p=238',3,'nav_menu_item','',0),(239,2,'2020-10-15 14:27:18','2020-10-15 14:27:18',' ','','','publish','closed','closed','','239','','','2020-10-15 14:27:18','2020-10-15 14:27:18','',0,'http://zewsdemo.com/gruposuadi/?p=239',2,'nav_menu_item','',0),(240,2,'2020-10-15 15:05:00','2020-10-15 15:05:00','','Blog','','publish','closed','closed','','blog','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=240',29,'nav_menu_item','',0),(241,2,'2020-10-15 15:08:29','2020-10-15 15:08:29',' ','','','publish','closed','closed','','241','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=241',24,'nav_menu_item','',0),(242,2,'2020-10-15 15:08:29','2020-10-15 15:08:29',' ','','','publish','closed','closed','','242','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=242',22,'nav_menu_item','',0),(243,2,'2020-10-15 15:08:29','2020-10-15 15:08:29',' ','','','publish','closed','closed','','243','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=243',20,'nav_menu_item','',0),(244,2,'2020-10-15 15:08:29','2020-10-15 15:08:29',' ','','','publish','closed','closed','','244','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=244',25,'nav_menu_item','',0),(245,2,'2020-10-15 15:08:29','2020-10-15 15:08:29',' ','','','publish','closed','closed','','245','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=245',23,'nav_menu_item','',0),(246,2,'2020-10-15 15:08:29','2020-10-15 15:08:29',' ','','','publish','closed','closed','','246','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=246',21,'nav_menu_item','',0),(247,2,'2020-10-15 15:08:29','2020-10-15 15:08:29',' ','','','publish','closed','closed','','247','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=247',26,'nav_menu_item','',0),(248,2,'2020-10-15 15:08:29','2020-10-15 15:08:29',' ','','','publish','closed','closed','','248','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=248',27,'nav_menu_item','',0),(249,2,'2020-10-15 15:08:29','2020-10-15 15:08:29',' ','','','publish','closed','closed','','249','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=249',28,'nav_menu_item','',0),(251,2,'2020-10-15 21:43:49','2020-10-15 21:43:49','','Grupo-SUADI-1','','inherit','open','closed','','grupo-suadi-1','','','2020-10-15 21:43:49','2020-10-15 21:43:49','',0,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Grupo-SUADI-1.png',0,'attachment','image/png',0),(252,2,'2020-10-15 22:19:57','2020-10-15 22:19:57','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fmaquinarias%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fconstruccion%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_custom_heading text=\"Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\" font_container=\"tag:p|font_size:22|text_align:left|line_height:32px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_column_text]En materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1602800290952{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:22|text_align:left|line_height:24px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-autosave-v1','','','2020-10-15 22:19:57','2020-10-15 22:19:57','',112,'http://zewsdemo.com/gruposuadi/2020/10/15/112-autosave-v1/',0,'revision','',0),(253,2,'2020-10-15 22:20:52','2020-10-15 22:20:52','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fmaquinarias%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fconstruccion%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_custom_heading text=\"Contamos con un sistema de gestión integral, para la <strong>construcción de obras civiles</strong> y brindamos el servicio de <strong>renta de equipo pesado</strong> para la construcción de obras.\" font_container=\"tag:p|font_size:22|text_align:left|line_height:32px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_column_text]En materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1602800290952{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:22|text_align:left|line_height:24px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-15 22:20:52','2020-10-15 22:20:52','',112,'http://zewsdemo.com/gruposuadi/2020/10/15/112-revision-v1/',0,'revision','',0),(254,2,'2020-10-15 22:21:21','2020-10-15 22:21:21','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fmaquinarias%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fconstruccion%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_custom_heading text=\"Contamos con un sistema de gestión integral, para la <strong>construcción de obras civiles</strong> y brindamos el servicio de <strong>renta de equipo pesado</strong> para la construcción de obras.\" font_container=\"tag:p|font_size:22|text_align:left|line_height:32px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:400%20regular%3A400%3Anormal\"][vc_column_text]En materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1602800290952{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:22|text_align:left|line_height:24px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-10-15 22:21:21','2020-10-15 22:21:21','',112,'http://zewsdemo.com/gruposuadi/2020/10/15/112-revision-v1/',0,'revision','',0),(256,2,'2020-11-02 14:04:44','2020-11-02 14:04:44','','Equipo-pesado-grupo-suadi(1)','','inherit','open','closed','','equipo-pesado-grupo-suadi1','','','2020-11-02 14:04:44','2020-11-02 14:04:44','',15,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Equipo-pesado-grupo-suadi1.jpg',0,'attachment','image/jpeg',0),(258,2,'2020-11-02 14:39:40','2020-11-02 14:39:40','','Excavadoras en Panamá','','inherit','open','closed','','excavadoras-panama','','','2020-11-02 14:40:00','2020-11-02 14:40:00','',22,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/excavadoras-panama.jpg',0,'attachment','image/jpeg',0),(259,2,'2020-11-02 15:32:31','2020-11-02 15:32:31','<p>[vc_row][vc_column][vc_single_image image=\"262\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Tractores oruga\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Tractores sobre orugas tipo D4, D5 y D6, para sus trabajos de excavación y empuje, en la construcción de obras residenciales, grandes edificios, represas, caminos y carreteras.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]</p>\n','Tractores sobre Oruga','','inherit','closed','closed','','26-autosave-v1','','','2020-11-02 15:32:31','2020-11-02 15:32:31','',26,'http://zewsdemo.com/gruposuadi/2020/11/02/26-autosave-v1/',0,'revision','',0),(260,2,'2020-11-02 15:11:38','2020-11-02 15:11:38','','Tractores sobre Oruga','','inherit','open','closed','','tractores-sobre-oruga-panama','','','2020-11-02 15:14:56','2020-11-02 15:14:56','',26,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama.jpg',0,'attachment','image/jpeg',0),(261,2,'2020-11-02 15:27:33','2020-11-02 15:27:33','','Retroexcavadoras-4x4-Panama','','inherit','open','closed','','retroexcavadoras-4x4-panama','','','2020-11-02 15:27:33','2020-11-02 15:27:33','',31,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Retroexcavadoras-4x4-Panama.jpg',0,'attachment','image/jpeg',0),(262,2,'2020-11-02 15:32:19','2020-11-02 15:32:19','','Tractores sobre orugas','','inherit','open','closed','','tractores-sobre-oruga-panama-1','','','2020-11-02 15:33:17','2020-11-02 15:33:17','',26,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1.jpg',0,'attachment','image/jpeg',0),(263,2,'2020-11-02 15:56:21','2020-11-02 15:56:21','','Motoniveladoras o cuchillas','','inherit','open','closed','','mononiveladoras-panama','','','2020-11-02 16:02:38','2020-11-02 16:02:38','',38,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama.jpg',0,'attachment','image/jpeg',0),(264,2,'2020-11-02 16:06:40','2020-11-02 16:06:40','<p>[vc_row][vc_column][vc_single_image image=\"41\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Cargadores frontales\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Tractores con cuchara frontal de gran utilidad para cargar materiales como piedra, arena y tierra.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]</p>\n','Cargadores frontales (y mini cargadores)','','inherit','closed','closed','','40-autosave-v1','','','2020-11-02 16:06:40','2020-11-02 16:06:40','',40,'http://zewsdemo.com/gruposuadi/2020/11/02/40-autosave-v1/',0,'revision','',0),(265,2,'2020-11-02 16:55:23','2020-11-02 16:55:23','','Dumpers-panama','','inherit','open','closed','','dumpers-panama','','','2020-11-02 16:55:23','2020-11-02 16:55:23','',44,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Dumpers-panama.jpg',0,'attachment','image/jpeg',0),(266,2,'2020-11-02 16:57:04','2020-11-02 16:57:04','<p>[vc_row][vc_column][vc_single_image image=\"265\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Dumpers\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Son pequeños equipos rodantes que transportan más o menos 3,5 m3 de material en recorridos cortos. Pueden dumpear hacia atrás o hacia un lado.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]</p>\n','Dumpers','','inherit','closed','closed','','44-autosave-v1','','','2020-11-02 16:57:04','2020-11-02 16:57:04','',44,'http://zewsdemo.com/gruposuadi/2020/11/02/44-autosave-v1/',0,'revision','',0),(267,2,'2020-11-02 17:16:20','2020-11-02 17:16:20','','Hormigonera auto cargante','','inherit','open','closed','','hormigonera-auto-cargante-2','','','2020-11-02 17:17:43','2020-11-02 17:17:43','',57,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante.jpg',0,'attachment','image/jpeg',0),(268,2,'2020-10-01 07:36:06','2020-10-01 07:36:06','[vc_row][vc_column][vc_single_image image=\"311\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Camiones Volquetes\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Camiones 10 ruedas de aproximadamente 14m3 de capacidad, para transporte de material a largas distancias.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Camiones Volquetes','','publish','closed','closed','','camiones-volquetes','','','2020-11-17 18:23:28','2020-11-17 18:23:28','',0,'http://zewsdemo.com/gruposuadi/?post_type=services&p=268',0,'services','',0),(269,2,'2020-11-02 17:35:41','2020-11-02 17:35:41','','Camiones-Volquetes-Panama','','inherit','open','closed','','camiones-volquetes-panama','','','2020-11-02 17:35:41','2020-11-02 17:35:41','',268,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/11/Camiones-Volquetes-Panama.jpg',0,'attachment','image/jpeg',0),(270,2,'2020-11-02 17:42:25','2020-11-02 17:42:25','','proyectos-residenciales01','','inherit','open','closed','','proyectos-residenciales01','','','2020-11-02 17:42:25','2020-11-02 17:42:25','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/proyectos-residenciales01.jpg',0,'attachment','image/jpeg',0),(271,2,'2020-11-02 17:54:55','2020-11-02 17:54:55','','residencial(2)','','inherit','open','closed','','residencial2','','','2020-11-02 17:54:55','2020-11-02 17:54:55','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial2.jpeg',0,'attachment','image/jpeg',0),(272,2,'2020-11-02 17:54:57','2020-11-02 17:54:57','','residencial(3)','','inherit','open','closed','','residencial3','','','2020-11-02 17:54:57','2020-11-02 17:54:57','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial3.jpeg',0,'attachment','image/jpeg',0),(273,2,'2020-11-02 17:54:59','2020-11-02 17:54:59','','residencial(4)','','inherit','open','closed','','residencial4','','','2020-11-02 17:54:59','2020-11-02 17:54:59','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial4.jpeg',0,'attachment','image/jpeg',0),(274,2,'2020-11-02 17:55:01','2020-11-02 17:55:01','','residencial(5)','','inherit','open','closed','','residencial5','','','2020-11-02 17:55:01','2020-11-02 17:55:01','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial5.jpeg',0,'attachment','image/jpeg',0),(275,2,'2020-11-02 17:55:04','2020-11-02 17:55:04','','residencial(6)','','inherit','open','closed','','residencial6','','','2020-11-02 17:55:04','2020-11-02 17:55:04','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial6.jpeg',0,'attachment','image/jpeg',0),(276,2,'2020-11-02 17:55:06','2020-11-02 17:55:06','','residencial(7)','','inherit','open','closed','','residencial7','','','2020-11-02 17:55:06','2020-11-02 17:55:06','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial7.jpeg',0,'attachment','image/jpeg',0),(277,2,'2020-11-02 17:55:10','2020-11-02 17:55:10','','residencial(8)','','inherit','open','closed','','residencial8','','','2020-11-02 17:55:10','2020-11-02 17:55:10','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial8.jpeg',0,'attachment','image/jpeg',0),(278,2,'2020-11-02 17:55:13','2020-11-02 17:55:13','','residencial(9)','','inherit','open','closed','','residencial9','','','2020-11-02 17:55:13','2020-11-02 17:55:13','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial9.jpeg',0,'attachment','image/jpeg',0),(279,2,'2020-11-02 17:55:15','2020-11-02 17:55:15','','residencial(10)','','inherit','open','closed','','residencial10','','','2020-11-02 17:55:15','2020-11-02 17:55:15','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial10.jpeg',0,'attachment','image/jpeg',0),(280,2,'2020-11-02 17:55:19','2020-11-02 17:55:19','','residencial(11)','','inherit','open','closed','','residencial11','','','2020-11-02 17:55:19','2020-11-02 17:55:19','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial11.jpeg',0,'attachment','image/jpeg',0),(281,2,'2020-11-02 17:55:23','2020-11-02 17:55:23','','residencial(12)','','inherit','open','closed','','residencial12','','','2020-11-02 17:55:23','2020-11-02 17:55:23','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial12.jpeg',0,'attachment','image/jpeg',0),(282,2,'2020-11-02 17:55:26','2020-11-02 17:55:26','','residencial(13)','','inherit','open','closed','','residencial13','','','2020-11-02 17:55:26','2020-11-02 17:55:26','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial13.jpeg',0,'attachment','image/jpeg',0),(283,2,'2020-11-02 17:55:28','2020-11-02 17:55:28','','residencial(14)','','inherit','open','closed','','residencial14','','','2020-11-02 17:55:28','2020-11-02 17:55:28','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial14.jpeg',0,'attachment','image/jpeg',0),(284,2,'2020-11-02 17:55:33','2020-11-02 17:55:33','','residencial(1)','','inherit','open','closed','','residencial1','','','2020-11-02 17:55:33','2020-11-02 17:55:33','',79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial1.jpeg',0,'attachment','image/jpeg',0),(285,2,'2020-11-12 22:28:26','2020-11-12 22:28:26','[vc_row][vc_column][vc_single_image image=\"296\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"30px\"][vc_column_text]Contamos con la maquinaria, el equipo humano y la logística, para desarrollar proyectos de infraestructura vial que contribuyan en la conectividad terrestre de Panamá, para el transporte de personas y de carga, con el consecuente apoyo a la economía y el desarrollo productivo del país.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_gallery type=\"image_grid\" images=\"286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601673517854{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]','Construcción de infraestructura vial','','inherit','closed','closed','','73-autosave-v1','','','2020-11-12 22:28:26','2020-11-12 22:28:26','',73,'http://zewsdemo.com/gruposuadi/2020/11/02/73-autosave-v1/',0,'revision','',0),(286,2,'2020-11-02 18:14:13','2020-11-02 18:14:13','','infraestructura-vial(1)','','inherit','open','closed','','infraestructura-vial1','','','2020-11-02 18:14:13','2020-11-02 18:14:13','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial1.jpeg',0,'attachment','image/jpeg',0),(287,2,'2020-11-02 18:14:15','2020-11-02 18:14:15','','infraestructura-vial(2)','','inherit','open','closed','','infraestructura-vial2','','','2020-11-02 18:14:15','2020-11-02 18:14:15','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial2.jpeg',0,'attachment','image/jpeg',0),(288,2,'2020-11-02 18:14:18','2020-11-02 18:14:18','','infraestructura-vial(3)','','inherit','open','closed','','infraestructura-vial3','','','2020-11-02 18:14:18','2020-11-02 18:14:18','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial3.jpeg',0,'attachment','image/jpeg',0),(289,2,'2020-11-02 18:14:20','2020-11-02 18:14:20','','infraestructura-vial(4)','','inherit','open','closed','','infraestructura-vial4','','','2020-11-02 18:14:20','2020-11-02 18:14:20','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial4.jpeg',0,'attachment','image/jpeg',0),(290,2,'2020-11-02 18:14:22','2020-11-02 18:14:22','','infraestructura-vial(5)','','inherit','open','closed','','infraestructura-vial5','','','2020-11-02 18:14:22','2020-11-02 18:14:22','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial5.jpeg',0,'attachment','image/jpeg',0),(291,2,'2020-11-02 18:14:24','2020-11-02 18:14:24','','infraestructura-vial(6)','','inherit','open','closed','','infraestructura-vial6','','','2020-11-02 18:14:24','2020-11-02 18:14:24','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial6.jpeg',0,'attachment','image/jpeg',0),(292,2,'2020-11-02 18:14:26','2020-11-02 18:14:26','','infraestructura-vial(7)','','inherit','open','closed','','infraestructura-vial7','','','2020-11-02 18:14:26','2020-11-02 18:14:26','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial7.jpeg',0,'attachment','image/jpeg',0),(293,2,'2020-11-02 18:14:28','2020-11-02 18:14:28','','infraestructura-vial(8)','','inherit','open','closed','','infraestructura-vial8','','','2020-11-02 18:14:28','2020-11-02 18:14:28','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial8.jpeg',0,'attachment','image/jpeg',0),(294,2,'2020-11-02 18:14:31','2020-11-02 18:14:31','','infraestructura-vial(9)','','inherit','open','closed','','infraestructura-vial9','','','2020-11-02 18:14:31','2020-11-02 18:14:31','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial9.jpeg',0,'attachment','image/jpeg',0),(295,2,'2020-11-02 18:14:33','2020-11-02 18:14:33','','infraestructura-vial(10)','','inherit','open','closed','','infraestructura-vial10','','','2020-11-02 18:14:33','2020-11-02 18:14:33','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial10.jpeg',0,'attachment','image/jpeg',0),(296,2,'2020-11-02 18:21:34','2020-11-02 18:21:34','','infraestructura-vial-panama','','inherit','open','closed','','infraestructura-vial-panama','','','2020-11-02 18:21:34','2020-11-02 18:21:34','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial-panama.jpg',0,'attachment','image/jpeg',0),(297,2,'2020-11-02 18:30:32','2020-11-02 18:30:32','','Urbanizaciones(1)','','inherit','open','closed','','urbanizaciones1','','','2020-11-02 18:30:32','2020-11-02 18:30:32','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones1.jpeg',0,'attachment','image/jpeg',0),(298,2,'2020-11-02 18:30:34','2020-11-02 18:30:34','','Urbanizaciones(2)','','inherit','open','closed','','urbanizaciones2','','','2020-11-02 18:30:34','2020-11-02 18:30:34','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones2.jpeg',0,'attachment','image/jpeg',0),(299,2,'2020-11-02 18:30:36','2020-11-02 18:30:36','','Urbanizaciones(3)','','inherit','open','closed','','urbanizaciones3','','','2020-11-02 18:30:36','2020-11-02 18:30:36','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones3.jpeg',0,'attachment','image/jpeg',0),(300,2,'2020-11-02 18:30:39','2020-11-02 18:30:39','','Urbanizaciones(4)','','inherit','open','closed','','urbanizaciones4','','','2020-11-02 18:30:39','2020-11-02 18:30:39','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones4.jpeg',0,'attachment','image/jpeg',0),(301,2,'2020-11-02 18:30:41','2020-11-02 18:30:41','','Urbanizaciones(5)','','inherit','open','closed','','urbanizaciones5','','','2020-11-02 18:30:41','2020-11-02 18:30:41','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones5.jpeg',0,'attachment','image/jpeg',0),(302,2,'2020-11-02 18:30:43','2020-11-02 18:30:43','','Urbanizaciones(6)','','inherit','open','closed','','urbanizaciones6','','','2020-11-02 18:30:43','2020-11-02 18:30:43','',73,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones6.jpeg',0,'attachment','image/jpeg',0),(303,2,'2020-11-12 22:00:34','2020-11-12 22:00:34','','Excavadoras-brazo-largo(1)','','inherit','open','closed','','excavadoras-brazo-largo1','','','2020-11-12 22:00:34','2020-11-12 22:00:34','',22,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo1.jpg',0,'attachment','image/jpeg',0),(304,2,'2020-11-12 22:00:37','2020-11-12 22:00:37','','Excavadoras-brazo-largo(3)','','inherit','open','closed','','excavadoras-brazo-largo3','','','2020-11-12 22:00:37','2020-11-12 22:00:37','',22,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo3.jpg',0,'attachment','image/jpeg',0),(306,2,'2020-11-12 22:02:54','2020-11-12 22:02:54','','Excavadoras-brazo-largo(02)','','inherit','open','closed','','excavadoras-brazo-largo02','','','2020-11-12 22:02:54','2020-11-12 22:02:54','',22,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo02.jpg',0,'attachment','image/jpeg',0),(307,2,'2020-11-17 18:19:00','2020-11-17 18:19:00','<p>[vc_row][vc_column][vc_single_image image=\"313\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Perforadoras\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Pala martillo y retro martillos desde 5 toneladas hasta 25 toneladas. Opcional minipalas o retros con fresadoras hasta 9 toneladas.</p>\n<p>Equipo utilizado como perforadoras de roca de alto desempeño en aplicaciones como la minería, construcción y obras viales. Con dispositivos de rotación y sistemas de perforación auto sincronizados.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]</p>\n','Pala Martillo y Retro Martillo','','inherit','closed','closed','','42-autosave-v1','','','2020-11-17 18:19:00','2020-11-17 18:19:00','',42,'http://zewsdemo.com/gruposuadi/2020/11/12/42-autosave-v1/',0,'revision','',0),(308,2,'2020-11-12 22:18:29','2020-11-12 22:18:29','<div class=\"row\">\r\n<div class=\"col-sm-12\">\r\n<label> Nombre completo (requerido)\r\n [text* su-nombre] </label>\r\n\r\n<label> Correo electrónico (requerido)\r\n [email* su-email] </label>\r\n</div> <div class=\"col-sm-6\">\r\n<label> Teléfono\r\n [text su-telefono] </label>\r\n</div> <div class=\"col-sm-6\">\r\n<label> Ubicación\r\n [text su-telefono] </label>\r\n</div> <div class=\"col-sm-12\">\r\n<label> Mensaje / Comentarios\r\n [textarea su-mensaje] </label>\r\n\r\n[submit \"Enviar\"]\r\n</div>\r\n</div>\n1\nGrupo Suadi \"[your-subject]\"\nGrupo Suadi <wordpress@zewsdemo.com>\nhferreto@zews.co.cr\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 Grupo Suadi (http://zewsdemo.com/gruposuadi)\nReply-To: [su-email]\n\n\n\n\nGrupo Suadi \"[your-subject]\"\nGrupo Suadi <wordpress@zewsdemo.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Grupo Suadi (http://zewsdemo.com/gruposuadi)\nReply-To: hferreto@zews.co.cr\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.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Servicios constructora','','publish','closed','closed','','servicios-maquinaria_copy','','','2020-11-12 22:23:35','2020-11-12 22:23:35','',0,'http://zewsdemo.com/gruposuadi/?post_type=wpcf7_contact_form&p=308',0,'wpcf7_contact_form','',0),(309,2,'2020-11-12 22:45:04','2020-11-12 22:45:04','','camion-plataforma','','inherit','open','closed','','camion-plataforma','','','2020-11-12 22:45:04','2020-11-12 22:45:04','',46,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/camion-plataforma.jpg',0,'attachment','image/jpeg',0),(310,2,'2020-11-12 22:47:25','2020-11-12 22:47:25',' ','','','publish','closed','closed','','310','','','2020-11-12 22:47:25','2020-11-12 22:47:25','',0,'http://zewsdemo.com/gruposuadi/?p=310',18,'nav_menu_item','',0),(311,2,'2020-11-13 13:36:27','2020-11-13 13:36:27','','Camiones-Volquetes-Panama','','inherit','open','closed','','camiones-volquetes-panama-2','','','2020-11-13 13:36:27','2020-11-13 13:36:27','',268,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-Volquetes-Panama.jpg',0,'attachment','image/jpeg',0),(312,2,'2020-11-13 13:43:59','2020-11-13 13:43:59','','Compactadora Lisa o De Piña','','inherit','open','closed','','compactadoras-panama','','','2020-11-13 13:44:57','2020-11-13 13:44:57','',34,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama.jpg',0,'attachment','image/jpeg',0),(313,2,'2020-11-13 13:50:37','2020-11-13 13:50:37','','PalaMartillo-RetroMartillo','','inherit','open','closed','','palamartillo-retromartillo','','','2020-11-13 13:50:37','2020-11-13 13:50:37','',42,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/PalaMartillo-RetroMartillo.jpg',0,'attachment','image/jpeg',0),(314,2,'2020-11-13 13:55:28','2020-11-13 13:55:28','','Cargadores frontales','','inherit','open','closed','','cargadores-frontales-2','','','2020-11-13 13:55:44','2020-11-13 13:55:44','',40,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1.jpg',0,'attachment','image/jpeg',0),(315,2,'2020-11-13 14:01:09','2020-11-13 14:01:09','','Excavadoras-panama-1','','inherit','open','closed','','excavadoras-panama-1','','','2020-11-13 14:01:09','2020-11-13 14:01:09','',22,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-panama-1.jpg',0,'attachment','image/jpeg',0),(317,2,'2020-11-17 17:01:57','2020-11-17 17:01:57','','Logo-GSUADI-1','','inherit','open','closed','','logo-gsuadi-1','','','2020-11-17 17:01:57','2020-11-17 17:01:57','',0,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/11/Logo-GSUADI-1.png',0,'attachment','image/png',0),(318,2,'2020-11-17 17:25:24','2020-11-17 17:25:24','','LogoG-SUADI1-Ret','','inherit','open','closed','','logog-suadi1-ret','','','2020-11-17 17:25:24','2020-11-17 17:25:24','',0,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/11/LogoG-SUADI1-Ret.png',0,'attachment','image/png',0),(319,2,'2020-11-17 17:30:34','2020-11-17 17:30:34','','LogoG-SUADI1-mob','','inherit','open','closed','','logog-suadi1-mob','','','2020-11-17 17:30:34','2020-11-17 17:30:34','',0,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/11/LogoG-SUADI1-mob.png',0,'attachment','image/png',0),(320,2,'2020-11-17 17:34:06','2020-11-17 17:34:06','[vc_row css=\".vc_custom_1602108056330{margin-top: -100px !important;}\"][vc_column][rev_slider slidertitle=\"Slider 1\" alias=\"slider-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column css=\".vc_custom_1602170601913{margin-top: -100px !important;}\" el_class=\"sobre\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171157392{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Maquinarias-GrupoSuadi-1.jpg?id=140) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"MAQUINARIAS\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fmaquinarias%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1602171578201{border-top-width: 10px !important;border-right-width: 10px !important;border-bottom-width: 10px !important;border-left-width: 10px !important;padding-top: 40px !important;padding-right: 15px !important;padding-bottom: 40px !important;padding-left: 15px !important;background-image: url(http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Constructura-GrupoSuadi-1.jpg?id=162) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-left-color: rgba(255,255,255,0.5) !important;border-left-style: solid !important;border-right-color: rgba(255,255,255,0.5) !important;border-right-style: solid !important;border-top-color: rgba(255,255,255,0.5) !important;border-top-style: solid !important;border-bottom-color: rgba(255,255,255,0.5) !important;border-bottom-style: solid !important;}\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"GRUPO SUADI\" font_container=\"tag:p|font_size:25|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:100%20light%20regular%3A100%3Anormal\"][vc_custom_heading text=\"CONSTRUCTORA\" font_container=\"tag:h2|font_size:40|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:700%20bold%20regular%3A700%3Anormal\" el_class=\"responsivetitulo\" link=\"url:%2Fgruposuadi%2Fconstruccion%2F|||\"][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1602166176131{margin-top: 50px !important;}\"][vc_column][vc_custom_heading text=\"Contamos con un sistema de gestión integral, para la <strong>construcción de obras civiles</strong> y brindamos el servicio de <strong>renta de equipo pesado</strong> para la construcción de obras.\" font_container=\"tag:p|font_size:22|text_align:left|line_height:32px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:400%20regular%3A400%3Anormal\"][vc_column_text]En materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1602800290952{margin-top: 50px !important;}\"][vc_column][vc_column_text]Contamos con un sistema de gestión integral, para la construcción de obras civiles y brindamos el servicio de renta de equipo pesado para la construcción de obras.\r\n\r\nEn materia de construcción, planificamos y desarrollamos los procesos necesarios para la ejecución de un proyecto, a través de un riguroso Plan de Calidad que incluye procedimientos operativos de seguridad, higiene y control ambiental.\r\n\r\nEn el área de alquiler de maquinaria, protegemos nuestros equipos con seguros y nos ocupamos de su mantenimiento preventivo y correctivo, su movilización y desmovilización y, para la mayor confianza de nuestros clientes, contamos con un equipo de operadores calificados.\r\n\r\nNuestra sede se encuentra en Vía Interamericana, San Pablo Viejo, David, Chiriquí, pero llevamos nuestros productos a toda la República de Panamá.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1602108383255{margin-top: 40px !important;margin-bottom: 40px !important;}\"][vc_column][vc_custom_heading text=\"SERVICIOS\" font_container=\"tag:p|font_size:22|text_align:left|line_height:24px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602106481189{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Alquiler de Maquinaria y Construcción\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Servicios de alquiler de maquinaria para trabajos pesados, construcciones de carreteras y tuberías para sistemas de acueducto y alcantarillado, entre muchos otros servicios más que brindamos.[/vc_column_text][construction_services_carousel services_carousel_number=\"-1\" services_carousel_per_row=\"2\" service_carousel_categories=\"all\" services_carousel_show_dots=\"false\" services_carousel_show_nav=\"true\" services_carousel_slide_speed=\"500\" services_carousel_link_txt=\"Ver servicio\"][/vc_column][/vc_row]','Inicio','','inherit','closed','closed','','112-revision-v1','','','2020-11-17 17:34:06','2020-11-17 17:34:06','',112,'http://zewsdemo.com/gruposuadi/2020/11/17/112-revision-v1/',0,'revision','',0),(321,2,'2020-11-17 17:42:25','2020-11-17 17:42:25','[vc_row][vc_column width=\"1/2\"][vc_custom_heading text=\"ACERCA DE NOSOTROS\" font_container=\"tag:p|font_size:22|text_align:left|line_height:24px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602702322343{margin-top: -35px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"/gruposuadi/contacto/\" button_background_color=\"#e03333\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1602105863382{margin-top: 40px !important;}\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-11-17 17:42:25','2020-11-17 17:42:25','',89,'http://zewsdemo.com/gruposuadi/2020/11/17/89-revision-v1/',0,'revision','',0),(322,2,'2020-11-17 17:45:03','2020-11-17 17:45:03','[vc_row][vc_column width=\"1/2\"][vc_custom_heading text=\"ACERCA DE NOSOTROS\" font_container=\"tag:p|font_size:22|text_align:left|line_height:24px\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1602702322343{margin-top: -35px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Grupo Suadi\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]Una empresa familiar, 100% panameña, dedicada a la obra civil como infraestructura, ingeniería, movimiento de tierra, túneles, entre otras; como también a la renta de equipo pesado para obras civiles.\r\n\r\nNuestros equipos profesionales y técnicos planean y desarrollan los procesos necesarios para la ejecución de un producto o la prestación de un servicio, a través de un Plan de Calidad, conforme lo estipulan las disposiciones legales y reglamentarias panameñas.\r\n\r\nLos rigurosos procedimientos operativos de seguridad, higiene y control ambiental que caracterizan a nuestros servicios constructivos y de renta de maquinaria, garantizan el cumplimiento de los requerimientos de cada contrato, a satisfacción del cliente.[/vc_column_text][construction_custom_button custom_button_size=\"size_large\" custom_button_corners=\"corners_square\" custom_button_alignment=\"alignment_left\" button_icon=\"\" custom_button_text=\"Contáctenos\" custom_button_link=\"/gruposuadi/contacto/\" button_background_color=\"#ff6d00\" button_text_color=\"#ffffff\" button_background_color_hov=\"#000000\" button_text_color_hov=\"#ffffff\"][vc_empty_space][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"99\" img_size=\"full\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1602105863382{margin-top: 40px !important;}\"][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Misión\"][vc_custom_heading text=\"Incrementar la productividad y competencia de todas las áreas de operación de nuestra empresa, con el fin de aumentar el valor para los socios y miembros de la Organización, y posicionar al Grupo Suadi entre las empresas que prestan servicios con más altos estándares de calidad, en los aspectos de seguridad, medio ambientales y de compromiso con los parámetros contractuales, en forma, precio, tiempo y directrices acordadas con el cliente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/2\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"none\" heading_alignnment=\"left\" heading_tag=\"h3\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Visión\"][vc_custom_heading text=\"Posicionarnos entre las mejores empresas de la República de Panamá, en la categoría de servicios de construcción e ingeniería y de renta de equipo pesado para la industria de la construcción de proyectos públicos y privados, y mantenernos abiertos a la posibilidad de expandir nuestros servicios a nivel internacional.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\"][/vc_column][/vc_row]','Nosotros','','inherit','closed','closed','','89-revision-v1','','','2020-11-17 17:45:03','2020-11-17 17:45:03','',89,'http://zewsdemo.com/gruposuadi/2020/11/17/89-revision-v1/',0,'revision','',0),(323,2,'2020-11-17 18:03:54','0000-00-00 00:00:00','','Borrador automático','','auto-draft','open','open','','','','','2020-11-17 18:03:54','0000-00-00 00:00:00','',0,'http://zewsdemo.com/gruposuadi/?p=323',0,'post','',0),(324,2,'2020-11-17 18:15:26','2020-11-17 18:15:26','<p>[vc_row][vc_column][vc_single_image image=\"263\" img_size=\"1140x500\" onclick=\"link_image\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"ALQUILER DE\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\" el_class=\"centertitle\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Motoniveladoras\" heading_size=\"40\"][/vc_column_inner][/vc_row_inner][vc_column_text]La máquina de ingeniería civil diseñada con la versatilidad necesaria para la nivelación de suelos, construcción de carreteras y caminos, construcción y limpieza de canales y perfilar taludes y cunetas de caminos.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"CONTÁCTENOS\" font_container=\"tag:p|font_size:22|text_align:left\" google_fonts=\"font_family:Raleway%3A100%2C200%2C300%2Cregular%2C500%2C600%2C700%2C800%2C900|font_style:300%20light%20regular%3A300%3Anormal\"][vc_row_inner][vc_column_inner css=\".vc_custom_1601395062729{margin-top: -40px !important;}\"][construction_custom_heading heading_weight=\"700\" heading_transform=\"uppercase\" heading_alignnment=\"left\" heading_tag=\"h2\" heading_color_type=\"normal\" heading_icon_switch=\"no\" heading_title=\"Formulario de contacto\" heading_size=\"40\"][vc_custom_heading text=\"<strong>Cotice</strong> su proyecto o solicite más información de nuestros servicios. Será un gusto poder desarrollar ese proyecto que tiene en mente.\" font_container=\"tag:p|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1601396758265{margin-top: -20px !important;}\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"25px\"][contact-form-7 id=\"6\"][/vc_column][/vc_row]</p>\n','Motoniveladoras o cuchillas','','inherit','closed','closed','','38-autosave-v1','','','2020-11-17 18:15:26','2020-11-17 18:15:26','',38,'http://zewsdemo.com/gruposuadi/2020/11/17/38-autosave-v1/',0,'revision','',0); /*!40000 ALTER TABLE `grpsd_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_css` -- DROP TABLE IF EXISTS `grpsd_revslider_css`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_css` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text NOT NULL, `settings` longtext, `hover` longtext, `advanced` longtext, `params` longtext NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_css` -- LOCK TABLES `grpsd_revslider_css` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_css` DISABLE KEYS */; INSERT INTO `grpsd_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.inOut\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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.inOut\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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.inOut\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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.out\"}','{\"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\":\"none\"}','{\"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\"}'),(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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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.out\"}','{\"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.out\"}','{\"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.inOut\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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.inOut\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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.inOut\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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.inOut\"}','{\"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.inOut\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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.inOut\"}','{\"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.inOut\"}','{\"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\":\"none\"}','{\"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\":\"none\"}','{\"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.out\"}','{\"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\":\"none\"}','{\"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\":\"-\"}'); /*!40000 ALTER TABLE `grpsd_revslider_css` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_css_bkp` -- DROP TABLE IF EXISTS `grpsd_revslider_css_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_css_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text NOT NULL, `settings` longtext, `hover` longtext, `advanced` longtext, `params` longtext NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_css_bkp` -- LOCK TABLES `grpsd_revslider_css_bkp` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_css_bkp` DISABLE KEYS */; INSERT INTO `grpsd_revslider_css_bkp` VALUES (1,'.tp-caption.medium_grey',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"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\",\"white-space\":\"nowrap\"}'),(2,'.tp-caption.small_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(3,'.tp-caption.medium_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(4,'.tp-caption.large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(5,'.tp-caption.very_large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),(6,'.tp-caption.very_big_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(9,'.tp-caption.modern_medium_fat_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(10,'.tp-caption.modern_medium_light',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(11,'.tp-caption.modern_big_bluebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"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\",\"letter-spacing\":\"0\"}'),(12,'.tp-caption.modern_big_redbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),(13,'.tp-caption.modern_small_text_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(14,'.tp-caption.boxshadow',NULL,NULL,NULL,'{\"-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)\"}'),(15,'.tp-caption.black',NULL,NULL,NULL,'{\"color\":\"#000\",\"text-shadow\":\"none\"}'),(16,'.tp-caption.noshadow',NULL,NULL,NULL,'{\"text-shadow\":\"none\"}'),(17,'.tp-caption.thinheadline_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt',NULL,NULL,NULL,'{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey',NULL,NULL,NULL,'{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey',NULL,NULL,NULL,'{\"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\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey',NULL,NULL,NULL,'{\"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\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black',NULL,NULL,NULL,'{\"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',NULL,NULL,NULL,'{\"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\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'); /*!40000 ALTER TABLE `grpsd_revslider_css_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_layer_animations` -- DROP TABLE IF EXISTS `grpsd_revslider_layer_animations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_layer_animations` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text NOT NULL, `params` text NOT NULL, `settings` text, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_layer_animations` -- LOCK TABLES `grpsd_revslider_layer_animations` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_layer_animations` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_revslider_layer_animations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_layer_animations_bkp` -- DROP TABLE IF EXISTS `grpsd_revslider_layer_animations_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_layer_animations_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text NOT NULL, `params` text NOT NULL, `settings` text, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_layer_animations_bkp` -- LOCK TABLES `grpsd_revslider_layer_animations_bkp` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_layer_animations_bkp` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_revslider_layer_animations_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_navigations` -- DROP TABLE IF EXISTS `grpsd_revslider_navigations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_navigations` ( `id` int(9) NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `handle` varchar(191) NOT NULL, `type` varchar(191) NOT NULL, `css` longtext NOT NULL, `markup` longtext NOT NULL, `settings` longtext, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_navigations` -- LOCK TABLES `grpsd_revslider_navigations` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_navigations` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_revslider_navigations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_navigations_bkp` -- DROP TABLE IF EXISTS `grpsd_revslider_navigations_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_navigations_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `handle` varchar(191) NOT NULL, `type` varchar(191) NOT NULL, `css` longtext NOT NULL, `markup` longtext NOT NULL, `settings` longtext, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_navigations_bkp` -- LOCK TABLES `grpsd_revslider_navigations_bkp` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_navigations_bkp` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_revslider_navigations_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_sliders` -- DROP TABLE IF EXISTS `grpsd_revslider_sliders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_sliders` ( `id` int(9) NOT NULL AUTO_INCREMENT, `title` tinytext NOT NULL, `alias` tinytext, `params` longtext NOT NULL, `settings` text, `type` varchar(191) NOT NULL DEFAULT '', UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_sliders` -- LOCK TABLES `grpsd_revslider_sliders` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_sliders` DISABLE KEYS */; INSERT INTO `grpsd_revslider_sliders` VALUES (1,'Slider 1','slider-1','{\"addOns\":[],\"version\":\"6.2.17\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"pageURL\":\"\",\"transient\":1200,\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":\"8000ms\",\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"800px\",\"n\":768,\"t\":\"890px\",\"m\":\"690px\"},\"editorCache\":{\"d\":800,\"n\":768,\"t\":890,\"m\":690},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"0\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-1\\\"][\\/rev_slider]\"}','{\"version\":\"6.2.17\"}',''); /*!40000 ALTER TABLE `grpsd_revslider_sliders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_sliders_bkp` -- DROP TABLE IF EXISTS `grpsd_revslider_sliders_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_sliders_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `title` tinytext NOT NULL, `alias` tinytext, `params` longtext NOT NULL, `settings` text, `type` varchar(191) NOT NULL DEFAULT '', UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_sliders_bkp` -- LOCK TABLES `grpsd_revslider_sliders_bkp` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_sliders_bkp` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_revslider_sliders_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_slides` -- DROP TABLE IF EXISTS `grpsd_revslider_slides`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_slides` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `slide_order` int(11) NOT NULL, `params` longtext NOT NULL, `layers` longtext NOT NULL, `settings` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_slides` -- LOCK TABLES `grpsd_revslider_slides` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_slides` DISABLE KEYS */; INSERT INTO `grpsd_revslider_slides` VALUES (1,1,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/zewsdemo.com\\/gruposuadi\\/wp-content\\/uploads\\/2020\\/10\\/Slide01-Suadi.jpg\",\"imageId\":119,\"imageLib\":\"medialibrary\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"publish\":{\"state\":\"unpublished\"},\"timeline\":{\"delay\":\"10000ms\",\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]}}','{\"0\":{\"text\":\"Alquiler de Maquinaria \",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"235px\",\"e\":true},\"n\":{\"v\":\"194px\"},\"t\":{\"v\":\"208px\",\"e\":true},\"m\":{\"v\":\"128px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":10000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":10000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"47px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"52px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"900\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"49px\"},\"t\":{\"v\":\"37px\"},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Alquiler de todo tipo de maquinaria pesada para ejecuci\\u00f3n de proyectos p\\u00fablicos y privados.\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"681px\",\"e\":true},\"n\":{\"v\":\"562px\"},\"t\":{\"v\":\"572px\",\"e\":true},\"m\":{\"v\":\"352px\"}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"307px\",\"e\":true},\"n\":{\"v\":\"253px\"},\"t\":{\"v\":\"262px\",\"e\":true},\"m\":{\"v\":\"242px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":480,\"startRelative\":480,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":10000,\"startRelative\":7320,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":480},{\"id\":\"frame_999\",\"start\":10000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"19px\",\"e\":true},\"n\":{\"v\":\"15px\"},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"33px\",\"e\":true},\"m\":{\"v\":\"23px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"MAQUINARIAS\",\"alias\":\"Button-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"402px\",\"e\":true},\"n\":{\"v\":\"331px\"},\"t\":{\"v\":\"356px\",\"e\":true},\"m\":{\"v\":\"350px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":970,\"startRelative\":970,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":10000,\"startRelative\":6830,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":970},{\"id\":\"frame_999\",\"start\":10000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[5,30,5,30],\"e\":true},\"n\":{\"v\":[4,25,4,25],\"e\":false},\"t\":{\"v\":[3,19,3,19],\"e\":false},\"m\":{\"v\":[2,20,2,20],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"17\"},\"n\":{\"v\":\"14\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"33\"},\"t\":{\"v\":\"44px\",\"e\":true},\"m\":{\"v\":\"38px\",\"e\":true}},\"backgroundColor\":\"#ff8530\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5}}}','{\"version\":\"6.2.17\"}'),(3,1,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"youtube\",\"image\":\"http:\\/\\/zewsdemo.com\\/gruposuadi\\/wp-content\\/uploads\\/2020\\/10\\/Slide01-Suadi.jpg\",\"imageId\":119,\"imageLib\":\"medialibrary\",\"youtube\":\"VJtCzfBoGKE\",\"video\":{\"dottedOverlay\":\"twoxtwo\",\"startAt\":\"00:12\",\"endAt\":\"00:33\",\"forceCover\":true,\"loop\":false,\"nextSlideAtEnd\":true}},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"delay\":\"10000ms\",\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]}}','{\"0\":{\"text\":\"Alquiler de Maquinaria \",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"m\":{\"v\":\"390px\",\"e\":true}},\"height\":{\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"235px\",\"e\":true},\"n\":{\"v\":\"194px\"},\"t\":{\"v\":\"208px\",\"e\":true},\"m\":{\"v\":\"128px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":10000,\"startRelative\":20800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":10000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"47px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"52px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"900\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"49px\"},\"t\":{\"v\":\"37px\"},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Alquiler de todo tipo de maquinaria pesada para ejecuci\\u00f3n de proyectos p\\u00fablicos y privados.\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"681px\",\"e\":true},\"n\":{\"v\":\"562px\"},\"t\":{\"v\":\"572px\",\"e\":true},\"m\":{\"v\":\"352px\"}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"307px\",\"e\":true},\"n\":{\"v\":\"253px\"},\"t\":{\"v\":\"262px\",\"e\":true},\"m\":{\"v\":\"242px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":480,\"startRelative\":480,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":10000,\"startRelative\":20320,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":480},{\"id\":\"frame_999\",\"start\":10000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"19px\",\"e\":true},\"n\":{\"v\":\"15px\"},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"33px\",\"e\":true},\"m\":{\"v\":\"23px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"MAQUINARIAS\",\"alias\":\"Button-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"402px\",\"e\":true},\"n\":{\"v\":\"331px\"},\"t\":{\"v\":\"356px\",\"e\":true},\"m\":{\"v\":\"350px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":970,\"startRelative\":970,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":10000,\"startRelative\":19830,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":970},{\"id\":\"frame_999\",\"start\":10000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[8,40,8,40],\"e\":true},\"n\":{\"v\":[7,33,7,33],\"e\":false},\"t\":{\"v\":[5,30,5,30],\"e\":true},\"m\":{\"v\":[5,40,5,40],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"17\"},\"n\":{\"v\":\"14\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"33\"},\"t\":{\"v\":\"44px\",\"e\":true},\"m\":{\"v\":\"38px\",\"e\":true}},\"backgroundColor\":\"#ff6d00\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"\\/gruposuadi\\/maquinarias\\/\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"7\":{\"text\":\"\",\"alias\":\"Shape-7\",\"uid\":7,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"2100px\",\"e\":true},\"n\":{\"v\":\"1734px\"},\"t\":{\"v\":\"1317px\"},\"m\":{\"v\":\"812px\"}},\"height\":{\"d\":{\"v\":\"2100px\",\"e\":true},\"n\":{\"v\":\"1734px\"},\"t\":{\"v\":\"1317px\"},\"m\":{\"v\":\"812px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"speed\":630,\"start\":260,\"startRelative\":260,\"endWithSlide\":false,\"frameLength\":630}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":10000,\"startRelative\":21110,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":260},{\"id\":\"frame_999\",\"start\":10000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5}}}','{\"version\":\"6.2.17\"}'),(4,1,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/zewsdemo.com\\/gruposuadi\\/wp-content\\/uploads\\/2020\\/10\\/Slide02-Suadi.jpg\",\"imageId\":196,\"imageLib\":\"medialibrary\",\"youtube\":\"VJtCzfBoGKE\",\"video\":{\"dottedOverlay\":\"twoxtwo\",\"startAt\":\"00:12\",\"endAt\":\"00:33\",\"forceCover\":true,\"loop\":false,\"nextSlideAtEnd\":true}},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"delay\":\"8000ms\",\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]}}','{\"0\":{\"text\":\"Construcciones\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"546px\",\"e\":true},\"n\":{\"v\":\"450px\"},\"t\":{\"v\":\"425px\",\"e\":true},\"m\":{\"v\":\"481px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"235px\",\"e\":true},\"n\":{\"v\":\"194px\"},\"t\":{\"v\":\"225px\",\"e\":true},\"m\":{\"v\":\"138px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":8000,\"startRelative\":20800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":8000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"47px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"47px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"900\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"49px\"},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Construcci\\u00f3n de todo tipo de obras civiles y privadas como carreteras, sistemas de acueductos y alcantarillados y mucho m\\u00e1s. \",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"681px\",\"e\":true},\"n\":{\"v\":\"562px\"},\"t\":{\"v\":\"665px\",\"e\":true},\"m\":{\"v\":\"422px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"307px\",\"e\":true},\"n\":{\"v\":\"253px\"},\"t\":{\"v\":\"291px\",\"e\":true},\"m\":{\"v\":\"199px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":480,\"startRelative\":480,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":8000,\"startRelative\":20320,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":480},{\"id\":\"frame_999\",\"start\":8000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"19px\",\"e\":true},\"n\":{\"v\":\"15px\"},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"33px\",\"e\":true},\"m\":{\"v\":\"23px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"CONSTRUCCIONES\",\"alias\":\"Button-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"402px\",\"e\":true},\"n\":{\"v\":\"331px\"},\"t\":{\"v\":\"404px\",\"e\":true},\"m\":{\"v\":\"299px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":970,\"startRelative\":970,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":8000,\"startRelative\":19830,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":970},{\"id\":\"frame_999\",\"start\":8000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[8,40,8,40],\"e\":true},\"n\":{\"v\":[7,33,7,33],\"e\":false},\"t\":{\"v\":[5,30,5,30],\"e\":true},\"m\":{\"v\":[5,40,5,40],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"17\"},\"n\":{\"v\":\"14\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"33\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"38px\",\"e\":true}},\"backgroundColor\":\"#ff6d00\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"\\/gruposuadi\\/construccion\\/\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5}}}','{\"version\":\"6.2.17\"}'); /*!40000 ALTER TABLE `grpsd_revslider_slides` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_slides_bkp` -- DROP TABLE IF EXISTS `grpsd_revslider_slides_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_slides_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `slide_order` int(11) NOT NULL, `params` longtext NOT NULL, `layers` longtext NOT NULL, `settings` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_slides_bkp` -- LOCK TABLES `grpsd_revslider_slides_bkp` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_slides_bkp` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_revslider_slides_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_static_slides` -- DROP TABLE IF EXISTS `grpsd_revslider_static_slides`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_static_slides` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `params` longtext NOT NULL, `layers` longtext NOT NULL, `settings` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_static_slides` -- LOCK TABLES `grpsd_revslider_static_slides` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_static_slides` DISABLE KEYS */; INSERT INTO `grpsd_revslider_static_slides` VALUES (1,1,'[]','','{\"temp\":true}'); /*!40000 ALTER TABLE `grpsd_revslider_static_slides` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_revslider_static_slides_bkp` -- DROP TABLE IF EXISTS `grpsd_revslider_static_slides_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_revslider_static_slides_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `params` longtext NOT NULL, `layers` longtext NOT NULL, `settings` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_revslider_static_slides_bkp` -- LOCK TABLES `grpsd_revslider_static_slides_bkp` WRITE; /*!40000 ALTER TABLE `grpsd_revslider_static_slides_bkp` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_revslider_static_slides_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_term_relationships` -- DROP TABLE IF EXISTS `grpsd_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_term_relationships` -- LOCK TABLES `grpsd_term_relationships` WRITE; /*!40000 ALTER TABLE `grpsd_term_relationships` DISABLE KEYS */; INSERT INTO `grpsd_term_relationships` VALUES (15,16,0),(22,16,0),(24,18,0),(25,18,0),(26,16,0),(28,16,0),(31,16,0),(34,16,0),(38,16,0),(40,16,0),(42,16,0),(44,16,0),(46,16,0),(53,16,0),(55,16,0),(57,16,0),(63,17,0),(70,18,0),(71,17,0),(73,17,0),(75,17,0),(77,17,0),(79,17,0),(82,17,0),(85,17,0),(87,17,0),(111,18,0),(195,18,0),(214,18,0),(215,18,0),(216,18,0),(217,18,0),(218,18,0),(219,18,0),(220,18,0),(221,18,0),(222,18,0),(223,18,0),(224,18,0),(225,18,0),(226,18,0),(227,18,0),(235,19,0),(236,19,0),(237,19,0),(238,19,0),(239,19,0),(240,18,0),(241,18,0),(242,18,0),(243,18,0),(244,18,0),(245,18,0),(246,18,0),(247,18,0),(248,18,0),(249,18,0),(268,16,0),(310,18,0); /*!40000 ALTER TABLE `grpsd_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_term_taxonomy` -- DROP TABLE IF EXISTS `grpsd_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_term_taxonomy` -- LOCK TABLES `grpsd_term_taxonomy` WRITE; /*!40000 ALTER TABLE `grpsd_term_taxonomy` DISABLE KEYS */; INSERT INTO `grpsd_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'product_type','',0,0),(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,'services_categories','',0,15),(17,17,'services_categories','',0,9),(18,18,'nav_menu','',0,30),(19,19,'nav_menu','',0,5); /*!40000 ALTER TABLE `grpsd_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_termmeta` -- DROP TABLE IF EXISTS `grpsd_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_termmeta` -- LOCK TABLES `grpsd_termmeta` WRITE; /*!40000 ALTER TABLE `grpsd_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_terms` -- DROP TABLE IF EXISTS `grpsd_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_terms` -- LOCK TABLES `grpsd_terms` WRITE; /*!40000 ALTER TABLE `grpsd_terms` DISABLE KEYS */; INSERT INTO `grpsd_terms` VALUES (1,'Sin categoría','sin-categoria',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,'Maquinaria','maquinaria',0),(17,'Construcción','construccion',0),(18,'Menu 1','menu-1',0),(19,'footer','footer',0); /*!40000 ALTER TABLE `grpsd_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_usermeta` -- DROP TABLE IF EXISTS `grpsd_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_usermeta` -- LOCK TABLES `grpsd_usermeta` WRITE; /*!40000 ALTER TABLE `grpsd_usermeta` DISABLE KEYS */; INSERT INTO `grpsd_usermeta` VALUES (19,2,'nickname','gruposua'),(20,2,'first_name',''),(21,2,'last_name',''),(22,2,'description',''),(23,2,'rich_editing','true'),(24,2,'syntax_highlighting','true'),(25,2,'comment_shortcuts','false'),(26,2,'admin_color','fresh'),(27,2,'use_ssl','0'),(28,2,'show_admin_bar_front','true'),(29,2,'locale',''),(30,2,'grpsd_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(31,2,'grpsd_user_level','10'),(32,2,'dismissed_wp_pointers','vc_pointers_backend_editor,theme_editor_notice'),(34,2,'session_tokens','a:2:{s:64:\"54639182a6e2c0707c60683775116078b3cad69a62c5c40f87c85812715924d5\";a:4:{s:10:\"expiration\";i:1605804566;s:2:\"ip\";s:13:\"66.248.201.11\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36\";s:5:\"login\";i:1605631766;}s:64:\"c46edee5720f41fcab99df01da538fbfd04135d1e77b2cf232d12cdf99cf9ec0\";a:4:{s:10:\"expiration\";i:1605896257;s:2:\"ip\";s:13:\"186.15.40.117\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36\";s:5:\"login\";i:1605723457;}}'),(35,2,'grpsd_dashboard_quick_press_last_post_id','323'),(36,2,'community-events-location','a:1:{s:2:\"ip\";s:11:\"186.15.40.0\";}'),(37,2,'_woocommerce_tracks_anon_id','woo:tyxGn09e/6z3h+WGVGU79ncR'),(38,2,'wc_last_active','1605657600'),(41,2,'grpsd_user-settings','hidetb=1&editor_plain_text_paste_warning=2&libraryContent=browse&edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=951px&edit_element_vcUIPanelTop=74px&editor=tinymce'),(42,2,'grpsd_user-settings-time','1601395640'),(43,2,'_order_count','0'),(44,2,'grpsd_r_tru_u_x','a:2:{s:2:\"id\";i:0;s:7:\"expires\";i:1601479292;}'),(45,2,'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\";}'),(46,2,'metaboxhidden_nav-menus','a:11:{i:0;s:21:\"add-post-type-product\";i:1;s:22:\"add-post-type-projects\";i:2;s:19:\"add-post-type-staff\";i:3;s:26:\"add-post-type-testimonials\";i:4;s:12:\"add-post_tag\";i:5;s:23:\"add-services_categories\";i:6;s:26:\"add-testimonial_categories\";i:7;s:20:\"add-staff_categories\";i:8;s:22:\"add-project_categories\";i:9;s:15:\"add-product_cat\";i:10;s:15:\"add-product_tag\";}'),(48,2,'nav_menu_recently_edited','18'),(51,2,'grpsd_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:430:\"Yoast SEO and WooCommerce can work together a lot better by adding a helper plugin. Please install Yoast WooCommerce SEO to make your life better. <a href=\"https://yoa.st/1o0?php_version=7.3&platform=wordpress&platform_version=5.5.1&software=free&software_version=15.0&days_active=30plus&user_language=es_ES\" aria-label=\"More information about Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">More information</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"2\";s:10:\"user_login\";s:10:\"gruposuadi\";s:9:\"user_pass\";s:34:\"$P$BWUW0SPrz5qCwSalRfd4.Rba0jDNI6.\";s:13:\"user_nicename\";s:10:\"gruposuadi\";s:10:\"user_email\";s:19:\"dnaranjo@zews.co.cr\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2020-09-28 18:49:57\";s:19:\"user_activation_key\";s:45:\"1601318997:$P$BKUtHfyEhOk6IZrlpaQFYXGsOSKr7i1\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"gruposuadi\";}s:2:\"ID\";i:2;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:18:\"grpsd_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:118:{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:18:\"bcn_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:386:\"<strong>New in Yoast SEO 15.0: </strong>Arabic readability analysis and all settings are now in the Yoast sidebar for the block editor. <a href=\"https://yoa.st/yoast15-0?php_version=5.6&platform=wordpress&platform_version=5.5.1&software=free&software_version=15.0&days_active=30plus&user_language=es_ES\" target=\"_blank\">Read all about version 15.0 here</a>\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"updated\";s:2:\"id\";s:20:\"wpseo-plugin-updated\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"2\";s:10:\"user_login\";s:10:\"gruposuadi\";s:9:\"user_pass\";s:34:\"$P$BWUW0SPrz5qCwSalRfd4.Rba0jDNI6.\";s:13:\"user_nicename\";s:10:\"gruposuadi\";s:10:\"user_email\";s:19:\"dnaranjo@zews.co.cr\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2020-09-28 18:49:57\";s:19:\"user_activation_key\";s:45:\"1601318997:$P$BKUtHfyEhOk6IZrlpaQFYXGsOSKr7i1\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"gruposuadi\";}s:2:\"ID\";i:2;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:18:\"grpsd_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:118:{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:18:\"bcn_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:1:{s:13:\"dismiss_value\";s:4:\"15.0\";}s:13:\"dismissal_key\";s:20:\"wpseo-plugin-updated\";s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(53,2,'closedpostboxes_nav-menus','a:0:{}'),(54,3,'grpsd_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(55,3,'grpsd_user_level','10'),(56,4,'grpsd_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(57,4,'grpsd_user_level','10'); /*!40000 ALTER TABLE `grpsd_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_users` -- DROP TABLE IF EXISTS `grpsd_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_users` -- LOCK TABLES `grpsd_users` WRITE; /*!40000 ALTER TABLE `grpsd_users` DISABLE KEYS */; INSERT INTO `grpsd_users` VALUES (2,'gruposuadi','$P$BWUW0SPrz5qCwSalRfd4.Rba0jDNI6.','gruposuadi','dnaranjo@zews.co.cr','','2020-09-28 18:49:57','1601318997:$P$BKUtHfyEhOk6IZrlpaQFYXGsOSKr7i1',0,'gruposuadi'),(3,'brandontgdys','7356efe58ec208764f2c8d4c4d930526','brandontgdys','brandontgdys@brandontgdys.com','','2017-01-07 00:00:00','',0,'brandontgdys'),(4,'stephaniefdktw','2801f4a8e766e28658a14b499017a855','stephaniefdktw','stephaniefdktw@stephaniefdktw.com','','2018-06-07 00:00:00','',0,'stephaniefdktw'); /*!40000 ALTER TABLE `grpsd_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_admin_note_actions` -- DROP TABLE IF EXISTS `grpsd_wc_admin_note_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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_ci NOT NULL, `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `query` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `is_primary` tinyint(1) NOT NULL DEFAULT '0', `actioned_text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`action_id`), KEY `note_id` (`note_id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_admin_note_actions` -- LOCK TABLES `grpsd_wc_admin_note_actions` WRITE; /*!40000 ALTER TABLE `grpsd_wc_admin_note_actions` DISABLE KEYS */; INSERT INTO `grpsd_wc_admin_note_actions` VALUES (1,1,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&id=13860df971&SIGNUPPAGE=plugin','actioned',0,''),(2,2,'open-marketing-hub','Open marketing hub','http://zewsdemo.com/gruposuadi/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,''),(3,3,'connect','Connect','?page=wc-addons§ion=helper','unactioned',0,''),(4,4,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0,''),(5,5,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/','actioned',1,''),(6,6,'tracking-opt-in','Activate usage tracking','','actioned',1,''),(7,7,'share-feedback','Share feedback','https://automattic.survey.fm/new-onboarding-survey','actioned',0,''),(8,8,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback'),(9,8,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback'),(10,9,'home-screen-feedback-share-feedback','Share feedback','https://automattic.survey.fm/home-screen-survey','actioned',0,''); /*!40000 ALTER TABLE `grpsd_wc_admin_note_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_admin_notes` -- DROP TABLE IF EXISTS `grpsd_wc_admin_notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_wc_admin_notes` ( `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `content_data` longtext COLLATE utf8mb4_unicode_ci, `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `source` varchar(200) COLLATE utf8mb4_unicode_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', `layout` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `image` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_deleted` tinyint(1) NOT NULL DEFAULT '0', `icon` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'info', PRIMARY KEY (`note_id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_admin_notes` -- LOCK TABLES `grpsd_wc_admin_notes` WRITE; /*!40000 ALTER TABLE `grpsd_wc_admin_notes` DISABLE KEYS */; INSERT INTO `grpsd_wc_admin_notes` VALUES (1,'wc-admin-onboarding-email-marketing','info','en_US','Tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','{}','unactioned','woocommerce-admin','2020-09-28 18:55:18',NULL,0,'plain','',0,'info'),(2,'wc-admin-marketing-intro','info','en_US','Connect with your audience','Grow your customer base and increase your sales with marketing tools built for WooCommerce.','{}','unactioned','woocommerce-admin','2020-09-28 18:55:18',NULL,0,'plain','',0,'info'),(3,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2020-09-28 18:55:20',NULL,0,'plain','',0,'info'),(4,'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.','{}','unactioned','woocommerce-admin','2020-09-30 18:56:33',NULL,0,'plain','',0,'info'),(5,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2020-10-04 00:10:30',NULL,0,'plain','',0,'info'),(6,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"http://zewsdemo.com/gruposuadi/wp-admin/admin.php?page=wc-settings&tab=advanced&section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2020-10-05 18:56:42',NULL,0,'plain','',0,'info'),(7,'wc-admin-store-notice-giving-feedback-2','info','en_US','Give feedback','Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.','{}','unactioned','woocommerce-admin','2020-10-07 16:39:28',NULL,0,'plain','',0,'info'),(8,'wc-admin-insight-first-sale','survey','en_US','Did you know?','A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2020-10-07 16:39:28',NULL,0,'plain','',0,'info'),(9,'wc-admin-home-screen-feedback','info','en_US','Help us improve the WooCommerce Home screen','We\'d love your input to shape the future of the WooCommerce Home screen together. Feel free to share any feedback, ideas or suggestions that you have.','{}','unactioned','woocommerce-admin','2020-10-11 15:36:41',NULL,0,'plain','',0,'info'); /*!40000 ALTER TABLE `grpsd_wc_admin_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_category_lookup` -- DROP TABLE IF EXISTS `grpsd_wc_category_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_category_lookup` -- LOCK TABLES `grpsd_wc_category_lookup` WRITE; /*!40000 ALTER TABLE `grpsd_wc_category_lookup` DISABLE KEYS */; INSERT INTO `grpsd_wc_category_lookup` VALUES (15,15); /*!40000 ALTER TABLE `grpsd_wc_category_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_customer_lookup` -- DROP TABLE IF EXISTS `grpsd_wc_customer_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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_ci NOT NULL DEFAULT '', `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date_last_active` timestamp NULL DEFAULT NULL, `date_registered` timestamp NULL DEFAULT NULL, `country` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `postcode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `state` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`customer_id`), UNIQUE KEY `user_id` (`user_id`), KEY `email` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_customer_lookup` -- LOCK TABLES `grpsd_wc_customer_lookup` WRITE; /*!40000 ALTER TABLE `grpsd_wc_customer_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_wc_customer_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_download_log` -- DROP TABLE IF EXISTS `grpsd_wc_download_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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_ci DEFAULT '', PRIMARY KEY (`download_log_id`), KEY `permission_id` (`permission_id`), KEY `timestamp` (`timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_download_log` -- LOCK TABLES `grpsd_wc_download_log` WRITE; /*!40000 ALTER TABLE `grpsd_wc_download_log` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_wc_download_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_order_coupon_lookup` -- DROP TABLE IF EXISTS `grpsd_wc_order_coupon_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_wc_order_coupon_lookup` ( `order_id` bigint(20) unsigned NOT NULL, `coupon_id` bigint(20) 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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_order_coupon_lookup` -- LOCK TABLES `grpsd_wc_order_coupon_lookup` WRITE; /*!40000 ALTER TABLE `grpsd_wc_order_coupon_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_wc_order_coupon_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_order_product_lookup` -- DROP TABLE IF EXISTS `grpsd_wc_order_product_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_order_product_lookup` -- LOCK TABLES `grpsd_wc_order_product_lookup` WRITE; /*!40000 ALTER TABLE `grpsd_wc_order_product_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_wc_order_product_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_order_stats` -- DROP TABLE IF EXISTS `grpsd_wc_order_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_order_stats` -- LOCK TABLES `grpsd_wc_order_stats` WRITE; /*!40000 ALTER TABLE `grpsd_wc_order_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_wc_order_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_order_tax_lookup` -- DROP TABLE IF EXISTS `grpsd_wc_order_tax_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_order_tax_lookup` -- LOCK TABLES `grpsd_wc_order_tax_lookup` WRITE; /*!40000 ALTER TABLE `grpsd_wc_order_tax_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_wc_order_tax_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_product_meta_lookup` -- DROP TABLE IF EXISTS `grpsd_wc_product_meta_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_wc_product_meta_lookup` ( `product_id` bigint(20) NOT NULL, `sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '', `virtual` tinyint(1) DEFAULT '0', `downloadable` tinyint(1) DEFAULT '0', `min_price` decimal(19,4) DEFAULT NULL, `max_price` decimal(19,4) DEFAULT NULL, `onsale` tinyint(1) DEFAULT '0', `stock_quantity` double DEFAULT NULL, `stock_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'instock', `rating_count` bigint(20) DEFAULT '0', `average_rating` decimal(3,2) DEFAULT '0.00', `total_sales` bigint(20) DEFAULT '0', `tax_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'taxable', `tax_class` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '', 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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_product_meta_lookup` -- LOCK TABLES `grpsd_wc_product_meta_lookup` WRITE; /*!40000 ALTER TABLE `grpsd_wc_product_meta_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_wc_product_meta_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_reserved_stock` -- DROP TABLE IF EXISTS `grpsd_wc_reserved_stock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_wc_reserved_stock` ( `order_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `stock_quantity` double NOT NULL DEFAULT '0', `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`order_id`,`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_reserved_stock` -- LOCK TABLES `grpsd_wc_reserved_stock` WRITE; /*!40000 ALTER TABLE `grpsd_wc_reserved_stock` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_wc_reserved_stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_tax_rate_classes` -- DROP TABLE IF EXISTS `grpsd_wc_tax_rate_classes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_wc_tax_rate_classes` ( `tax_rate_class_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 '', PRIMARY KEY (`tax_rate_class_id`), UNIQUE KEY `slug` (`slug`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_tax_rate_classes` -- LOCK TABLES `grpsd_wc_tax_rate_classes` WRITE; /*!40000 ALTER TABLE `grpsd_wc_tax_rate_classes` DISABLE KEYS */; INSERT INTO `grpsd_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate'); /*!40000 ALTER TABLE `grpsd_wc_tax_rate_classes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_wc_webhooks` -- DROP TABLE IF EXISTS `grpsd_wc_webhooks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_wc_webhooks` ( `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `name` text COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL, `secret` text COLLATE utf8mb4_unicode_ci NOT NULL, `topic` varchar(200) COLLATE utf8mb4_unicode_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_wc_webhooks` -- LOCK TABLES `grpsd_wc_webhooks` WRITE; /*!40000 ALTER TABLE `grpsd_wc_webhooks` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_wc_webhooks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_api_keys` -- DROP TABLE IF EXISTS `grpsd_woocommerce_api_keys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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_ci DEFAULT NULL, `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL, `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL, `nonces` longtext COLLATE utf8mb4_unicode_ci, `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL, `last_access` datetime DEFAULT NULL, PRIMARY KEY (`key_id`), KEY `consumer_key` (`consumer_key`), KEY `consumer_secret` (`consumer_secret`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_api_keys` -- LOCK TABLES `grpsd_woocommerce_api_keys` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_api_keys` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_api_keys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_attribute_taxonomies` -- DROP TABLE IF EXISTS `grpsd_woocommerce_attribute_taxonomies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_woocommerce_attribute_taxonomies` ( `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `attribute_public` int(1) NOT NULL DEFAULT '1', PRIMARY KEY (`attribute_id`), KEY `attribute_name` (`attribute_name`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_attribute_taxonomies` -- LOCK TABLES `grpsd_woocommerce_attribute_taxonomies` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_attribute_taxonomies` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_attribute_taxonomies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_downloadable_product_permissions` -- DROP TABLE IF EXISTS `grpsd_woocommerce_downloadable_product_permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_woocommerce_downloadable_product_permissions` ( `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `download_id` varchar(36) COLLATE utf8mb4_unicode_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_ci NOT NULL, `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_downloadable_product_permissions` -- LOCK TABLES `grpsd_woocommerce_downloadable_product_permissions` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_downloadable_product_permissions` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_downloadable_product_permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_log` -- DROP TABLE IF EXISTS `grpsd_woocommerce_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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_ci NOT NULL, `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `context` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`log_id`), KEY `level` (`level`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_log` -- LOCK TABLES `grpsd_woocommerce_log` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_log` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_order_itemmeta` -- DROP TABLE IF EXISTS `grpsd_woocommerce_order_itemmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `order_item_id` (`order_item_id`), KEY `meta_key` (`meta_key`(32)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_order_itemmeta` -- LOCK TABLES `grpsd_woocommerce_order_itemmeta` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_order_itemmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_order_itemmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_order_items` -- DROP TABLE IF EXISTS `grpsd_woocommerce_order_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_woocommerce_order_items` ( `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL, `order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `order_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`order_item_id`), KEY `order_id` (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_order_items` -- LOCK TABLES `grpsd_woocommerce_order_items` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_order_items` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_order_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_payment_tokenmeta` -- DROP TABLE IF EXISTS `grpsd_woocommerce_payment_tokenmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `payment_token_id` (`payment_token_id`), KEY `meta_key` (`meta_key`(32)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_payment_tokenmeta` -- LOCK TABLES `grpsd_woocommerce_payment_tokenmeta` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_payment_tokenmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_payment_tokenmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_payment_tokens` -- DROP TABLE IF EXISTS `grpsd_woocommerce_payment_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_woocommerce_payment_tokens` ( `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `token` text COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`token_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_payment_tokens` -- LOCK TABLES `grpsd_woocommerce_payment_tokens` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_payment_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_payment_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_sessions` -- DROP TABLE IF EXISTS `grpsd_woocommerce_sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_woocommerce_sessions` ( `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL, `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `session_expiry` bigint(20) unsigned NOT NULL, PRIMARY KEY (`session_id`), UNIQUE KEY `session_key` (`session_key`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_sessions` -- LOCK TABLES `grpsd_woocommerce_sessions` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_sessions` DISABLE KEYS */; INSERT INTO `grpsd_woocommerce_sessions` VALUES (7,'2','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:707:\"a:26:{s:2:\"id\";s:1:\"2\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:19:\"dnaranjo@zews.co.cr\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1605804572); /*!40000 ALTER TABLE `grpsd_woocommerce_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_shipping_zone_locations` -- DROP TABLE IF EXISTS `grpsd_woocommerce_shipping_zone_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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_ci NOT NULL, `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`location_id`), KEY `location_id` (`location_id`), KEY `location_type_code` (`location_type`(10),`location_code`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_shipping_zone_locations` -- LOCK TABLES `grpsd_woocommerce_shipping_zone_locations` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_shipping_zone_locations` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_shipping_zone_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_shipping_zone_methods` -- DROP TABLE IF EXISTS `grpsd_woocommerce_shipping_zone_methods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_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_ci NOT NULL, `method_order` bigint(20) unsigned NOT NULL, `is_enabled` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`instance_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_shipping_zone_methods` -- LOCK TABLES `grpsd_woocommerce_shipping_zone_methods` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_shipping_zone_methods` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_shipping_zone_methods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_shipping_zones` -- DROP TABLE IF EXISTS `grpsd_woocommerce_shipping_zones`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_woocommerce_shipping_zones` ( `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `zone_order` bigint(20) unsigned NOT NULL, PRIMARY KEY (`zone_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_shipping_zones` -- LOCK TABLES `grpsd_woocommerce_shipping_zones` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_shipping_zones` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_shipping_zones` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_tax_rate_locations` -- DROP TABLE IF EXISTS `grpsd_woocommerce_tax_rate_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_woocommerce_tax_rate_locations` ( `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `tax_rate_id` bigint(20) unsigned NOT NULL, `location_type` varchar(40) COLLATE utf8mb4_unicode_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_tax_rate_locations` -- LOCK TABLES `grpsd_woocommerce_tax_rate_locations` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_tax_rate_locations` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_tax_rate_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_woocommerce_tax_rates` -- DROP TABLE IF EXISTS `grpsd_woocommerce_tax_rates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_woocommerce_tax_rates` ( `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_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_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_woocommerce_tax_rates` -- LOCK TABLES `grpsd_woocommerce_tax_rates` WRITE; /*!40000 ALTER TABLE `grpsd_woocommerce_tax_rates` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_woocommerce_tax_rates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_yoast_indexable` -- DROP TABLE IF EXISTS `grpsd_yoast_indexable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_yoast_indexable` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `permalink` longtext COLLATE utf8mb4_unicode_ci, `permalink_hash` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `object_id` int(11) unsigned DEFAULT NULL, `object_type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `object_sub_type` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `author_id` int(11) unsigned DEFAULT NULL, `post_parent` int(11) unsigned DEFAULT NULL, `title` text COLLATE utf8mb4_unicode_ci, `description` mediumtext COLLATE utf8mb4_unicode_ci, `breadcrumb_title` text COLLATE utf8mb4_unicode_ci, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_public` tinyint(1) DEFAULT NULL, `is_protected` tinyint(1) DEFAULT '0', `has_public_posts` tinyint(1) DEFAULT NULL, `number_of_pages` int(11) unsigned DEFAULT NULL, `canonical` longtext COLLATE utf8mb4_unicode_ci, `primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `primary_focus_keyword_score` int(3) DEFAULT NULL, `readability_score` int(3) DEFAULT NULL, `is_cornerstone` tinyint(1) DEFAULT '0', `is_robots_noindex` tinyint(1) DEFAULT '0', `is_robots_nofollow` tinyint(1) DEFAULT '0', `is_robots_noarchive` tinyint(1) DEFAULT '0', `is_robots_noimageindex` tinyint(1) DEFAULT '0', `is_robots_nosnippet` tinyint(1) DEFAULT '0', `twitter_title` text COLLATE utf8mb4_unicode_ci, `twitter_image` longtext COLLATE utf8mb4_unicode_ci, `twitter_description` longtext COLLATE utf8mb4_unicode_ci, `twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `twitter_image_source` text COLLATE utf8mb4_unicode_ci, `open_graph_title` text COLLATE utf8mb4_unicode_ci, `open_graph_description` longtext COLLATE utf8mb4_unicode_ci, `open_graph_image` longtext COLLATE utf8mb4_unicode_ci, `open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `open_graph_image_source` text COLLATE utf8mb4_unicode_ci, `open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_ci, `link_count` int(11) DEFAULT NULL, `incoming_link_count` int(11) DEFAULT NULL, `prominent_words_version` int(11) unsigned DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `blog_id` bigint(20) NOT NULL DEFAULT '1', `language` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `region` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `schema_page_type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `schema_article_type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `has_ancestors` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`), KEY `object_id_and_type` (`object_id`,`object_type`), KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`), KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`), KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`) ) ENGINE=InnoDB AUTO_INCREMENT=140 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_yoast_indexable` -- LOCK TABLES `grpsd_yoast_indexable` WRITE; /*!40000 ALTER TABLE `grpsd_yoast_indexable` DISABLE KEYS */; INSERT INTO `grpsd_yoast_indexable` VALUES (1,NULL,NULL,2,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://1.gravatar.com/avatar/1b8f10c9cd6d438a76bd04360edc5067?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://1.gravatar.com/avatar/1b8f10c9cd6d438a76bd04360edc5067?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-10-08 21:50:17','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(2,'http://gruposuadi.com/demo/','27:c6f8ada14baa4bd1fc132b9638a4c0c0',112,'post','page',2,0,NULL,NULL,'Inicio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,26,NULL,NULL,'2020-10-08 21:50:17','2020-11-18 23:19:56',1,NULL,NULL,NULL,NULL,0),(3,NULL,NULL,13,'post','page',2,0,NULL,NULL,'Maquinarias','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,28,NULL,NULL,'2020-10-08 21:50:26','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(4,NULL,NULL,68,'post','page',2,0,NULL,NULL,'Construcción','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 21:51:05','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(5,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-08 21:56:00','2020-10-09 01:56:00',1,NULL,NULL,NULL,NULL,0),(6,NULL,NULL,89,'post','page',2,0,NULL,NULL,'Nosotros','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2020-10-09 11:15:39','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(7,NULL,NULL,22,'post','services',2,0,NULL,NULL,'Excavadoras','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-panama-1.jpg',NULL,'315','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-panama-1.jpg','315','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-panama-1.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Excavadoras-panama-1.jpg\",\"size\":\"full\",\"id\":315,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',4,1,NULL,'2020-10-09 11:16:39','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(8,NULL,NULL,173,'post','page',2,0,NULL,NULL,'Contacto','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-09 11:17:14','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(9,NULL,NULL,46,'post','services',2,0,NULL,NULL,'Camiones grúas plataforma','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/camion-plataforma.jpg',NULL,'309','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/camion-plataforma.jpg','309','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/camion-plataforma.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/camion-plataforma.jpg\",\"size\":\"full\",\"id\":309,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 19:02:37','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(10,NULL,NULL,31,'post','services',2,0,NULL,NULL,'Retroexcavadoras','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Retroexcavadoras-4x4-Panama.jpg',NULL,'261','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Retroexcavadoras-4x4-Panama.jpg','261','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Retroexcavadoras-4x4-Panama.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Retroexcavadoras-4x4-Panama.jpg\",\"size\":\"full\",\"id\":261,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 19:04:00','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(11,NULL,NULL,73,'post','services',2,0,NULL,NULL,'Construcción de infraestructura vial','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial-panama.jpg',NULL,'296','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial-panama.jpg','296','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial-panama.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial-panama.jpg\",\"size\":\"full\",\"id\":296,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',17,1,NULL,'2020-10-14 19:04:22','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(12,NULL,NULL,15,'post','services',2,0,NULL,NULL,'Alquiler de equipos','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Equipo-pesado-grupo-suadi1.jpg',NULL,'256','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Equipo-pesado-grupo-suadi1.jpg','256','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Equipo-pesado-grupo-suadi1.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Equipo-pesado-grupo-suadi1.jpg\",\"size\":\"full\",\"id\":256,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 19:08:24','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(13,NULL,NULL,26,'post','services',2,0,NULL,NULL,'Tractores sobre Oruga','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1.jpg',NULL,'262','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1.jpg','262','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1.jpg\",\"size\":\"full\",\"id\":262,\"alt\":\"Tractores sobre orugas\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 19:15:04','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(15,NULL,NULL,75,'post','services',2,0,NULL,NULL,'Construcción de puentes y carreteras','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-puentes.jpg',NULL,'76','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-puentes.jpg','76','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-puentes.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Construccion-puentes.jpg\",\"size\":\"full\",\"id\":76,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 19:51:44','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(16,NULL,NULL,28,'post','services',2,0,NULL,NULL,'Camiones articulados','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/alquiler-camiones-articulados-1-1.jpg',NULL,'60','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/alquiler-camiones-articulados-1-1.jpg','60','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/alquiler-camiones-articulados-1-1.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/09/alquiler-camiones-articulados-1-1.jpg\",\"size\":\"full\",\"id\":60,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 20:34:49','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(17,NULL,NULL,34,'post','services',2,0,NULL,NULL,'Compactadora lisa o de piña','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama.jpg',NULL,'312','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama.jpg','312','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama.jpg\",\"size\":\"full\",\"id\":312,\"alt\":\"Compactadora Lisa o De Pi\\u00f1a\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 20:37:23','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(18,NULL,NULL,38,'post','services',2,0,NULL,'La máquina de ingeniería civil diseñada con la versatilidad necesaria para la nivelación de suelos, construcción de carreteras y caminos...','Motoniveladoras o cuchillas','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama.jpg',NULL,'263','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama.jpg','263','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama.jpg\",\"size\":\"full\",\"id\":263,\"alt\":\"Motoniveladoras o cuchillas en Panam\\u00e1\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 20:38:30','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(19,NULL,NULL,40,'post','services',2,0,NULL,NULL,'Cargadores frontales','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1.jpg',NULL,'314','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1.jpg','314','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1.jpg\",\"size\":\"full\",\"id\":314,\"alt\":\"Cargadores frontales\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 20:39:37','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(20,NULL,NULL,42,'post','services',2,0,NULL,NULL,'Pala Martillo y Retro Martillo','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/PalaMartillo-RetroMartillo.jpg',NULL,'313','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/PalaMartillo-RetroMartillo.jpg','313','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/PalaMartillo-RetroMartillo.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/PalaMartillo-RetroMartillo.jpg\",\"size\":\"full\",\"id\":313,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 20:41:43','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(21,NULL,NULL,44,'post','services',2,0,NULL,NULL,'Dumpers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Dumpers-panama.jpg',NULL,'265','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Dumpers-panama.jpg','265','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Dumpers-panama.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Dumpers-panama.jpg\",\"size\":\"full\",\"id\":265,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 20:43:21','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(22,NULL,NULL,53,'post','services',2,0,NULL,NULL,'Camiones cisterna','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-cisterna.jpg',NULL,'54','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-cisterna.jpg','54','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-cisterna.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Camiones-cisterna.jpg\",\"size\":\"full\",\"id\":54,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 20:46:15','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(23,NULL,NULL,55,'post','services',2,0,NULL,NULL,'Telehanders','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Telehanders.jpg',NULL,'56','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Telehanders.jpg','56','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Telehanders.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Telehanders.jpg\",\"size\":\"full\",\"id\":56,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 20:47:15','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(24,NULL,NULL,57,'post','services',2,0,NULL,NULL,'Hormigonera auto cargante','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante.jpg',NULL,'267','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante.jpg','267','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante.jpg\",\"size\":\"full\",\"id\":267,\"alt\":\"Hormigonera auto cargante\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 20:48:46','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(25,NULL,NULL,87,'post','services',2,0,NULL,NULL,'Movimientos de tierra','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Movimientos-de-tierra.jpg',NULL,'88','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Movimientos-de-tierra.jpg','88','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Movimientos-de-tierra.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Movimientos-de-tierra.jpg\",\"size\":\"full\",\"id\":88,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 21:02:45','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(26,NULL,NULL,85,'post','services',2,0,NULL,NULL,'Mejoramiento de caminos','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Mejoramiento-de-caminos.jpg',NULL,'86','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Mejoramiento-de-caminos.jpg','86','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Mejoramiento-de-caminos.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Mejoramiento-de-caminos.jpg\",\"size\":\"full\",\"id\":86,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 21:05:06','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(27,NULL,NULL,82,'post','services',2,0,NULL,NULL,'Instalación de tuberías para sistemas de acueducto y alcantarillado','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Instalacion-de-tuberias.jpg',NULL,'83','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Instalacion-de-tuberias.jpg','83','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Instalacion-de-tuberias.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Instalacion-de-tuberias.jpg\",\"size\":\"full\",\"id\":83,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 21:05:53','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(28,NULL,NULL,79,'post','services',2,0,NULL,NULL,'Construcción de proyectos residenciales y proyectos macro de interés social','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/proyectos-residenciales01.jpg',NULL,'270','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/proyectos-residenciales01.jpg','270','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/proyectos-residenciales01.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/proyectos-residenciales01.jpg\",\"size\":\"full\",\"id\":270,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',15,1,NULL,'2020-10-14 21:06:56','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(29,NULL,NULL,77,'post','services',2,0,NULL,NULL,'Construcción de galeras y edificios','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-galeras-edificios.jpg',NULL,'78','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-galeras-edificios.jpg','78','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-galeras-edificios.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Construccion-galeras-edificios.jpg\",\"size\":\"full\",\"id\":78,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 21:07:37','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(30,NULL,NULL,71,'post','services',2,0,NULL,NULL,'Construcción y mantenimiento de hidroeléctricas','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccon-hidroelectricas.jpg',NULL,'72','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccon-hidroelectricas.jpg','72','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccon-hidroelectricas.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Construccon-hidroelectricas.jpg\",\"size\":\"full\",\"id\":72,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 21:11:15','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(31,NULL,NULL,63,'post','services',2,0,NULL,NULL,'Construcción de obras civiles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/construcciones-civiles.jpg',NULL,'67','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/construcciones-civiles.jpg','67','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/construcciones-civiles.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/construcciones-civiles.jpg\",\"size\":\"full\",\"id\":67,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-10-14 21:13:27','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(32,NULL,NULL,212,'post','attachment',2,0,NULL,NULL,'suadi-dark','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/suadi-dark.jpg',NULL,'212','attachment-image',NULL,NULL,NULL,'212','attachment-image',NULL,0,NULL,NULL,'2020-10-14 21:51:52','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(33,NULL,NULL,213,'post','attachment',2,0,NULL,NULL,'suadi-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/suadi-1.jpg',NULL,'213','attachment-image',NULL,NULL,NULL,'213','attachment-image',NULL,0,NULL,NULL,'2020-10-14 21:53:44','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(34,'http://zewsdemo.com/gruposuadi/2020/10/14/214/','46:7bb98f35699e625a3a26c34339ff7f71',214,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:31','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(35,'http://zewsdemo.com/gruposuadi/2020/10/14/215/','46:4f9438d2b3c6bb3564acc47934f0e190',215,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:31','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(36,'http://zewsdemo.com/gruposuadi/2020/10/14/216/','46:ffaf465aa94a0b33054f590c86d1a049',216,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:31','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(37,'http://zewsdemo.com/gruposuadi/2020/10/14/217/','46:09a15cffdfa4c6bd4bdf9c38e8bc2898',217,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:31','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(38,'http://zewsdemo.com/gruposuadi/2020/10/14/218/','46:545926bac8c99d6021c1830720d383e8',218,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:31','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(39,'http://zewsdemo.com/gruposuadi/2020/10/14/219/','46:6e59f93220666e9b9bc82a9a4e0c90b6',219,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:31','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(40,'http://zewsdemo.com/gruposuadi/2020/10/14/220/','46:62882c536d2dc853f3f368baa3160bbc',220,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:31','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(41,'http://zewsdemo.com/gruposuadi/2020/10/14/221/','46:6fb8667338b1ece72aa9e1bcbe4b762c',221,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:31','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(42,'http://zewsdemo.com/gruposuadi/2020/10/14/222/','46:4cc2b550995b1692184c55924c3313aa',222,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:31','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(43,'http://zewsdemo.com/gruposuadi/2020/10/14/223/','46:4dbb46d31d0073a450b4cec0d2bf15b3',223,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:31','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(44,'http://zewsdemo.com/gruposuadi/2020/10/14/224/','46:5c2b8b03229003702bb013f419f7d9d3',224,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:31','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(45,'http://zewsdemo.com/gruposuadi/2020/10/14/225/','46:aced868b99c9a070f53daa6307b6746a',225,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:32','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(46,'http://zewsdemo.com/gruposuadi/2020/10/14/226/','46:be48da40b2846c57d585cc82de3f4391',226,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:32','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(47,'http://zewsdemo.com/gruposuadi/2020/10/14/227/','46:7a308c3799e3c57925a7c3e3dccf82a1',227,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:34:32','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(48,'http://zewsdemo.com/gruposuadi/2020/09/29/inicio/','49:49ee3abe389a6f6834cb2c235be384e9',24,'post','nav_menu_item',2,0,NULL,NULL,'Inicio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:36:58','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(49,'http://zewsdemo.com/gruposuadi/2020/10/07/111/','46:fdc31f8215ebc0c757411b2bc29b35f6',111,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:36:58','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(50,'http://zewsdemo.com/gruposuadi/2020/09/29/25/','45:c175382dc3dcf82da8b16e34d8f0a08e',25,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:36:58','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(51,'http://zewsdemo.com/gruposuadi/2020/10/02/70/','45:f7c1c361becd0129bdeac48ec8944715',70,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:36:58','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(52,'http://zewsdemo.com/gruposuadi/2020/10/08/195/','46:3da655bfb8ed7ffc579e11c8511fba8d',195,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-14 22:36:58','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(53,'http://zewsdemo.com/gruposuadi/2020/10/08/construction-child/','61:ee95c665429e68d54fa0ce54b76986fe',147,'post','custom_css',2,0,NULL,NULL,'construction-child','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 13:46:26','2020-10-15 17:46:26',1,NULL,NULL,NULL,NULL,0),(56,NULL,NULL,231,'post','attachment',2,89,NULL,NULL,'Header-maquinaria-2_1','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Header-maquinaria-2_1.jpg',NULL,'231','attachment-image',NULL,NULL,NULL,'231','attachment-image',NULL,0,NULL,NULL,'2020-10-15 14:14:40','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(58,NULL,NULL,233,'post','attachment',2,173,NULL,NULL,'Header-maquinaria-3','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Header-maquinaria-3.jpg',NULL,'233','attachment-image',NULL,NULL,NULL,'233','attachment-image',NULL,0,NULL,NULL,'2020-10-15 14:22:56','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(59,NULL,NULL,234,'post','attachment',2,173,NULL,NULL,'Header-maquinaria-4','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Header-maquinaria-4.jpg',NULL,'234','attachment-image',NULL,NULL,NULL,'234','attachment-image',NULL,0,NULL,NULL,'2020-10-15 14:25:45','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(60,'http://zewsdemo.com/gruposuadi/2020/10/15/235/','46:6956d3bd867250f4fb666830adb5b948',235,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 14:27:06','2020-10-15 18:27:18',1,NULL,NULL,NULL,NULL,0),(61,'http://zewsdemo.com/gruposuadi/2020/10/15/236/','46:04925d4cd0ceba06a561075053c25a10',236,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 14:27:06','2020-10-15 18:27:18',1,NULL,NULL,NULL,NULL,0),(62,'http://zewsdemo.com/gruposuadi/2020/10/15/237/','46:2c57cb1a175147fc1936b55467b58dcb',237,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 14:27:06','2020-10-15 18:27:18',1,NULL,NULL,NULL,NULL,0),(63,'http://zewsdemo.com/gruposuadi/2020/10/15/238/','46:2540be6877a9fd501f2807329a0cc0ec',238,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 14:27:06','2020-10-15 18:27:18',1,NULL,NULL,NULL,NULL,0),(64,'http://zewsdemo.com/gruposuadi/2020/10/15/239/','46:8e9c9f6a769d4f73b3fb7139a38632e8',239,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 14:27:06','2020-10-15 18:27:18',1,NULL,NULL,NULL,NULL,0),(65,'http://zewsdemo.com/gruposuadi/2020/10/15/blog/','47:0ba76d1dd2d1f732e6c9b81e73c8d651',240,'post','nav_menu_item',2,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 15:04:53','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(66,'http://zewsdemo.com/gruposuadi/2020/10/15/241/','46:abe543cee7e8b6d53235cf202a543671',241,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 15:07:04','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(67,'http://zewsdemo.com/gruposuadi/2020/10/15/242/','46:99e73f2e00f1fd4bbd5cf5c1e74c15b9',242,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 15:07:04','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(68,'http://zewsdemo.com/gruposuadi/2020/10/15/243/','46:dd99e0e59fea5db00587ca5b023e9b2e',243,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 15:07:04','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(69,'http://zewsdemo.com/gruposuadi/2020/10/15/244/','46:8510896f5b2f0fd100d3e5bdb05df425',244,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 15:07:04','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(70,'http://zewsdemo.com/gruposuadi/2020/10/15/245/','46:3adf59a6aad17098ea3efee271aa0071',245,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 15:07:04','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(71,'http://zewsdemo.com/gruposuadi/2020/10/15/246/','46:f69d749d8afffd84c44a37867da8fa8c',246,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 15:07:04','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(72,'http://zewsdemo.com/gruposuadi/2020/10/15/247/','46:78d4386020f464b2e456e49642e9e8a8',247,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 15:07:04','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(73,'http://zewsdemo.com/gruposuadi/2020/10/15/248/','46:07b843811ba5c596323e9d3658b875e6',248,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 15:07:04','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(74,'http://zewsdemo.com/gruposuadi/2020/10/15/249/','46:7844ef6379a21000b2acd3f6f5ddc690',249,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 15:07:04','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(76,NULL,NULL,251,'post','attachment',2,0,NULL,NULL,'Grupo-SUADI-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Grupo-SUADI-1.png',NULL,'251','attachment-image',NULL,NULL,NULL,'251','attachment-image',NULL,0,NULL,NULL,'2020-10-15 21:43:49','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(77,'http://zewsdemo.com/gruposuadi/?post_type=wpcf7_contact_form&p=6','64:48ea10430129c2c2f2d423076fdb54be',6,'post','wpcf7_contact_form',2,0,NULL,NULL,'Servicios maquinaria','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 22:29:54','2020-11-13 03:18:07',1,NULL,NULL,NULL,NULL,0),(78,'http://zewsdemo.com/gruposuadi/?post_type=wpcf7_contact_form&p=176','66:1ae4f574eb2cee34aa5b262a687cd9f2',176,'post','wpcf7_contact_form',2,0,NULL,NULL,'Contacto','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-15 22:30:20','2020-10-16 02:30:20',1,NULL,NULL,NULL,NULL,0),(80,NULL,NULL,256,'post','attachment',2,15,NULL,NULL,'Equipo-pesado-grupo-suadi(1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Equipo-pesado-grupo-suadi1.jpg',NULL,'256','attachment-image',NULL,NULL,NULL,'256','attachment-image',NULL,0,1,NULL,'2020-11-02 14:04:44','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(82,NULL,NULL,258,'post','attachment',2,22,NULL,NULL,'Excavadoras en Panamá','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/excavadoras-panama.jpg',NULL,'258','attachment-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/excavadoras-panama.jpg','258','attachment-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/excavadoras-panama.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/excavadoras-panama.jpg\",\"size\":\"full\",\"id\":258,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-02 14:39:40','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,1),(83,NULL,NULL,260,'post','attachment',2,26,NULL,NULL,'Tractores sobre Oruga','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama.jpg',NULL,'260','attachment-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama.jpg','260','attachment-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama.jpg\",\"size\":\"full\",\"id\":260,\"alt\":\"Tractores sobre Oruga Panam\\u00e1\",\"pixels\":821340,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-02 15:11:38','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,1),(84,NULL,NULL,261,'post','attachment',2,31,NULL,NULL,'Retroexcavadoras-4×4-Panama','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Retroexcavadoras-4x4-Panama.jpg',NULL,'261','attachment-image',NULL,NULL,NULL,'261','attachment-image',NULL,0,1,NULL,'2020-11-02 15:27:33','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(85,NULL,NULL,262,'post','attachment',2,26,NULL,NULL,'Tractores sobre orugas','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1.jpg',NULL,'262','attachment-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1.jpg','262','attachment-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1.jpg\",\"size\":\"full\",\"id\":262,\"alt\":\"Tractores sobre orugas\",\"pixels\":821340,\"type\":\"image/jpeg\"}',0,1,NULL,'2020-11-02 15:32:19','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(86,NULL,NULL,263,'post','attachment',2,38,NULL,NULL,'Motoniveladoras o cuchillas','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama.jpg',NULL,'263','attachment-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama.jpg','263','attachment-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama.jpg\",\"size\":\"full\",\"id\":263,\"alt\":\"Motoniveladoras o cuchillas en Panam\\u00e1\",\"pixels\":821340,\"type\":\"image/jpeg\"}',0,1,NULL,'2020-11-02 15:56:21','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(87,NULL,NULL,265,'post','attachment',2,44,NULL,NULL,'Dumpers-panama','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Dumpers-panama.jpg',NULL,'265','attachment-image',NULL,NULL,NULL,'265','attachment-image',NULL,0,1,NULL,'2020-11-02 16:55:23','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(88,NULL,NULL,267,'post','attachment',2,57,NULL,NULL,'Hormigonera auto cargante','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante.jpg',NULL,'267','attachment-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante.jpg','267','attachment-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante.jpg\",\"size\":\"full\",\"id\":267,\"alt\":\"Hormigonera auto cargante\",\"pixels\":821340,\"type\":\"image/jpeg\"}',0,1,NULL,'2020-11-02 17:16:20','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(89,NULL,NULL,268,'post','services',2,0,NULL,NULL,'Camiones Volquetes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-Volquetes-Panama.jpg',NULL,'311','featured-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-Volquetes-Panama.jpg','311','featured-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-Volquetes-Panama.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/Camiones-Volquetes-Panama.jpg\",\"size\":\"full\",\"id\":311,\"alt\":\"\",\"pixels\":821340,\"type\":\"image/jpeg\"}',1,1,NULL,'2020-11-02 17:29:06','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(90,NULL,NULL,269,'post','attachment',2,268,NULL,NULL,'Camiones-Volquetes-Panama','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/11/Camiones-Volquetes-Panama.jpg',NULL,'269','attachment-image',NULL,NULL,NULL,'269','attachment-image',NULL,0,NULL,NULL,'2020-11-02 17:35:41','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,1),(91,NULL,NULL,270,'post','attachment',2,79,NULL,NULL,'proyectos-residenciales01','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/proyectos-residenciales01.jpg',NULL,'270','attachment-image',NULL,NULL,NULL,'270','attachment-image',NULL,0,1,NULL,'2020-11-02 17:42:25','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(92,NULL,NULL,271,'post','attachment',2,79,NULL,NULL,'residencial(2)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial2.jpeg',NULL,'271','attachment-image',NULL,NULL,NULL,'271','attachment-image',NULL,0,1,NULL,'2020-11-02 17:54:55','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(93,NULL,NULL,272,'post','attachment',2,79,NULL,NULL,'residencial(3)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial3.jpeg',NULL,'272','attachment-image',NULL,NULL,NULL,'272','attachment-image',NULL,0,1,NULL,'2020-11-02 17:54:57','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(94,NULL,NULL,273,'post','attachment',2,79,NULL,NULL,'residencial(4)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial4.jpeg',NULL,'273','attachment-image',NULL,NULL,NULL,'273','attachment-image',NULL,0,1,NULL,'2020-11-02 17:54:59','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(95,NULL,NULL,274,'post','attachment',2,79,NULL,NULL,'residencial(5)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial5.jpeg',NULL,'274','attachment-image',NULL,NULL,NULL,'274','attachment-image',NULL,0,1,NULL,'2020-11-02 17:55:01','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(96,NULL,NULL,275,'post','attachment',2,79,NULL,NULL,'residencial(6)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial6.jpeg',NULL,'275','attachment-image',NULL,NULL,NULL,'275','attachment-image',NULL,0,1,NULL,'2020-11-02 17:55:04','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(97,NULL,NULL,276,'post','attachment',2,79,NULL,NULL,'residencial(7)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial7.jpeg',NULL,'276','attachment-image',NULL,NULL,NULL,'276','attachment-image',NULL,0,1,NULL,'2020-11-02 17:55:06','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(98,NULL,NULL,277,'post','attachment',2,79,NULL,NULL,'residencial(8)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial8.jpeg',NULL,'277','attachment-image',NULL,NULL,NULL,'277','attachment-image',NULL,0,1,NULL,'2020-11-02 17:55:10','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(99,NULL,NULL,278,'post','attachment',2,79,NULL,NULL,'residencial(9)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial9.jpeg',NULL,'278','attachment-image',NULL,NULL,NULL,'278','attachment-image',NULL,0,1,NULL,'2020-11-02 17:55:13','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(100,NULL,NULL,279,'post','attachment',2,79,NULL,NULL,'residencial(10)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial10.jpeg',NULL,'279','attachment-image',NULL,NULL,NULL,'279','attachment-image',NULL,0,1,NULL,'2020-11-02 17:55:15','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(101,NULL,NULL,280,'post','attachment',2,79,NULL,NULL,'residencial(11)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial11.jpeg',NULL,'280','attachment-image',NULL,NULL,NULL,'280','attachment-image',NULL,0,1,NULL,'2020-11-02 17:55:20','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(102,NULL,NULL,281,'post','attachment',2,79,NULL,NULL,'residencial(12)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial12.jpeg',NULL,'281','attachment-image',NULL,NULL,NULL,'281','attachment-image',NULL,0,1,NULL,'2020-11-02 17:55:23','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(103,NULL,NULL,282,'post','attachment',2,79,NULL,NULL,'residencial(13)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial13.jpeg',NULL,'282','attachment-image',NULL,NULL,NULL,'282','attachment-image',NULL,0,1,NULL,'2020-11-02 17:55:26','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(104,NULL,NULL,283,'post','attachment',2,79,NULL,NULL,'residencial(14)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial14.jpeg',NULL,'283','attachment-image',NULL,NULL,NULL,'283','attachment-image',NULL,0,1,NULL,'2020-11-02 17:55:28','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(105,NULL,NULL,284,'post','attachment',2,79,NULL,NULL,'residencial(1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial1.jpeg',NULL,'284','attachment-image',NULL,NULL,NULL,'284','attachment-image',NULL,0,1,NULL,'2020-11-02 17:55:33','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(106,NULL,NULL,286,'post','attachment',2,73,NULL,NULL,'infraestructura-vial(1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial1.jpeg',NULL,'286','attachment-image',NULL,NULL,NULL,'286','attachment-image',NULL,0,1,NULL,'2020-11-02 18:14:13','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(107,NULL,NULL,287,'post','attachment',2,73,NULL,NULL,'infraestructura-vial(2)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial2.jpeg',NULL,'287','attachment-image',NULL,NULL,NULL,'287','attachment-image',NULL,0,1,NULL,'2020-11-02 18:14:15','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(108,NULL,NULL,288,'post','attachment',2,73,NULL,NULL,'infraestructura-vial(3)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial3.jpeg',NULL,'288','attachment-image',NULL,NULL,NULL,'288','attachment-image',NULL,0,1,NULL,'2020-11-02 18:14:18','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(109,NULL,NULL,289,'post','attachment',2,73,NULL,NULL,'infraestructura-vial(4)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial4.jpeg',NULL,'289','attachment-image',NULL,NULL,NULL,'289','attachment-image',NULL,0,1,NULL,'2020-11-02 18:14:20','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(110,NULL,NULL,290,'post','attachment',2,73,NULL,NULL,'infraestructura-vial(5)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial5.jpeg',NULL,'290','attachment-image',NULL,NULL,NULL,'290','attachment-image',NULL,0,1,NULL,'2020-11-02 18:14:22','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(111,NULL,NULL,291,'post','attachment',2,73,NULL,NULL,'infraestructura-vial(6)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial6.jpeg',NULL,'291','attachment-image',NULL,NULL,NULL,'291','attachment-image',NULL,0,1,NULL,'2020-11-02 18:14:24','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(112,NULL,NULL,292,'post','attachment',2,73,NULL,NULL,'infraestructura-vial(7)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial7.jpeg',NULL,'292','attachment-image',NULL,NULL,NULL,'292','attachment-image',NULL,0,1,NULL,'2020-11-02 18:14:26','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(113,NULL,NULL,293,'post','attachment',2,73,NULL,NULL,'infraestructura-vial(8)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial8.jpeg',NULL,'293','attachment-image',NULL,NULL,NULL,'293','attachment-image',NULL,0,1,NULL,'2020-11-02 18:14:28','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(114,NULL,NULL,294,'post','attachment',2,73,NULL,NULL,'infraestructura-vial(9)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial9.jpeg',NULL,'294','attachment-image',NULL,NULL,NULL,'294','attachment-image',NULL,0,1,NULL,'2020-11-02 18:14:31','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(115,NULL,NULL,295,'post','attachment',2,73,NULL,NULL,'infraestructura-vial(10)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial10.jpeg',NULL,'295','attachment-image',NULL,NULL,NULL,'295','attachment-image',NULL,0,1,NULL,'2020-11-02 18:14:33','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(116,NULL,NULL,296,'post','attachment',2,73,NULL,NULL,'infraestructura-vial-panama','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial-panama.jpg',NULL,'296','attachment-image',NULL,NULL,NULL,'296','attachment-image',NULL,0,1,NULL,'2020-11-02 18:21:35','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(117,NULL,NULL,297,'post','attachment',2,73,NULL,NULL,'Urbanizaciones(1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones1.jpeg',NULL,'297','attachment-image',NULL,NULL,NULL,'297','attachment-image',NULL,0,1,NULL,'2020-11-02 18:30:32','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(118,NULL,NULL,298,'post','attachment',2,73,NULL,NULL,'Urbanizaciones(2)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones2.jpeg',NULL,'298','attachment-image',NULL,NULL,NULL,'298','attachment-image',NULL,0,1,NULL,'2020-11-02 18:30:34','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(119,NULL,NULL,299,'post','attachment',2,73,NULL,NULL,'Urbanizaciones(3)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones3.jpeg',NULL,'299','attachment-image',NULL,NULL,NULL,'299','attachment-image',NULL,0,1,NULL,'2020-11-02 18:30:36','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(120,NULL,NULL,300,'post','attachment',2,73,NULL,NULL,'Urbanizaciones(4)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones4.jpeg',NULL,'300','attachment-image',NULL,NULL,NULL,'300','attachment-image',NULL,0,1,NULL,'2020-11-02 18:30:39','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(121,NULL,NULL,301,'post','attachment',2,73,NULL,NULL,'Urbanizaciones(5)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones5.jpeg',NULL,'301','attachment-image',NULL,NULL,NULL,'301','attachment-image',NULL,0,1,NULL,'2020-11-02 18:30:41','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(122,NULL,NULL,302,'post','attachment',2,73,NULL,NULL,'Urbanizaciones(6)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones6.jpeg',NULL,'302','attachment-image',NULL,NULL,NULL,'302','attachment-image',NULL,0,1,NULL,'2020-11-02 18:30:43','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(123,NULL,NULL,303,'post','attachment',2,22,NULL,NULL,'Excavadoras-brazo-largo(1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo1.jpg',NULL,'303','attachment-image',NULL,NULL,NULL,'303','attachment-image',NULL,0,NULL,NULL,'2020-11-12 22:00:34','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(124,NULL,NULL,304,'post','attachment',2,22,NULL,NULL,'Excavadoras-brazo-largo(3)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo3.jpg',NULL,'304','attachment-image',NULL,NULL,NULL,'304','attachment-image',NULL,0,1,NULL,'2020-11-12 22:00:37','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(126,NULL,NULL,306,'post','attachment',2,22,NULL,NULL,'Excavadoras-brazo-largo(02)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo02.jpg',NULL,'306','attachment-image',NULL,NULL,NULL,'306','attachment-image',NULL,0,1,NULL,'2020-11-12 22:02:54','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(127,'http://zewsdemo.com/gruposuadi/?post_type=wpcf7_contact_form&p=308','66:7aee8c6a12d3c0927e56e3ad2c019cd3',308,'post','wpcf7_contact_form',2,0,NULL,NULL,'Servicios constructora','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-12 22:18:29','2020-11-13 03:23:35',1,NULL,NULL,NULL,NULL,0),(128,NULL,NULL,309,'post','attachment',2,46,NULL,NULL,'camion-plataforma','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/camion-plataforma.jpg',NULL,'309','attachment-image',NULL,NULL,NULL,'309','attachment-image',NULL,0,1,NULL,'2020-11-12 22:45:04','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(129,'http://zewsdemo.com/gruposuadi/2020/11/12/310/','46:a49974cfddc78db03d78b0e641921161',310,'post','nav_menu_item',2,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-12 22:47:17','2020-11-13 03:47:25',1,NULL,NULL,NULL,NULL,0),(130,NULL,NULL,311,'post','attachment',2,268,NULL,NULL,'Camiones-Volquetes-Panama','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-Volquetes-Panama.jpg',NULL,'311','attachment-image',NULL,NULL,NULL,'311','attachment-image',NULL,0,1,NULL,'2020-11-13 13:36:27','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(131,NULL,NULL,312,'post','attachment',2,34,NULL,NULL,'Compactadora Lisa o De Piña','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama.jpg',NULL,'312','attachment-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama.jpg','312','attachment-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama.jpg\",\"size\":\"full\",\"id\":312,\"alt\":\"Compactadora Lisa o De Pi\\u00f1a\",\"pixels\":821340,\"type\":\"image/jpeg\"}',0,1,NULL,'2020-11-13 13:43:59','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(132,NULL,NULL,313,'post','attachment',2,42,NULL,NULL,'PalaMartillo-RetroMartillo','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/PalaMartillo-RetroMartillo.jpg',NULL,'313','attachment-image',NULL,NULL,NULL,'313','attachment-image',NULL,0,1,NULL,'2020-11-13 13:50:37','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(133,NULL,NULL,314,'post','attachment',2,40,NULL,NULL,'Cargadores frontales','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1.jpg',NULL,'314','attachment-image',NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1.jpg','314','attachment-image','{\"width\":1170,\"height\":702,\"url\":\"http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1.jpg\",\"path\":\"/home/zewsdemo/public_html/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1.jpg\",\"size\":\"full\",\"id\":314,\"alt\":\"Cargadores frontales\",\"pixels\":821340,\"type\":\"image/jpeg\"}',0,1,NULL,'2020-11-13 13:55:28','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,1),(134,NULL,NULL,315,'post','attachment',2,22,NULL,NULL,'Excavadoras-panama-1','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-panama-1.jpg',NULL,'315','attachment-image',NULL,NULL,NULL,'315','attachment-image',NULL,0,1,NULL,'2020-11-13 14:01:09','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(136,NULL,NULL,317,'post','attachment',2,0,NULL,NULL,'Logo-GSUADI-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/11/Logo-GSUADI-1.png',NULL,'317','attachment-image',NULL,NULL,NULL,'317','attachment-image',NULL,0,NULL,NULL,'2020-11-17 17:01:57','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(137,NULL,NULL,318,'post','attachment',2,0,NULL,NULL,'LogoG-SUADI1-Ret','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/11/LogoG-SUADI1-Ret.png',NULL,'318','attachment-image',NULL,NULL,NULL,'318','attachment-image',NULL,0,NULL,NULL,'2020-11-17 17:25:24','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(138,NULL,NULL,319,'post','attachment',2,0,NULL,NULL,'LogoG-SUADI1-mob','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/11/LogoG-SUADI1-mob.png',NULL,'319','attachment-image',NULL,NULL,NULL,'319','attachment-image',NULL,0,NULL,NULL,'2020-11-17 17:30:34','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0),(139,NULL,NULL,323,'post','post',2,0,NULL,NULL,'Borrador automático','auto-draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-17 18:03:54','2020-11-18 18:18:52',1,NULL,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `grpsd_yoast_indexable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_yoast_indexable_hierarchy` -- DROP TABLE IF EXISTS `grpsd_yoast_indexable_hierarchy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_yoast_indexable_hierarchy` ( `indexable_id` int(11) unsigned NOT NULL, `ancestor_id` int(11) unsigned NOT NULL, `depth` int(11) unsigned DEFAULT NULL, `blog_id` bigint(20) NOT NULL DEFAULT '1', PRIMARY KEY (`indexable_id`,`ancestor_id`), KEY `indexable_id` (`indexable_id`), KEY `ancestor_id` (`ancestor_id`), KEY `depth` (`depth`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_yoast_indexable_hierarchy` -- LOCK TABLES `grpsd_yoast_indexable_hierarchy` WRITE; /*!40000 ALTER TABLE `grpsd_yoast_indexable_hierarchy` DISABLE KEYS */; INSERT INTO `grpsd_yoast_indexable_hierarchy` VALUES (56,6,1,1),(58,8,1,1),(59,8,1,1),(80,12,1,1),(82,7,1,1),(83,13,1,1),(84,10,1,1),(85,13,1,1),(86,18,1,1),(87,21,1,1),(88,24,1,1),(90,89,1,1),(91,28,1,1),(92,28,1,1),(93,28,1,1),(94,28,1,1),(95,28,1,1),(96,28,1,1),(97,28,1,1),(98,28,1,1),(99,28,1,1),(100,28,1,1),(101,28,1,1),(102,28,1,1),(103,28,1,1),(104,28,1,1),(105,28,1,1),(106,11,1,1),(107,11,1,1),(108,11,1,1),(109,11,1,1),(110,11,1,1),(111,11,1,1),(112,11,1,1),(113,11,1,1),(114,11,1,1),(115,11,1,1),(116,11,1,1),(117,11,1,1),(118,11,1,1),(119,11,1,1),(120,11,1,1),(121,11,1,1),(122,11,1,1),(123,7,1,1),(124,7,1,1),(126,7,1,1),(128,9,1,1),(130,89,1,1),(131,17,1,1),(132,20,1,1),(133,19,1,1),(134,7,1,1); /*!40000 ALTER TABLE `grpsd_yoast_indexable_hierarchy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_yoast_migrations` -- DROP TABLE IF EXISTS `grpsd_yoast_migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_yoast_migrations` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `version` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `grpsd_yoast_migrations_version` (`version`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_yoast_migrations` -- LOCK TABLES `grpsd_yoast_migrations` WRITE; /*!40000 ALTER TABLE `grpsd_yoast_migrations` DISABLE KEYS */; INSERT INTO `grpsd_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'); /*!40000 ALTER TABLE `grpsd_yoast_migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_yoast_primary_term` -- DROP TABLE IF EXISTS `grpsd_yoast_primary_term`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_yoast_primary_term` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `post_id` int(11) unsigned NOT NULL, `term_id` int(11) unsigned NOT NULL, `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` datetime DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `blog_id` bigint(20) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `post_taxonomy` (`post_id`,`taxonomy`), KEY `post_term` (`post_id`,`term_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_yoast_primary_term` -- LOCK TABLES `grpsd_yoast_primary_term` WRITE; /*!40000 ALTER TABLE `grpsd_yoast_primary_term` DISABLE KEYS */; /*!40000 ALTER TABLE `grpsd_yoast_primary_term` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grpsd_yoast_seo_links` -- DROP TABLE IF EXISTS `grpsd_yoast_seo_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `grpsd_yoast_seo_links` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `url` varchar(255) DEFAULT NULL, `post_id` bigint(20) unsigned DEFAULT NULL, `target_post_id` bigint(20) unsigned DEFAULT NULL, `type` varchar(8) DEFAULT NULL, `indexable_id` int(11) unsigned DEFAULT NULL, `target_indexable_id` int(11) unsigned DEFAULT NULL, `height` int(11) unsigned DEFAULT NULL, `width` int(11) unsigned DEFAULT NULL, `size` int(11) unsigned DEFAULT NULL, `language` varchar(32) DEFAULT NULL, `region` varchar(32) DEFAULT NULL, PRIMARY KEY (`id`), KEY `link_direction` (`post_id`,`type`), KEY `indexable_link_direction` (`indexable_id`,`type`) ) ENGINE=InnoDB AUTO_INCREMENT=991 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grpsd_yoast_seo_links` -- LOCK TABLES `grpsd_yoast_seo_links` WRITE; /*!40000 ALTER TABLE `grpsd_yoast_seo_links` DISABLE KEYS */; INSERT INTO `grpsd_yoast_seo_links` VALUES (48,'http://zewsdemo.com/gruposuadi/service/alquiler-de-equipos/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(49,'http://zewsdemo.com/gruposuadi/service/alquiler-de-equipos/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(50,'http://zewsdemo.com/gruposuadi/service/excavadoras-mini-excavadoras-y-palas/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(51,'http://zewsdemo.com/gruposuadi/service/excavadoras-mini-excavadoras-y-palas/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(52,'http://zewsdemo.com/gruposuadi/service/tractores-o-bulldozer/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(53,'http://zewsdemo.com/gruposuadi/service/tractores-o-bulldozer/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(54,'http://zewsdemo.com/gruposuadi/service/camiones-articulados/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55,'http://zewsdemo.com/gruposuadi/service/camiones-articulados/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(56,'http://zewsdemo.com/gruposuadi/service/retroexcavadoras/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(57,'http://zewsdemo.com/gruposuadi/service/retroexcavadoras/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58,'http://zewsdemo.com/gruposuadi/service/compactadora-lisa-o-de-pina/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(59,'http://zewsdemo.com/gruposuadi/service/compactadora-lisa-o-de-pina/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(60,'http://zewsdemo.com/gruposuadi/service/motoniveladoras-o-cuchillas/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(61,'http://zewsdemo.com/gruposuadi/service/motoniveladoras-o-cuchillas/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(62,'http://zewsdemo.com/gruposuadi/service/cargadores-frontales-y-mini-cargadores/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(63,'http://zewsdemo.com/gruposuadi/service/cargadores-frontales-y-mini-cargadores/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(64,'http://zewsdemo.com/gruposuadi/service/perforadoras-o-track-drill/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(65,'http://zewsdemo.com/gruposuadi/service/perforadoras-o-track-drill/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(66,'http://zewsdemo.com/gruposuadi/service/compresores-de-aire/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(67,'http://zewsdemo.com/gruposuadi/service/compresores-de-aire/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(68,'http://zewsdemo.com/gruposuadi/service/camiones-gruas-plataforma/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,'http://zewsdemo.com/gruposuadi/service/camiones-gruas-plataforma/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70,'http://zewsdemo.com/gruposuadi/service/camiones-cisterna/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(71,'http://zewsdemo.com/gruposuadi/service/camiones-cisterna/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(72,'http://zewsdemo.com/gruposuadi/service/telehanders/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(73,'http://zewsdemo.com/gruposuadi/service/telehanders/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(74,'http://zewsdemo.com/gruposuadi/service/hormigonera-auto-cargante/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(75,'http://zewsdemo.com/gruposuadi/service/hormigonera-auto-cargante/',13,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(76,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Alquiler-de-equipos.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(77,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/excavadoras-hidraulicas.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(78,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Tractores-bulldozer-1.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(79,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/alquiler-camiones-articulados-1-1.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(80,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/Retro-escavadoras.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Compactadoras-1.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(82,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Motoniveladoras-1.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Cargadores-frontales.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(84,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Perforadoras-track-drill.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(85,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compresores-de-aire.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(86,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-plataforma.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(87,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-cisterna.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(88,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Telehanders.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(89,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera.jpg',13,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138,'http://zewsdemo.com/gruposuadi/service/movimientos-de-tierra/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139,'http://zewsdemo.com/gruposuadi/service/movimientos-de-tierra/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(140,'http://zewsdemo.com/gruposuadi/service/mejoramiento-de-caminos/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(141,'http://zewsdemo.com/gruposuadi/service/mejoramiento-de-caminos/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(142,'http://zewsdemo.com/gruposuadi/service/instalacion-de-tuberias-para-sistemas-de-acueducto-y-alcantarillado/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(143,'http://zewsdemo.com/gruposuadi/service/instalacion-de-tuberias-para-sistemas-de-acueducto-y-alcantarillado/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(144,'http://zewsdemo.com/gruposuadi/service/construccion-de-proyectos-residenciales-y-proyectos-de-interes-social/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(145,'http://zewsdemo.com/gruposuadi/service/construccion-de-proyectos-residenciales-y-proyectos-de-interes-social/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(146,'http://zewsdemo.com/gruposuadi/service/construccion-de-galeras-y-edificios/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(147,'http://zewsdemo.com/gruposuadi/service/construccion-de-galeras-y-edificios/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(148,'http://zewsdemo.com/gruposuadi/service/construccion-de-puentes-y-carreteras/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(149,'http://zewsdemo.com/gruposuadi/service/construccion-de-puentes-y-carreteras/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(150,'http://zewsdemo.com/gruposuadi/service/construccion-de-infraestructura-vial/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(151,'http://zewsdemo.com/gruposuadi/service/construccion-de-infraestructura-vial/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(152,'http://zewsdemo.com/gruposuadi/service/construccion-y-mantenimiento-de-hidroelectricas/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(153,'http://zewsdemo.com/gruposuadi/service/construccion-y-mantenimiento-de-hidroelectricas/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(154,'http://zewsdemo.com/gruposuadi/service/construccion-de-obras-civiles/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(155,'http://zewsdemo.com/gruposuadi/service/construccion-de-obras-civiles/',68,NULL,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(156,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Movimientos-de-tierra.jpg',68,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(157,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Mejoramiento-de-caminos.jpg',68,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(158,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Instalacion-de-tuberias.jpg',68,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(159,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Residenciales-interes-social.jpg',68,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(160,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-galeras-edificios.jpg',68,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(161,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-puentes.jpg',68,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(162,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial.jpg',68,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(163,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccon-hidroelectricas.jpg',68,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(164,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/construcciones-civiles.jpg',68,NULL,'image-in',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(811,'/gruposuadi/maquinarias/',112,NULL,'internal',2,NULL,NULL,NULL,NULL,NULL,NULL),(812,'/gruposuadi/construccion/',112,NULL,'internal',2,NULL,NULL,NULL,NULL,NULL,NULL),(813,'http://zewsdemo.com/gruposuadi/service/construccion-de-obras-civiles/',112,63,'internal',2,31,NULL,NULL,NULL,NULL,NULL),(814,'http://zewsdemo.com/gruposuadi/service/construccion-y-mantenimiento-de-hidroelectricas/',112,71,'internal',2,30,NULL,NULL,NULL,NULL,NULL),(815,'http://zewsdemo.com/gruposuadi/service/construccion-de-infraestructura-vial/',112,73,'internal',2,11,NULL,NULL,NULL,NULL,NULL),(816,'http://zewsdemo.com/gruposuadi/service/construccion-de-puentes-y-carreteras/',112,75,'internal',2,15,NULL,NULL,NULL,NULL,NULL),(817,'http://zewsdemo.com/gruposuadi/service/construccion-de-galeras-y-edificios/',112,77,'internal',2,29,NULL,NULL,NULL,NULL,NULL),(818,'http://zewsdemo.com/gruposuadi/service/construccion-de-proyectos-residenciales-y-proyectos-de-interes-social/',112,79,'internal',2,28,NULL,NULL,NULL,NULL,NULL),(819,'http://zewsdemo.com/gruposuadi/service/instalacion-de-tuberias-para-sistemas-de-acueducto-y-alcantarillado/',112,82,'internal',2,27,NULL,NULL,NULL,NULL,NULL),(820,'http://zewsdemo.com/gruposuadi/service/mejoramiento-de-caminos/',112,85,'internal',2,26,NULL,NULL,NULL,NULL,NULL),(821,'http://zewsdemo.com/gruposuadi/service/movimientos-de-tierra/',112,87,'internal',2,25,NULL,NULL,NULL,NULL,NULL),(822,'http://zewsdemo.com/gruposuadi/service/alquiler-de-equipos/',112,15,'internal',2,12,NULL,NULL,NULL,NULL,NULL),(823,'http://zewsdemo.com/gruposuadi/service/excavadoras/',112,22,'internal',2,7,NULL,NULL,NULL,NULL,NULL),(824,'http://zewsdemo.com/gruposuadi/service/tractores-sobre-oruga/',112,26,'internal',2,13,NULL,NULL,NULL,NULL,NULL),(825,'http://zewsdemo.com/gruposuadi/service/camiones-articulados/',112,28,'internal',2,16,NULL,NULL,NULL,NULL,NULL),(826,'http://zewsdemo.com/gruposuadi/service/retroexcavadoras/',112,31,'internal',2,10,NULL,NULL,NULL,NULL,NULL),(827,'http://zewsdemo.com/gruposuadi/service/compactadora-lisa-o-de-pina/',112,34,'internal',2,17,NULL,NULL,NULL,NULL,NULL),(828,'http://zewsdemo.com/gruposuadi/service/motoniveladoras-o-cuchillas/',112,38,'internal',2,18,NULL,NULL,NULL,NULL,NULL),(829,'http://zewsdemo.com/gruposuadi/service/cargadores-frontales-y-mini-cargadores/',112,40,'internal',2,19,NULL,NULL,NULL,NULL,NULL),(830,'http://zewsdemo.com/gruposuadi/service/pala-martillo-y-retro-martillo/',112,42,'internal',2,20,NULL,NULL,NULL,NULL,NULL),(831,'http://zewsdemo.com/gruposuadi/service/dumpers/',112,44,'internal',2,21,NULL,NULL,NULL,NULL,NULL),(832,'http://zewsdemo.com/gruposuadi/service/camiones-gruas-plataforma/',112,46,'internal',2,9,NULL,NULL,NULL,NULL,NULL),(833,'http://zewsdemo.com/gruposuadi/service/camiones-cisterna/',112,53,'internal',2,22,NULL,NULL,NULL,NULL,NULL),(834,'http://zewsdemo.com/gruposuadi/service/telehanders/',112,55,'internal',2,23,NULL,NULL,NULL,NULL,NULL),(835,'http://zewsdemo.com/gruposuadi/service/hormigonera-auto-cargante/',112,57,'internal',2,24,NULL,NULL,NULL,NULL,NULL),(836,'http://zewsdemo.com/gruposuadi/service/camiones-volquetes/',112,268,'internal',2,89,NULL,NULL,NULL,NULL,NULL),(837,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/construcciones-civiles.jpg',112,NULL,'image-in',2,NULL,NULL,NULL,NULL,NULL,NULL),(838,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccon-hidroelectricas.jpg',112,NULL,'image-in',2,NULL,NULL,NULL,NULL,NULL,NULL),(839,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial-panama.jpg',112,296,'image-in',2,116,702,1170,187432,NULL,NULL),(840,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-puentes.jpg',112,NULL,'image-in',2,NULL,NULL,NULL,NULL,NULL,NULL),(841,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-galeras-edificios.jpg',112,NULL,'image-in',2,NULL,NULL,NULL,NULL,NULL,NULL),(842,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/proyectos-residenciales01.jpg',112,270,'image-in',2,91,702,1170,203146,NULL,NULL),(843,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Instalacion-de-tuberias.jpg',112,NULL,'image-in',2,NULL,NULL,NULL,NULL,NULL,NULL),(844,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Mejoramiento-de-caminos.jpg',112,NULL,'image-in',2,NULL,NULL,NULL,NULL,NULL,NULL),(845,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Movimientos-de-tierra.jpg',112,NULL,'image-in',2,NULL,NULL,NULL,NULL,NULL,NULL),(846,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Equipo-pesado-grupo-suadi1.jpg',112,256,'image-in',2,80,702,1170,136671,NULL,NULL),(847,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-panama-1.jpg',112,315,'image-in',2,134,702,1170,184792,NULL,NULL),(848,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1.jpg',112,262,'image-in',2,85,702,1170,188355,NULL,NULL),(849,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/alquiler-camiones-articulados-1-1.jpg',112,NULL,'image-in',2,NULL,NULL,NULL,NULL,NULL,NULL),(850,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Retroexcavadoras-4x4-Panama.jpg',112,261,'image-in',2,84,702,1170,150132,NULL,NULL),(851,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama.jpg',112,312,'image-in',2,131,702,1170,202673,NULL,NULL),(852,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama.jpg',112,263,'image-in',2,86,702,1170,139709,NULL,NULL),(853,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1.jpg',112,314,'image-in',2,133,702,1170,135629,NULL,NULL),(854,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/PalaMartillo-RetroMartillo.jpg',112,313,'image-in',2,132,702,1170,110225,NULL,NULL),(855,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Dumpers-panama.jpg',112,265,'image-in',2,87,702,1170,108554,NULL,NULL),(856,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/camion-plataforma.jpg',112,309,'image-in',2,128,702,1170,136767,NULL,NULL),(857,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-cisterna.jpg',112,NULL,'image-in',2,NULL,NULL,NULL,NULL,NULL,NULL),(858,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Telehanders.jpg',112,NULL,'image-in',2,NULL,NULL,NULL,NULL,NULL,NULL),(859,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante.jpg',112,267,'image-in',2,88,702,1170,147902,NULL,NULL),(860,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-Volquetes-Panama.jpg',112,311,'image-in',2,130,702,1170,185401,NULL,NULL),(864,'/gruposuadi/contacto/',89,NULL,'internal',6,NULL,NULL,NULL,NULL,NULL,NULL),(865,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/GrupoSuadi-Panama-1.jpg',89,NULL,'internal',6,NULL,NULL,NULL,NULL,NULL,NULL),(866,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/GrupoSuadi-Panama-1.jpg',89,NULL,'image-in',6,NULL,NULL,NULL,NULL,NULL,NULL),(869,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-panama-1-1024x614.jpg',22,NULL,'internal',7,NULL,NULL,NULL,NULL,NULL,NULL),(870,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo02.jpg',22,306,'internal',7,126,NULL,NULL,NULL,NULL,NULL),(871,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo3.jpg',22,304,'internal',7,124,NULL,NULL,NULL,NULL,NULL),(872,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo1-1024x768.jpg',22,NULL,'internal',7,NULL,NULL,NULL,NULL,NULL,NULL),(873,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-panama-1-1140x500.jpg',22,NULL,'image-in',7,NULL,NULL,NULL,NULL,NULL,NULL),(874,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo02-300x225.jpg',22,NULL,'image-in',7,NULL,NULL,NULL,NULL,NULL,NULL),(875,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo3-300x225.jpg',22,NULL,'image-in',7,NULL,NULL,NULL,NULL,NULL,NULL),(876,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Excavadoras-brazo-largo1-300x225.jpg',22,NULL,'image-in',7,NULL,NULL,NULL,NULL,NULL,NULL),(879,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/construcciones-civiles-1024x614.jpg',63,NULL,'internal',31,NULL,NULL,NULL,NULL,NULL,NULL),(880,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/construcciones-civiles-1140x500.jpg',63,NULL,'image-in',31,NULL,NULL,NULL,NULL,NULL,NULL),(881,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccon-hidroelectricas-1024x614.jpg',71,NULL,'internal',30,NULL,NULL,NULL,NULL,NULL,NULL),(882,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccon-hidroelectricas-1140x500.jpg',71,NULL,'image-in',30,NULL,NULL,NULL,NULL,NULL,NULL),(883,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial-panama-1024x614.jpg',73,NULL,'internal',11,NULL,NULL,NULL,NULL,NULL,NULL),(884,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial1.jpeg',73,286,'internal',11,106,NULL,NULL,NULL,NULL,NULL),(885,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial2.jpeg',73,287,'internal',11,107,NULL,NULL,NULL,NULL,NULL),(886,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial3.jpeg',73,288,'internal',11,108,NULL,NULL,NULL,NULL,NULL),(887,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial4.jpeg',73,289,'internal',11,109,NULL,NULL,NULL,NULL,NULL),(888,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial5.jpeg',73,290,'internal',11,110,NULL,NULL,NULL,NULL,NULL),(889,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial6.jpeg',73,291,'internal',11,111,NULL,NULL,NULL,NULL,NULL),(890,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial7.jpeg',73,292,'internal',11,112,NULL,NULL,NULL,NULL,NULL),(891,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial8.jpeg',73,293,'internal',11,113,NULL,NULL,NULL,NULL,NULL),(892,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial9.jpeg',73,294,'internal',11,114,NULL,NULL,NULL,NULL,NULL),(893,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial10.jpeg',73,295,'internal',11,115,NULL,NULL,NULL,NULL,NULL),(894,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones1.jpeg',73,297,'internal',11,117,NULL,NULL,NULL,NULL,NULL),(895,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones2.jpeg',73,298,'internal',11,118,NULL,NULL,NULL,NULL,NULL),(896,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones3.jpeg',73,299,'internal',11,119,NULL,NULL,NULL,NULL,NULL),(897,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones4.jpeg',73,300,'internal',11,120,NULL,NULL,NULL,NULL,NULL),(898,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones5.jpeg',73,301,'internal',11,121,NULL,NULL,NULL,NULL,NULL),(899,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones6.jpeg',73,302,'internal',11,122,NULL,NULL,NULL,NULL,NULL),(900,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial-panama-1140x500.jpg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(901,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial1-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(902,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial2-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(903,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial3-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(904,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial4-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(905,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial5-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(906,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial6-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(907,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial7-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(908,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial8-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(909,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial9-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(910,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/infraestructura-vial10-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(911,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones1-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(912,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones2-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(913,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones3-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(914,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones4-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(915,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones5-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(916,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Urbanizaciones6-150x150.jpeg',73,NULL,'image-in',11,NULL,NULL,NULL,NULL,NULL,NULL),(917,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-puentes-1024x614.jpg',75,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(918,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-puentes-1140x500.jpg',75,NULL,'image-in',15,NULL,NULL,NULL,NULL,NULL,NULL),(919,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-galeras-edificios-1024x614.jpg',77,NULL,'internal',29,NULL,NULL,NULL,NULL,NULL,NULL),(920,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Construccion-galeras-edificios-1140x500.jpg',77,NULL,'image-in',29,NULL,NULL,NULL,NULL,NULL,NULL),(921,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/proyectos-residenciales01-1024x614.jpg',79,NULL,'internal',28,NULL,NULL,NULL,NULL,NULL,NULL),(922,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial1.jpeg',79,284,'internal',28,105,NULL,NULL,NULL,NULL,NULL),(923,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial13.jpeg',79,282,'internal',28,103,NULL,NULL,NULL,NULL,NULL),(924,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial9.jpeg',79,278,'internal',28,99,NULL,NULL,NULL,NULL,NULL),(925,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial11.jpeg',79,280,'internal',28,101,NULL,NULL,NULL,NULL,NULL),(926,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial2.jpeg',79,271,'internal',28,92,NULL,NULL,NULL,NULL,NULL),(927,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial3.jpeg',79,272,'internal',28,93,NULL,NULL,NULL,NULL,NULL),(928,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial4.jpeg',79,273,'internal',28,94,NULL,NULL,NULL,NULL,NULL),(929,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial5.jpeg',79,274,'internal',28,95,NULL,NULL,NULL,NULL,NULL),(930,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial6.jpeg',79,275,'internal',28,96,NULL,NULL,NULL,NULL,NULL),(931,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial7.jpeg',79,276,'internal',28,97,NULL,NULL,NULL,NULL,NULL),(932,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial8.jpeg',79,277,'internal',28,98,NULL,NULL,NULL,NULL,NULL),(933,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial10.jpeg',79,279,'internal',28,100,NULL,NULL,NULL,NULL,NULL),(934,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial12.jpeg',79,281,'internal',28,102,NULL,NULL,NULL,NULL,NULL),(935,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial14.jpeg',79,283,'internal',28,104,NULL,NULL,NULL,NULL,NULL),(936,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/proyectos-residenciales01-1140x500.jpg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(937,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial1-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(938,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial13-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(939,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial9-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(940,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial11-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(941,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial2-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(942,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial3-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(943,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial4-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(944,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial5-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(945,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial6-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(946,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial7-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(947,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial8-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(948,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial10-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(949,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial12-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(950,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/residencial14-150x150.jpeg',79,NULL,'image-in',28,NULL,NULL,NULL,NULL,NULL,NULL),(951,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Instalacion-de-tuberias-1024x614.jpg',82,NULL,'internal',27,NULL,NULL,NULL,NULL,NULL,NULL),(952,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Instalacion-de-tuberias-1140x500.jpg',82,NULL,'image-in',27,NULL,NULL,NULL,NULL,NULL,NULL),(953,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Instalacion-de-tuberias-1024x614.jpg',85,NULL,'internal',26,NULL,NULL,NULL,NULL,NULL,NULL),(954,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Instalacion-de-tuberias-1140x500.jpg',85,NULL,'image-in',26,NULL,NULL,NULL,NULL,NULL,NULL),(955,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Movimientos-de-tierra-1024x614.jpg',87,NULL,'internal',25,NULL,NULL,NULL,NULL,NULL,NULL),(956,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Movimientos-de-tierra-1140x500.jpg',87,NULL,'image-in',25,NULL,NULL,NULL,NULL,NULL,NULL),(957,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Equipo-pesado-grupo-suadi1-1024x614.jpg',15,NULL,'internal',12,NULL,NULL,NULL,NULL,NULL,NULL),(958,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Equipo-pesado-grupo-suadi1-1140x500.jpg',15,NULL,'image-in',12,NULL,NULL,NULL,NULL,NULL,NULL),(959,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1-1024x614.jpg',26,NULL,'internal',13,NULL,NULL,NULL,NULL,NULL,NULL),(960,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/tractores-sobre-oruga-panama-1-1140x500.jpg',26,NULL,'image-in',13,NULL,NULL,NULL,NULL,NULL,NULL),(961,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/alquiler-camiones-articulados-1-1-1024x614.jpg',28,NULL,'internal',16,NULL,NULL,NULL,NULL,NULL,NULL),(962,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/09/alquiler-camiones-articulados-1-1-1140x500.jpg',28,NULL,'image-in',16,NULL,NULL,NULL,NULL,NULL,NULL),(963,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Retroexcavadoras-4x4-Panama-1024x614.jpg',31,NULL,'internal',10,NULL,NULL,NULL,NULL,NULL,NULL),(964,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Retroexcavadoras-4x4-Panama-1140x500.jpg',31,NULL,'image-in',10,NULL,NULL,NULL,NULL,NULL,NULL),(965,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama-1024x614.jpg',34,NULL,'internal',17,NULL,NULL,NULL,NULL,NULL,NULL),(966,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/compactadoras-panama-1140x500.jpg',34,NULL,'image-in',17,NULL,NULL,NULL,NULL,NULL,NULL),(967,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama-1024x614.jpg',38,NULL,'internal',18,NULL,NULL,NULL,NULL,NULL,NULL),(968,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/mononiveladoras-panama-1140x500.jpg',38,NULL,'image-in',18,NULL,NULL,NULL,NULL,NULL,NULL),(971,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/PalaMartillo-RetroMartillo-1024x614.jpg',42,NULL,'internal',20,NULL,NULL,NULL,NULL,NULL,NULL),(972,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/PalaMartillo-RetroMartillo-1140x500.jpg',42,NULL,'image-in',20,NULL,NULL,NULL,NULL,NULL,NULL),(977,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Dumpers-panama-1024x614.jpg',44,NULL,'internal',21,NULL,NULL,NULL,NULL,NULL,NULL),(978,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Dumpers-panama-1140x500.jpg',44,NULL,'image-in',21,NULL,NULL,NULL,NULL,NULL,NULL),(979,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/camion-plataforma-1024x614.jpg',46,NULL,'internal',9,NULL,NULL,NULL,NULL,NULL,NULL),(980,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/camion-plataforma-1140x500.jpg',46,NULL,'image-in',9,NULL,NULL,NULL,NULL,NULL,NULL),(981,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-cisterna-1024x614.jpg',53,NULL,'internal',22,NULL,NULL,NULL,NULL,NULL,NULL),(982,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-cisterna-1140x500.jpg',53,NULL,'image-in',22,NULL,NULL,NULL,NULL,NULL,NULL),(983,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Telehanders-1024x614.jpg',55,NULL,'internal',23,NULL,NULL,NULL,NULL,NULL,NULL),(984,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Telehanders-1140x500.jpg',55,NULL,'image-in',23,NULL,NULL,NULL,NULL,NULL,NULL),(985,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante-1024x614.jpg',57,NULL,'internal',24,NULL,NULL,NULL,NULL,NULL,NULL),(986,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Hormigonera-auto-cargante-1140x500.jpg',57,NULL,'image-in',24,NULL,NULL,NULL,NULL,NULL,NULL),(987,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-Volquetes-Panama-1024x614.jpg',268,NULL,'internal',89,NULL,NULL,NULL,NULL,NULL,NULL),(988,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/Camiones-Volquetes-Panama-1140x500.jpg',268,NULL,'image-in',89,NULL,NULL,NULL,NULL,NULL,NULL),(989,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1-1024x614.jpg',40,NULL,'internal',19,NULL,NULL,NULL,NULL,NULL,NULL),(990,'http://zewsdemo.com/gruposuadi/wp-content/uploads/2020/10/cargadores-frontales-1-1140x500.jpg',40,NULL,'image-in',19,NULL,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `grpsd_yoast_seo_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'bdgruposuadi' -- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-02-09 4:20:58