HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/backups/mysql/stadsig_db
-- MySQL dump 10.19  Distrib 10.3.34-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost    Database: stadsig_db
-- ------------------------------------------------------
-- Server version	10.3.34-MariaDB-0+deb10u1

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `sts_commentmeta`
--

DROP TABLE IF EXISTS `sts_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_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 DEFAULT NULL,
  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 `sts_commentmeta`
--

LOCK TABLES `sts_commentmeta` WRITE;
/*!40000 ALTER TABLE `sts_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `sts_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_comments`
--

DROP TABLE IF EXISTS `sts_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_comments`
--

LOCK TABLES `sts_comments` WRITE;
/*!40000 ALTER TABLE `sts_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `sts_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_et_social_stats`
--

DROP TABLE IF EXISTS `sts_et_social_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_et_social_stats` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `sharing_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `network` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `action` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_id` bigint(20) NOT NULL,
  `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
  `media_url` varchar(2083) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_et_social_stats`
--

LOCK TABLES `sts_et_social_stats` WRITE;
/*!40000 ALTER TABLE `sts_et_social_stats` DISABLE KEYS */;
INSERT INTO `sts_et_social_stats` VALUES (1,'2018-10-17 10:06:52','facebook','follow',223369,'105.226.203.107','',''),(2,'2018-12-03 18:26:43','facebook','follow',223369,'197.245.232.220','',''),(3,'2019-09-28 10:53:45','facebook','follow',223369,'41.246.29.112','',''),(4,'2019-10-29 14:36:01','facebook','follow',223369,'105.226.94.241','',''),(5,'2020-04-17 11:48:42','facebook','follow',223369,'102.65.17.64','','');
/*!40000 ALTER TABLE `sts_et_social_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_frm_fields`
--

DROP TABLE IF EXISTS `sts_frm_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_frm_fields` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `field_key` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `default_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `options` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_order` int(11) DEFAULT 0,
  `required` int(1) DEFAULT NULL,
  `field_options` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_id` int(11) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field_key` (`field_key`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_frm_fields`
--

LOCK TABLES `sts_frm_fields` WRITE;
/*!40000 ALTER TABLE `sts_frm_fields` DISABLE KEYS */;
INSERT INTO `sts_frm_fields` VALUES (68,'qh4icy3','Name','','text','','',1,1,'a:48:{s:5:\"blank\";s:27:\"This field cannot be blank.\";s:14:\"separate_value\";i:0;s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";s:1:\"0\";s:5:\"align\";s:5:\"block\";s:11:\"form_select\";s:0:\"\";s:9:\"show_hide\";s:4:\"show\";s:7:\"any_all\";s:3:\"any\";s:10:\"hide_field\";a:0:{}s:15:\"hide_field_cond\";a:1:{i:0;s:2:\"==\";}s:8:\"hide_opt\";a:0:{}s:9:\"read_only\";i:0;s:10:\"admin_only\";s:0:\"\";s:6:\"unique\";i:0;s:10:\"unique_msg\";s:26:\"This value must be unique.\";s:8:\"use_calc\";i:0;s:4:\"calc\";s:0:\"\";s:8:\"calc_dec\";s:0:\"\";s:9:\"calc_type\";s:0:\"\";s:17:\"dyn_default_value\";s:0:\"\";s:8:\"multiple\";i:0;s:7:\"autocom\";i:0;s:10:\"conf_field\";s:0:\"\";s:10:\"conf_input\";s:0:\"\";s:9:\"conf_desc\";s:0:\"\";s:8:\"conf_msg\";s:31:\"The entered values do not match\";s:5:\"other\";i:0;s:18:\"autopopulate_value\";b:0;s:15:\"get_values_form\";s:0:\"\";s:16:\"get_values_field\";s:0:\"\";s:12:\"watch_lookup\";a:1:{i:0;s:0:\"\";}s:21:\"get_most_recent_value\";s:0:\"\";s:26:\"lookup_filter_current_user\";b:0;s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:4:\"none\";s:18:\"required_indicator\";s:0:\"\";s:7:\"invalid\";s:15:\"Name is invalid\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"custom_html\";s:455:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\">[error]</div>[/if error]\r\n</div>\";s:12:\"custom_field\";s:0:\"\";s:10:\"post_field\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:11:\"exclude_cat\";i:0;s:11:\"placeholder\";s:4:\"NAME\";}',6,'2018-07-16 11:48:35'),(69,'29yf4d3','Email','','email','','',3,1,'a:48:{s:5:\"blank\";s:27:\"This field cannot be blank.\";s:7:\"invalid\";s:34:\"Please enter a valid email address\";s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";s:1:\"0\";s:5:\"align\";s:5:\"block\";s:11:\"form_select\";s:0:\"\";s:9:\"show_hide\";s:4:\"show\";s:7:\"any_all\";s:3:\"any\";s:10:\"hide_field\";a:0:{}s:15:\"hide_field_cond\";a:1:{i:0;s:2:\"==\";}s:8:\"hide_opt\";a:0:{}s:9:\"read_only\";i:0;s:10:\"admin_only\";s:0:\"\";s:6:\"unique\";i:0;s:10:\"unique_msg\";s:26:\"This value must be unique.\";s:8:\"use_calc\";i:0;s:4:\"calc\";s:0:\"\";s:8:\"calc_dec\";s:0:\"\";s:9:\"calc_type\";s:0:\"\";s:17:\"dyn_default_value\";s:0:\"\";s:8:\"multiple\";i:0;s:7:\"autocom\";i:0;s:10:\"conf_field\";s:0:\"\";s:10:\"conf_input\";s:0:\"\";s:9:\"conf_desc\";s:0:\"\";s:8:\"conf_msg\";s:31:\"The entered values do not match\";s:5:\"other\";i:0;s:18:\"autopopulate_value\";b:0;s:15:\"get_values_form\";s:0:\"\";s:16:\"get_values_field\";s:0:\"\";s:12:\"watch_lookup\";a:1:{i:0;s:0:\"\";}s:21:\"get_most_recent_value\";s:0:\"\";s:26:\"lookup_filter_current_user\";b:0;s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:4:\"none\";s:18:\"required_indicator\";s:0:\"\";s:14:\"separate_value\";i:0;s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"custom_html\";s:455:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\">[error]</div>[/if error]\r\n</div>\";s:12:\"custom_field\";s:0:\"\";s:10:\"post_field\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:11:\"exclude_cat\";i:0;s:11:\"placeholder\";s:13:\"EMAIL ADDRESS\";}',6,'2018-07-16 11:48:35'),(70,'e6lis63','Contact Number','','text','','',5,1,'a:48:{s:5:\"blank\";s:27:\"This field cannot be blank.\";s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";s:1:\"0\";s:5:\"align\";s:5:\"block\";s:11:\"form_select\";s:0:\"\";s:9:\"show_hide\";s:4:\"show\";s:7:\"any_all\";s:3:\"any\";s:10:\"hide_field\";a:0:{}s:15:\"hide_field_cond\";a:1:{i:0;s:2:\"==\";}s:8:\"hide_opt\";a:0:{}s:9:\"read_only\";i:0;s:10:\"admin_only\";s:0:\"\";s:6:\"unique\";i:0;s:10:\"unique_msg\";s:26:\"This value must be unique.\";s:8:\"use_calc\";i:0;s:4:\"calc\";s:0:\"\";s:8:\"calc_dec\";s:0:\"\";s:9:\"calc_type\";s:0:\"\";s:17:\"dyn_default_value\";s:0:\"\";s:8:\"multiple\";i:0;s:7:\"autocom\";i:0;s:10:\"conf_field\";s:0:\"\";s:10:\"conf_input\";s:0:\"\";s:9:\"conf_desc\";s:0:\"\";s:8:\"conf_msg\";s:31:\"The entered values do not match\";s:5:\"other\";i:0;s:18:\"autopopulate_value\";b:0;s:15:\"get_values_form\";s:0:\"\";s:16:\"get_values_field\";s:0:\"\";s:12:\"watch_lookup\";a:1:{i:0;s:0:\"\";}s:21:\"get_most_recent_value\";s:0:\"\";s:26:\"lookup_filter_current_user\";b:0;s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:4:\"none\";s:18:\"required_indicator\";s:0:\"\";s:7:\"invalid\";s:18:\"Subject is invalid\";s:14:\"separate_value\";i:0;s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"custom_html\";s:455:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\">[error]</div>[/if error]\r\n</div>\";s:12:\"custom_field\";s:0:\"\";s:10:\"post_field\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:11:\"exclude_cat\";i:0;s:11:\"placeholder\";s:14:\"CONTACT NUMBER\";}',6,'2018-07-16 11:48:35'),(71,'9jv0r13','Message','','textarea','','',6,1,'a:48:{s:3:\"max\";s:1:\"2\";s:5:\"blank\";s:27:\"This field cannot be blank.\";s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";s:1:\"0\";s:5:\"align\";s:5:\"block\";s:11:\"form_select\";s:0:\"\";s:9:\"show_hide\";s:4:\"show\";s:7:\"any_all\";s:3:\"any\";s:10:\"hide_field\";a:0:{}s:15:\"hide_field_cond\";a:1:{i:0;s:2:\"==\";}s:8:\"hide_opt\";a:0:{}s:9:\"read_only\";i:0;s:10:\"admin_only\";s:0:\"\";s:6:\"unique\";i:0;s:10:\"unique_msg\";s:26:\"This value must be unique.\";s:8:\"use_calc\";i:0;s:4:\"calc\";s:0:\"\";s:8:\"calc_dec\";s:0:\"\";s:9:\"calc_type\";s:0:\"\";s:17:\"dyn_default_value\";s:0:\"\";s:8:\"multiple\";i:0;s:7:\"autocom\";i:0;s:10:\"conf_field\";s:0:\"\";s:10:\"conf_input\";s:0:\"\";s:9:\"conf_desc\";s:0:\"\";s:8:\"conf_msg\";s:31:\"The entered values do not match\";s:5:\"other\";i:0;s:18:\"autopopulate_value\";b:0;s:15:\"get_values_form\";s:0:\"\";s:16:\"get_values_field\";s:0:\"\";s:12:\"watch_lookup\";a:1:{i:0;s:0:\"\";}s:21:\"get_most_recent_value\";s:0:\"\";s:26:\"lookup_filter_current_user\";b:0;s:4:\"size\";s:0:\"\";s:5:\"label\";s:4:\"none\";s:18:\"required_indicator\";s:0:\"\";s:7:\"invalid\";s:0:\"\";s:14:\"separate_value\";i:0;s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"custom_html\";s:455:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\">[error]</div>[/if error]\r\n</div>\";s:12:\"custom_field\";s:0:\"\";s:10:\"post_field\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:11:\"exclude_cat\";i:0;s:11:\"placeholder\";s:7:\"MESSAGE\";}',6,'2018-07-16 11:48:35');
/*!40000 ALTER TABLE `sts_frm_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_frm_forms`
--

DROP TABLE IF EXISTS `sts_frm_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_frm_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_key` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `parent_form_id` int(11) DEFAULT 0,
  `logged_in` tinyint(1) DEFAULT NULL,
  `editable` tinyint(1) DEFAULT NULL,
  `is_template` tinyint(1) DEFAULT 0,
  `default_template` tinyint(1) DEFAULT 0,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `options` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `form_key` (`form_key`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_frm_forms`
--

LOCK TABLES `sts_frm_forms` WRITE;
/*!40000 ALTER TABLE `sts_frm_forms` DISABLE KEYS */;
INSERT INTO `sts_frm_forms` VALUES (6,'contact22','Subscribe','<p>We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.</p>\r\n',0,0,0,0,0,'published','a:39:{s:14:\"success_action\";s:7:\"message\";s:11:\"success_url\";s:36:\"https://www.stadsig.co.za/thank-you/\";s:15:\"success_page_id\";s:0:\"\";s:14:\"logged_in_role\";s:0:\"\";s:17:\"single_entry_type\";s:4:\"user\";s:17:\"cookie_expiration\";s:4:\"8000\";s:13:\"editable_role\";s:0:\"\";s:18:\"open_editable_role\";s:2:\"-1\";s:11:\"edit_action\";s:7:\"message\";s:8:\"edit_url\";s:0:\"\";s:12:\"edit_page_id\";s:0:\"\";s:13:\"protect_files\";s:1:\"0\";s:12:\"custom_style\";s:1:\"1\";s:12:\"submit_value\";s:4:\"SEND\";s:10:\"edit_value\";s:6:\"Update\";s:12:\"submit_align\";s:6:\"inline\";s:17:\"submit_conditions\";a:2:{s:9:\"show_hide\";s:4:\"show\";s:7:\"any_all\";s:3:\"all\";}s:11:\"success_msg\";s:52:\"Your response was successfully submitted. Thank you!\";s:8:\"edit_msg\";s:39:\"Your submission was successfully saved.\";s:9:\"draft_msg\";s:26:\"Your draft has been saved.\";s:10:\"form_class\";s:7:\"splash2\";s:11:\"before_html\";s:232:\"<legend class=\\\"frm_screen_reader\\\">[form_name]</legend>\r\n[if form_name]<h3 class=\\\"frm_form_title\\\">[form_name]</h3>[/if form_name]\r\n[if form_description]<div class=\\\"frm_description\\\">[form_description]</div>[/if form_description]\";s:10:\"after_html\";s:0:\"\";s:11:\"submit_html\";s:418:\"<div class=\\\"frm_submit\\\">\r\n[if back_button]<button type=\\\"submit\\\" name=\\\"frm_prev_page\\\" formnovalidate=\\\"formnovalidate\\\" class=\\\"frm_prev_page\\\" [back_hook]>[back_label]</button>[/if back_button]\r\n<button class=\\\"frm_button_submit\\\" type=\\\"submit\\\"  [button_action]>[button_label]</button>\r\n[if save_draft]<a href=\\\"#\\\" tabindex=\\\"0\\\" class=\\\"frm_save_draft\\\" [draft_hook]>[draft_label]</a>[/if save_draft]\r\n</div>\";s:9:\"show_form\";i:0;s:7:\"akismet\";s:0:\"\";s:7:\"no_save\";i:0;s:9:\"ajax_load\";i:0;s:11:\"js_validate\";i:0;s:10:\"save_draft\";i:0;s:4:\"copy\";i:0;s:12:\"single_entry\";i:0;s:11:\"ajax_submit\";i:0;s:10:\"prev_value\";s:8:\"Previous\";s:8:\"rootline\";s:0:\"\";s:18:\"rootline_titles_on\";i:0;s:15:\"rootline_titles\";a:0:{}s:18:\"rootline_lines_off\";i:0;s:20:\"rootline_numbers_off\";i:0;}','2018-07-04 08:52:49');
/*!40000 ALTER TABLE `sts_frm_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_frm_item_metas`
--

DROP TABLE IF EXISTS `sts_frm_item_metas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_frm_item_metas` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_id` bigint(20) NOT NULL,
  `item_id` bigint(20) NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `field_id` (`field_id`),
  KEY `item_id` (`item_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1597 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_frm_item_metas`
--

LOCK TABLES `sts_frm_item_metas` WRITE;
/*!40000 ALTER TABLE `sts_frm_item_metas` DISABLE KEYS */;
INSERT INTO `sts_frm_item_metas` VALUES (81,'Johandré le Roux',68,21,'2018-08-01 15:13:30'),(82,'johandre@atvantage.co.za',69,21,'2018-08-01 15:13:30'),(83,'0835717279',70,21,'2018-08-01 15:13:31'),(84,'1st',71,21,'2018-08-01 15:13:31'),(85,'Karen',68,22,'2018-08-01 17:43:12'),(86,'karen@twosugars.co.za',69,22,'2018-08-01 17:43:12'),(87,'0836913934',70,22,'2018-08-01 17:43:12'),(88,'Test',71,22,'2018-08-01 17:43:12'),(93,'Rocky Swartz',68,24,'2018-08-25 12:35:23'),(94,'consulting@randalstewart.com',69,24,'2018-08-25 12:35:23'),(95,'0832701621',70,24,'2018-08-25 12:35:23'),(96,'Testing Stadsig Smartsheet',71,24,'2018-08-25 12:35:23'),(97,'bruce',68,25,'2018-08-25 12:36:40'),(98,'consulting@randalstewart.com',69,25,'2018-08-25 12:36:40'),(99,'0832701621',70,25,'2018-08-25 12:36:40'),(100,'Testing Bruce',71,25,'2018-08-25 12:36:40'),(101,'Rocky Swartz',68,26,'2018-08-25 12:55:02'),(102,'consulting@randalstewart.com',69,26,'2018-08-25 12:55:02'),(103,'0832701621',70,26,'2018-08-25 12:55:02'),(104,'z\\xd\\',71,26,'2018-08-25 12:55:02'),(105,'David',68,27,'2018-08-27 15:13:14'),(106,'golliath@randalstewart.com',69,27,'2018-08-27 15:13:14'),(107,'0832701621',70,27,'2018-08-27 15:13:14'),(108,'Testing the Smartsheet connection',71,27,'2018-08-27 15:13:14'),(109,'Conette Hamman',68,28,'2018-08-30 09:39:38'),(110,'conetteh@gmail.com',69,28,'2018-08-30 09:39:38'),(111,'0832712411',70,28,'2018-08-30 09:39:38'),(112,'Good day I would like to receive more information regarding Stadsig.  Regards Conette',71,28,'2018-08-30 09:39:39'),(113,'Rina van Niekerk',68,29,'2018-09-02 05:39:19'),(114,'rina.29@outlook.com',69,29,'2018-09-02 05:39:19'),(115,'0726073783',70,29,'2018-09-02 05:39:19'),(116,'Please send more information on price, plans, etc.',71,29,'2018-09-02 05:39:20'),(117,'Paul Louw',68,30,'2018-09-21 16:37:47'),(118,'paul@atvantage.co.za',69,30,'2018-09-21 16:37:47'),(119,'0834443445',70,30,'2018-09-21 16:37:47'),(120,'Test - confirm receipt please.',71,30,'2018-09-21 16:37:47'),(121,'Estelle Kitching',68,31,'2018-09-22 06:09:57'),(122,'estelle.kitching@gmail.com',69,31,'2018-09-22 06:09:57'),(123,'0726264084',70,31,'2018-09-22 06:09:57'),(124,'Ons stel belang in grondplan 4.\r\nKontak ons asb',71,31,'2018-09-22 06:09:57'),(125,'Nadia',68,32,'2018-09-25 17:36:54'),(126,'nadia.kaiser@gmail.com',69,32,'2018-09-25 17:36:54'),(127,'0792702633',70,32,'2018-09-25 17:36:54'),(128,'Would like more information including available houses as well as prices. Thank you',71,32,'2018-09-25 17:36:55'),(129,'Mark1 Media Testing',68,33,'2018-09-26 09:11:48'),(130,'test@mark1.co.za',69,33,'2018-09-26 09:11:48'),(131,'0211155898',70,33,'2018-09-26 09:11:48'),(132,'test',71,33,'2018-09-26 09:11:48'),(133,'Mark1 Media Testing',68,34,'2018-09-26 09:13:03'),(134,'test@mark1.co.za',69,34,'2018-09-26 09:13:03'),(135,'0211155898',70,34,'2018-09-26 09:13:03'),(136,'test1',71,34,'2018-09-26 09:13:03'),(137,'Brennan',68,35,'2018-09-28 04:24:40'),(138,'Brennan@hot919.co.za',69,35,'2018-09-28 04:24:40'),(139,'0813783571',70,35,'2018-09-28 04:24:40'),(140,'Interested, please send me more details and pricing.',71,35,'2018-09-28 04:24:40'),(141,'Kobus',68,36,'2018-09-28 12:29:54'),(142,'kobus@csfarms.co.za',69,36,'2018-09-28 12:29:54'),(143,'0824974531',70,36,'2018-09-28 12:29:54'),(144,'Unit 10/11 - interested, who can help me with prices?',71,36,'2018-09-28 12:29:54'),(145,'Lucia Booyens',68,37,'2018-09-30 15:17:57'),(146,'luciabooyens@mweb.co.za',69,37,'2018-09-30 15:17:57'),(147,'0829209453',70,37,'2018-09-30 15:17:57'),(148,'Interested',71,37,'2018-09-30 15:17:57'),(149,'mark1 test',68,38,'2018-10-01 09:11:53'),(150,'test@mark1.co.za',69,38,'2018-10-01 09:11:53'),(151,'0211111111',70,38,'2018-10-01 09:11:53'),(152,'test',71,38,'2018-10-01 09:11:53'),(153,'mark1 test',68,39,'2018-10-01 09:12:54'),(154,'test@mark1.co.za',69,39,'2018-10-01 09:12:54'),(155,'0211111111',70,39,'2018-10-01 09:12:54'),(156,'test',71,39,'2018-10-01 09:12:54'),(157,'mark1 test',68,40,'2018-10-01 09:13:28'),(158,'test@mark1.co.za',69,40,'2018-10-01 09:13:28'),(159,'0211111111',70,40,'2018-10-01 09:13:28'),(160,'test',71,40,'2018-10-01 09:13:28'),(161,'mark1 test',68,41,'2018-10-01 09:14:48'),(162,'test@mark1.co.za',69,41,'2018-10-01 09:14:48'),(163,'0211111111',70,41,'2018-10-01 09:14:48'),(164,'test',71,41,'2018-10-01 09:14:48'),(165,'mark1 test',68,42,'2018-10-01 09:16:42'),(166,'test@mark1.co.za',69,42,'2018-10-01 09:16:42'),(167,'0211111111',70,42,'2018-10-01 09:16:42'),(168,'test',71,42,'2018-10-01 09:16:42'),(169,'mark1 test',68,43,'2018-10-01 09:18:32'),(170,'test@mark1.co.za',69,43,'2018-10-01 09:18:32'),(171,'0211111111',70,43,'2018-10-01 09:18:32'),(172,'test',71,43,'2018-10-01 09:18:32'),(173,'mark1 test',68,44,'2018-10-01 09:19:36'),(174,'test@mark1.co.za',69,44,'2018-10-01 09:19:36'),(175,'0211111111',70,44,'2018-10-01 09:19:36'),(176,'test',71,44,'2018-10-01 09:19:36'),(177,'mark1 test',68,45,'2018-10-01 09:21:36'),(178,'test@mark1.co.za',69,45,'2018-10-01 09:21:36'),(179,'0211111111',70,45,'2018-10-01 09:21:36'),(180,'test',71,45,'2018-10-01 09:21:37'),(181,'mark1 test 1',68,46,'2018-10-01 09:22:37'),(182,'test1@mark1.co.za',69,46,'2018-10-01 09:22:37'),(183,'0211111111',70,46,'2018-10-01 09:22:38'),(184,'test',71,46,'2018-10-01 09:22:38'),(185,'mark1 test 1',68,47,'2018-10-01 09:51:57'),(186,'test1@mark1.co.za',69,47,'2018-10-01 09:51:57'),(187,'0211111111',70,47,'2018-10-01 09:51:57'),(188,'test',71,47,'2018-10-01 09:51:57'),(189,'mark1 test 1',68,48,'2018-10-01 10:18:50'),(190,'test1@mark1.co.za',69,48,'2018-10-01 10:18:50'),(191,'0211111111',70,48,'2018-10-01 10:18:50'),(192,'test',71,48,'2018-10-01 10:18:50'),(193,'mark1 test 1',68,49,'2018-10-01 14:18:34'),(194,'test1@mark1.co.za',69,49,'2018-10-01 14:18:34'),(195,'0211111111',70,49,'2018-10-01 14:18:34'),(196,'test',71,49,'2018-10-01 14:18:34'),(197,'mark1 test 1',68,50,'2018-10-01 14:20:13'),(198,'test1@mark1.co.za',69,50,'2018-10-01 14:20:13'),(199,'0211111111',70,50,'2018-10-01 14:20:13'),(200,'test',71,50,'2018-10-01 14:20:13'),(201,'mark1 test 1',68,51,'2018-10-01 14:39:16'),(202,'test1@mark1.co.za',69,51,'2018-10-01 14:39:17'),(203,'0211111111',70,51,'2018-10-01 14:39:17'),(204,'test',71,51,'2018-10-01 14:39:17'),(205,'Test',68,52,'2018-10-02 06:29:14'),(206,'test@test.com',69,52,'2018-10-02 06:29:14'),(207,'test',70,52,'2018-10-02 06:29:14'),(208,'test',71,52,'2018-10-02 06:29:14'),(209,'test',68,53,'2018-10-02 06:44:49'),(210,'test@test.com',69,53,'2018-10-02 06:44:49'),(211,'test',70,53,'2018-10-02 06:44:49'),(212,'test',71,53,'2018-10-02 06:44:49'),(213,'mark1 test 1',68,54,'2018-10-02 07:03:57'),(214,'test1@mark1.co.za',69,54,'2018-10-02 07:03:58'),(215,'0211111111',70,54,'2018-10-02 07:03:58'),(216,'test',71,54,'2018-10-02 07:03:58'),(217,'mark1 test 1',68,55,'2018-10-02 07:19:53'),(218,'test1@mark1.co.za',69,55,'2018-10-02 07:19:53'),(219,'0211111111',70,55,'2018-10-02 07:19:53'),(220,'test',71,55,'2018-10-02 07:19:53'),(221,'mark1 test 1',68,56,'2018-10-02 07:23:22'),(222,'test1@mark1.co.za',69,56,'2018-10-02 07:23:22'),(223,'0211111111',70,56,'2018-10-02 07:23:22'),(224,'test',71,56,'2018-10-02 07:23:22'),(225,'Mark1 test - contact page',68,57,'2018-10-02 07:32:52'),(226,'test@mark1.co.za',69,57,'2018-10-02 07:32:52'),(227,'0210000000',70,57,'2018-10-02 07:32:52'),(228,'test',71,57,'2018-10-02 07:32:52'),(229,'Mark1 test - contact page',68,58,'2018-10-02 07:46:50'),(230,'test@mark1.co.za',69,58,'2018-10-02 07:46:50'),(231,'0210000000',70,58,'2018-10-02 07:46:50'),(232,'test',71,58,'2018-10-02 07:46:50'),(233,'Mark1 test - contact page',68,59,'2018-10-02 07:53:53'),(234,'test@mark1.co.za',69,59,'2018-10-02 07:53:54'),(235,'0210000000',70,59,'2018-10-02 07:53:54'),(236,'test',71,59,'2018-10-02 07:53:54'),(237,'claude munnik',68,60,'2018-10-06 09:33:02'),(238,'claudemunnik74@gmail.com',69,60,'2018-10-06 09:33:02'),(239,'0833057182',70,60,'2018-10-06 09:33:02'),(240,'Good day\r\n\r\nPlease forward me prices on 3 and bed homes please',71,60,'2018-10-06 09:33:02'),(241,'Hilton Benjamin rep',68,61,'2018-10-09 12:21:04'),(242,'hbenjamin@buco.co.za',69,61,'2018-10-09 12:21:04'),(243,'071 131 6506',70,61,'2018-10-09 12:21:04'),(244,'Hi I am the rep for Buco PAARL, could I possibly get a appointment to see you Thanks Hilton',71,61,'2018-10-09 12:21:05'),(245,'Koos Burger',68,62,'2018-10-15 09:33:20'),(246,'theebend47@vinet.co.za',69,62,'2018-10-15 09:33:20'),(247,'0836500787',70,62,'2018-10-15 09:33:20'),(248,'Ek sal graag van julle plot&amp; plan opsies wil sien',71,62,'2018-10-15 09:33:20'),(249,'Jack Raath',68,63,'2018-10-17 08:01:55'),(250,'jwraath@gmail.com',69,63,'2018-10-17 08:01:55'),(251,'0823880000',70,63,'2018-10-17 08:01:55'),(252,'Stel belang in huur of koop van 2 Sk eenheid. Okkupasie 1 Januarie',71,63,'2018-10-17 08:01:55'),(253,'Elize Buurman',68,64,'2018-10-17 21:03:49'),(254,'elize_buurman@hotmail.com',69,64,'2018-10-17 21:03:49'),(255,'0730060718',70,64,'2018-10-17 21:03:49'),(256,'Plans and Prizes please?',71,64,'2018-10-17 21:03:49'),(257,'JACQUI',68,65,'2018-10-19 11:24:41'),(258,'JACQUI@FHBC.CO.ZA',69,65,'2018-10-19 11:24:41'),(259,'0218645180',70,65,'2018-10-19 11:24:41'),(260,'I\'m interested',71,65,'2018-10-19 11:24:41'),(261,'Neal Kotze',68,66,'2018-10-20 13:41:42'),(262,'nealkotze@gmail.com',69,66,'2018-10-20 13:41:42'),(263,'0844002723',70,66,'2018-10-20 13:41:42'),(264,'Goeie middag. Kan ek dalk meer inligting oor die ontwikkeling kry?',71,66,'2018-10-20 13:41:42'),(265,'Neal Kotze',68,67,'2018-10-21 07:26:11'),(266,'nealkotze@gmail.com',69,67,'2018-10-21 07:26:11'),(267,'0844002723',70,67,'2018-10-21 07:26:11'),(268,'Could you please contact me regarding the available properties?',71,67,'2018-10-21 07:26:11'),(269,'Johleen Williams',68,68,'2018-10-22 15:57:25'),(270,'jvanniekerk650@gmail.com',69,68,'2018-10-22 15:57:25'),(271,'0723335271',70,68,'2018-10-22 15:57:25'),(272,'I\'m looking for a house to rent for 4/5 days over the Christmas season. 24-26 December 2018',71,68,'2018-10-22 15:57:25'),(273,'Kim parker',68,69,'2018-10-26 05:52:51'),(274,'jirriparker@gmail.com',69,69,'2018-10-26 05:52:51'),(275,'0823278472',70,69,'2018-10-26 05:52:51'),(276,'I’m looking for accommodation for a single lady immediately.  I also am looking for turn out livery for my house ( not stabled)',71,69,'2018-10-26 05:52:51'),(277,'Maunette',68,70,'2018-10-26 17:29:55'),(278,'maunettedekock@gmail.com',69,70,'2018-10-26 17:29:55'),(279,'0783645495',70,70,'2018-10-26 17:29:55'),(280,'3 bedroom cost',71,70,'2018-10-26 17:29:55'),(281,'Annetjie',68,71,'2018-10-27 07:23:02'),(282,'annetjie@matthysen.net',69,71,'2018-10-27 07:23:02'),(283,'0828224907',70,71,'2018-10-27 07:23:02'),(284,'Please contact me',71,71,'2018-10-27 07:23:02'),(285,'Marlene Hoffmann',68,72,'2018-10-27 09:05:32'),(286,'marlene.hoffmann@santam.co.za',69,72,'2018-10-27 09:05:33'),(287,'0824159212',70,72,'2018-10-27 09:05:33'),(288,'Please send me details about this estate\r\n\r\nThank you\r\nMarlene',71,72,'2018-10-27 09:05:33'),(289,'Carol clausen',68,73,'2018-10-30 17:50:07'),(290,'carolsquirrel@gmail.com',69,73,'2018-10-30 17:50:07'),(291,'no number yet',70,73,'2018-10-30 17:50:07'),(292,'Is this Estate pet friendly?\r\nThanks   \r\nCarol',71,73,'2018-10-30 17:50:07'),(293,'Melanie Fourie',68,74,'2018-11-05 07:03:43'),(294,'melanie.f@harcourts.co.za',69,74,'2018-11-05 07:03:43'),(295,'0824998855',70,74,'2018-11-05 07:03:43'),(296,'Is this estate suitable for a retired couple?  Do you have 1 bed units? alternatively 2 beds with 2 baths? and the price please.',71,74,'2018-11-05 07:03:43'),(297,'Berna Struwig',68,75,'2018-11-05 08:19:12'),(298,'bernastruwig@gmail.com',69,75,'2018-11-05 08:19:12'),(299,'0833202137',70,75,'2018-11-05 08:19:12'),(300,'Lynette, ek het reeds met jou gepraat - soek nou net die huis wat te koop is !',71,75,'2018-11-05 08:19:12'),(301,'Conrad Kok',68,76,'2018-11-07 09:01:13'),(302,'kokconrad@gmail.com',69,76,'2018-11-07 09:01:14'),(303,'0761511806',70,76,'2018-11-07 09:01:14'),(304,'Please send me some information on this. Pricing for different units etc.',71,76,'2018-11-07 09:01:14'),(305,'Sarie Bothma',68,77,'2018-11-07 14:11:48'),(306,'sariebothma22@gmail.com',69,77,'2018-11-07 14:11:48'),(307,'0835326864',70,77,'2018-11-07 14:11:48'),(308,'More info please',71,77,'2018-11-07 14:11:48'),(309,'Ronald GARRETSON',68,78,'2018-11-12 09:28:17'),(310,'sales@wexonexx.com',69,78,'2018-11-12 09:28:17'),(311,'3037312668',70,78,'2018-11-12 09:28:17'),(312,'Do you want to make up to €45000 easily with us? It\'s pretty simple. All you will need to do is to find buyers for our luxury European classic cars. We can offer you great sale commissions. We have the following classic cars for sale: Ultra rare 1930 Reo Flying Cloud 25 Custom Street Rod - Iconic 1938 BMW 328 Roadster - 1954 BMW 501 V8 Convertible - 1955 BMW 502 V8 Coupe - 1960 Jaguar MK2 3.8l - 1967 Alfa Romeo 1300 GT Junior - 1970 Alfa Romeo 1750 GT Veloce - 1970 Mercedes 280SL Convertible (Pagoda) - 1973 Mercedes 280E AMG - 1976 Triumph TR6 -1981 Mercedes 500SL Convertible -1982 Mercedes 380SL Convertible - 1986 Mercedes 300SL Convertible - 1988 Ferrari Testarossa - 1991 Rolls-Royce Silver Spur II - 1992 Mercedes 500E AMG - 1993 Mercedes 500E - 1992 Mercedes 300CE AMG Convertible - 1999 Ferrari 456M GTA.  All our classic cars are in showroom condition. If you are interested in this offer please check out more details  at http://wexonexx.com/14-luxury-classic-cars . Please contact us exclusively via our Contact Us form at https://wexonexx.com/contact-us . We will be pleased to hear from you. Have a great day. Best regards Ronald GARRETSON, WEXONEX Luxury Classic Cars, Denver, CO. http://wexonexx.com .  IMPORTANT NOTICE:  This message has been posted via a Contact Us form on your site. Contact forms are publicly accessible and they can be used for posting messages by anyone. We don\'t use, hold or archive your e-mail addresses.',71,78,'2018-11-12 09:28:17'),(313,'Samantha',68,79,'2018-11-13 13:36:47'),(314,'shadyvan239@gmail.com',69,79,'2018-11-13 13:36:47'),(315,'0733331999',70,79,'2018-11-13 13:36:48'),(316,'Good day can you please tell me from what prices the houses will be sold cheapest.thank you.Samantha',71,79,'2018-11-13 13:36:48'),(317,'Wynand du Plessis',68,80,'2018-11-13 16:14:43'),(318,'wynand.dup@gmail.com',69,80,'2018-11-13 16:14:43'),(319,'0721847015',70,80,'2018-11-13 16:14:43'),(320,'Kan u my meer inligting gee ivm prys, beskikbaarheid, grootte ens van die 2 slaapkamer eenhede',71,80,'2018-11-13 16:14:43'),(321,'Nico du Plessis',68,81,'2018-11-13 17:14:33'),(322,'nicoduplessis22@gmail.com',69,81,'2018-11-13 17:14:33'),(323,'0848002225',70,81,'2018-11-13 17:14:35'),(324,'Prices and availability on 2 and 3 bedrooms',71,81,'2018-11-13 17:14:35'),(325,'Nico du Plessis',68,82,'2018-11-13 17:15:50'),(326,'nicoduplessis22@gmail.com',69,82,'2018-11-13 17:15:50'),(327,'0848002225',70,82,'2018-11-13 17:15:51'),(328,'Pricing and availability',71,82,'2018-11-13 17:15:51'),(329,'Rudi van rensburg',68,83,'2018-11-14 12:05:48'),(330,'rudi.vanrensburg@dell.com',69,83,'2018-11-14 12:05:48'),(331,'0788018913',70,83,'2018-11-14 12:05:48'),(332,'Detials please',71,83,'2018-11-14 12:05:48'),(333,'Almari Nortjé',68,84,'2018-11-15 07:26:13'),(334,'almari24.adt@gmail.com',69,84,'2018-11-15 07:26:14'),(335,'0783772085',70,84,'2018-11-15 07:26:14'),(336,'Hi there,\r\nMy husband and I are interested in house plan 3 with the option of an extra/2nd garage. Would you please send me more information or the availability of the plots. We are first time buyers and would like some assistance with the whole process.\r\nKind regards,\r\nAlmari Nortjé',71,84,'2018-11-15 07:26:14'),(337,'Ayesha Alexander',68,85,'2018-11-16 15:39:11'),(338,'A-Alexander1962@gmail.com',69,85,'2018-11-16 15:39:11'),(339,'0609151367',70,85,'2018-11-16 15:39:11'),(340,'Hi I trust you welli.i would like to no the price of number one and two please',71,85,'2018-11-16 15:39:12'),(341,'Faz De Aguiar',68,86,'2018-11-17 14:26:26'),(342,'fazanhelio@gmail.com',69,86,'2018-11-17 14:26:26'),(343,'0725603838',70,86,'2018-11-17 14:26:27'),(344,'How much are these homes?',71,86,'2018-11-17 14:26:27'),(345,'roy alderdice',68,87,'2018-11-18 16:12:16'),(346,'aldie@iafrica.com',69,87,'2018-11-18 16:12:16'),(347,'+27824460000',70,87,'2018-11-18 16:12:16'),(348,'what is the price for unit 4?\r\nwhen is occupation?\r\nwhat is the anticipated levy and rates?\r\nterms of payment?',71,87,'2018-11-18 16:12:16'),(349,'Kathleen Cockburn-Smith',68,88,'2018-11-19 02:57:18'),(350,'kcsmith77@gmail.com',69,88,'2018-11-19 02:57:18'),(351,'+44 7713147322',70,88,'2018-11-19 02:57:18'),(352,'I am interested.    Kathleen',71,88,'2018-11-19 02:57:18'),(353,'Hannes Zietsman',68,89,'2018-11-19 10:09:54'),(354,'jjziets@gmail.com',69,89,'2018-11-19 10:09:54'),(355,'+27844071414',70,89,'2018-11-19 10:09:54'),(356,'Hi. I\'m interested to know the pricing of the type 9,10 and 11. What is the availability at this stage?\r\nKind regards Hannes',71,89,'2018-11-19 10:09:55'),(357,'Shireen Mall',68,90,'2018-11-20 09:00:49'),(358,'creditandcommercial@gmail.com',69,90,'2018-11-20 09:00:50'),(359,'0828215576',70,90,'2018-11-20 09:00:50'),(360,'Please call me, thanks',71,90,'2018-11-20 09:00:50'),(361,'Ryno',68,91,'2018-11-28 04:36:21'),(362,'gnvcatering@paarlapp.co.za',69,91,'2018-11-28 04:36:21'),(363,'0842054265',70,91,'2018-11-28 04:36:21'),(364,'I would love prices for stand and unit building of floor plan 1 and 2',71,91,'2018-11-28 04:36:22'),(365,'Pieter Koen',68,92,'2018-11-28 10:34:10'),(366,'pieter@hpsecurity.co.za',69,92,'2018-11-28 10:34:10'),(367,'0742844476',70,92,'2018-11-28 10:34:10'),(368,'Meeting with HOA please.\r\nWith whom can I make contact?\r\nRegards',71,92,'2018-11-28 10:34:10'),(369,'LeroyKella',68,93,'2018-11-28 17:48:03'),(370,'hoytstephany@gmail.com',69,93,'2018-11-28 17:48:03'),(371,'81883596182',70,93,'2018-11-28 17:48:03'),(372,'As suggested by its name, vmate App is a relevant video downloader computer software. nonetheless, fantastic considerable measure of best parts that make it distinctive from other people. the job has a\'substantial amount\'of ability so as to get issues gone through strangely enough. your vmate loan application generally solitary way out for a couple of of your own situations. you will have a great time for Bollywood, the show biz industry as well as instructional videos, movies to songs.\r\n\r\nwhen it comes to vmate to gain android os, You will access <a href=\"https://www.vmate.com/\" />vmate</a> almost all audio with short clips. will also, you certainly will with none can charge data up from range of internet movie buffering internet sites. Authoritatively, <a href=\"https://www.vmate.com/\" />vmate</a> vmate Downloader not necessarily at your disposal on the search engines learn store. regardless, potential clients who have got android the radio by having rendition 2.2 or higher will probably recently purchase the software. moreover, the way to the modern music as well as hd recordings utilising the vmate component. moreover, You can start to play real world the television pertaining to android cell phone plans. this method vmate downloader will provide you with lots of important features. together with this kind of lines, You will be informed about the drives of this occurence astounding function and so thusly use them to save the utilization of your online data file monetary fee. an excellent mark of a vmate as for android mobile phone gadget is that with this resume, you receive the indefinite start using.\r\n\r\nthis form submission aids you Watch and as well notice all hottest higher films, Songs possibly even you furthermore downloading these to your appliance. the actual component your application is regarded as best free download lots of video training and has on average 200 real-time television stations no cost. vmate might be, in actual fact, a multi functional request. over 50,000+ convenient happy clientele propose and came across this application form and are covered by fantastic contribution along with this particular vmate.\r\n\r\nexcellent chaos pertaining to 1000+ amazing recordings, movie, and therefore melodies. Cricket ceiling fans normally would now manage to watch you see, the cricket with a large caliber within this approach. the actual other down from alternative you simply didn\'t see your amazing most prized tv programs also simply interesting factor to get inquisitive exactly what you had during picture, setup the entire vmate computer program watching each cleansers whenever and through anyplace.\r\n\r\nprovides\r\n\r\n1. It allows you to fastening individual movie clips. \r\n\r\n2. Comes with an alternative choice to enable/disable convert for device networking system. \r\n\r\n3. enclosed web browser \r\n\r\n4. listed web search since history \r\n\r\n5. spot exceptional trending music inspiring ideas\r\n\r\n6. immaculate to enjoy store, account \r\n\r\n7. Completely consisted of file/folder supervisor for simple portable media organization \r\n\r\n8. outdoor cell phone browser copy.',71,93,'2018-11-28 17:48:03'),(373,'Philip venter',68,94,'2018-11-30 17:43:19'),(374,'philip@fhs.za.net',69,94,'2018-11-30 17:43:19'),(375,'0828928745',70,94,'2018-11-30 17:43:19'),(376,'Please send info',71,94,'2018-11-30 17:43:19'),(377,'Emma',68,95,'2018-12-04 06:27:57'),(378,'emerentiasteyn1@gmail.com',69,95,'2018-12-04 06:27:58'),(379,'0794833008',70,95,'2018-12-04 06:27:58'),(380,'2 Bedroom flat to rent  for me husband and my 9 month old baby',71,95,'2018-12-04 06:27:58'),(381,'mehrzad',68,96,'2018-12-09 12:17:28'),(382,'victor_fifa_2008@hotmail.com',69,96,'2018-12-09 12:17:28'),(383,'victor.vala@laposte.net',70,96,'2018-12-09 12:17:28'),(384,'Ciao! Please note an interesting offers offers for you.  Try and be our next winner. http://bit.ly/2JaJKbI',71,96,'2018-12-09 12:17:29'),(385,'Robertvog',68,97,'2018-12-10 13:18:00'),(386,'hassleholm@hydroscand.se',69,97,'2018-12-10 13:18:00'),(387,'info@belbaluk.co.uk',70,97,'2018-12-10 13:18:00'),(388,'Hi Look what we enlist against you! a believableinstead of the ease being \r\n Are you in?  \r\n \r\n \r\nhttp://bit.ly/2jA99zr',71,97,'2018-12-10 13:18:00'),(389,'Kaitlyn Jury',68,98,'2018-12-11 03:23:39'),(390,'jury.kaitlyn@gmail.com',69,98,'2018-12-11 03:23:39'),(391,'079 6446 6583',70,98,'2018-12-11 03:23:39'),(392,'Hi!\r\n\r\nNice flower content you have on your site. You know, MOST customers look at your review pages before visiting and buying at your business. \r\nOver 63% of them check Google first!  We feel that you could use a little help at Google and SiteJabber.\r\n\r\nMost customers avoid leaving reviews until they have a BAD experience to vent! \r\nWe have just the team from US/Canada to come up with great reviews you need. \r\nOur services help maintain at least a 4.0 star rating in order to avoid losing business to competitors! \r\n\r\nWe provide reliable Google, SiteJabber, TrustPilot, TripAdvisor, Facebook, Zomato, YellowPages reviews in bulk, starting at $20 in as little as 5  days!\r\n\r\nCheck out our work and past clients here: \r\nhttp://bit.ly/ormworks\r\n\r\nThank you for your time,\r\n\r\nRegards.\r\nKaitlyn',71,98,'2018-12-11 03:23:39'),(393,'Marist',68,99,'2018-12-13 07:27:03'),(394,'victourieo22@msn.com',69,99,'2018-12-13 07:27:03'),(395,'victoria_luvs_bryan@aol.com',70,99,'2018-12-13 07:27:03'),(396,'Hi! Behold is  nice offers offer for you.  To qualify click on the link below. http://bit.ly/2J9G2z5',71,99,'2018-12-13 07:27:04'),(397,'MichaelTweby',68,100,'2018-12-14 05:52:00'),(398,'info.germany@athlon.com',69,100,'2018-12-14 05:52:01'),(399,'margareta.skoog@dorotea.se',70,100,'2018-12-14 05:52:01'),(400,'Look what we withstand someone is concerned you! an remarkableoffers \r\n Are you in?  \r\n \r\n \r\nhttp://bit.ly/2Pzjsla',71,100,'2018-12-14 05:52:01'),(401,'Alex Scott',68,101,'2018-12-16 12:32:54'),(402,'scottyalex98@gmail.com',69,101,'2018-12-16 12:32:54'),(403,'0828013426',70,101,'2018-12-16 12:32:54'),(404,'Stel belang in eiendom in Diemersfontein',71,101,'2018-12-16 12:32:55'),(405,'Aly Chiman',68,102,'2018-12-18 02:51:38'),(406,'aly1@alychidesigns.com',69,102,'2018-12-18 02:51:38'),(407,'0664 923 43 12',70,102,'2018-12-18 02:51:38'),(408,'Hello there,\r\n\r\nMy name is Aly and I would like to know if you would have any interest to have your website here at stadsig.co.za promoted as a resource on our blog alychidesign.com ? \r\n\r\nWe are in the midst of updating our broken link resources to include current and up to date resources for our readers. Our resource links are manually approved allowing us to mark a link as a do-follow link as well\r\n.\r\nIf you may be interested please in being included as a resource on our blog, please let me know.\r\n\r\nThanks,\r\nAly',71,102,'2018-12-18 02:51:39'),(409,'DavidMef',68,103,'2018-12-18 03:12:38'),(410,'aki@ad4you.se',69,103,'2018-12-18 03:12:39'),(411,'skutskar@sportringen.se',70,103,'2018-12-18 03:12:39'),(412,'Hi What we gyp here is , a faircontribution \r\n Just click on the log-jam flash to the day-star to mazuma change  \r\n \r\n \r\nhttp://bit.ly/2UCle8u',71,103,'2018-12-18 03:12:39'),(413,'Thomastum',68,104,'2018-12-22 01:22:44'),(414,'trevordent79@gmail.com',69,104,'2018-12-22 01:22:44'),(415,'mli81601@gmail.com',70,104,'2018-12-22 01:22:45'),(416,'Hy there,  Look what we probable looking allowing for on you! a properoblation \r\n Honest click on the affiliation humiliate to equanimity  \r\n \r\n \r\nhttp://bit.ly/2UYRNhi',71,104,'2018-12-22 01:22:45'),(417,'AlfredJopay',68,105,'2018-12-25 05:09:23'),(418,'2264mollerkt@gmail.com',69,105,'2018-12-25 05:09:23'),(419,'generalazerbaijan@gmail.com',70,105,'2018-12-25 05:09:23'),(420,'What we foster here is , an giftedpresent \r\n Down click on the log-jam humiliate to decrease  \r\n \r\n \r\nhttp://bit.ly/2rKGZWL',71,105,'2018-12-25 05:09:23'),(421,'Williamuness',68,106,'2018-12-28 23:00:24'),(422,'kalbarrisunseavillas@gmail.com',69,106,'2018-12-28 23:00:24'),(423,'jaxsignsandgraphics@gmail.com',70,106,'2018-12-28 23:00:24'),(424,'Hi What we touch on here is , a healthyoffers \r\n Straight click on the engage subordinate to to coolness  \r\n \r\n \r\nhttp://bit.ly/2ELrpSs',71,106,'2018-12-28 23:00:24'),(425,'Wurmian',68,107,'2018-12-30 12:10:52'),(426,'1982wen@sina.com',69,107,'2018-12-30 12:10:52'),(427,'19830919@tianya.cn',70,107,'2018-12-30 12:10:52'),(428,'Hi! Behold is  an important offers - the excellent collection of world’s top slots, roulette and blackjack games  To qualify click on the link below. http://bit.ly/2J9hJ45',71,107,'2018-12-30 12:10:52'),(429,'Rickeyunesk',68,108,'2019-01-02 17:04:38'),(430,'antoine.guillon59@gmail.com',69,108,'2019-01-02 17:04:38'),(431,'liciavalso@gmail.com',70,108,'2019-01-02 17:04:38'),(432,'Hy there,  an supremeoffering \r\n Well-thought-of click \r\n \r\n \r\nhttps://drive.google.com/file/d/1IoXJHlw0FEGK2Oj3oGb2taPrFSRco9Lq/preview',71,108,'2019-01-02 17:04:38'),(433,'RichardKen',68,109,'2019-01-05 10:25:52'),(434,'david.bumpus@gmail.com',69,109,'2019-01-05 10:25:52'),(435,'clement.guillotin@gmail.com',70,109,'2019-01-05 10:25:52'),(436,'Hy there,  Look what we have for you! an interestingoffering \r\n To qualify click on the link below  \r\n \r\nhttps://drive.google.com/file/d/1aChbw758PyPDKqmzngp6A-UVWMU7NLNC/preview',71,109,'2019-01-05 10:25:52'),(437,'Walterloomb',68,110,'2019-01-10 08:51:25'),(438,'nwfueldrain@gmail.com',69,110,'2019-01-10 08:51:26'),(439,'dressupinstyle@gmail.com',70,110,'2019-01-10 08:51:26'),(440,'Hy there,  What we have here is , an importantoffering \r\n Are you in?  \r\n \r\nhttps://drive.google.com/file/d/1FwjCu_jsOzst0nUJC9S-IOdQeJRo705M/preview',71,110,'2019-01-10 08:51:26'),(441,'Pieter Koen',68,111,'2019-01-14 12:24:41'),(442,'pieter@hpsecurity.co.za',69,111,'2019-01-14 12:24:41'),(443,'0742844476',70,111,'2019-01-14 12:24:41'),(444,'Conduct Marketing for HP Security. Wanted to make an appointment to discuss our services.\r\nRegards',71,111,'2019-01-14 12:24:41'),(445,'Jamespet',68,112,'2019-01-14 14:12:48'),(446,'fentigerpestcontrol@gmail.com',69,112,'2019-01-14 14:12:48'),(447,'poscos@gmail.com',70,112,'2019-01-14 14:12:48'),(448,'Hey Good news ! niceoffers \r\n Just click \r\n \r\nhttp://94.250.254.43/',71,112,'2019-01-14 14:12:48'),(449,'Jp',68,113,'2019-01-15 09:00:50'),(450,'jebination13@gmail.com',69,113,'2019-01-15 09:00:50'),(451,'0713732500',70,113,'2019-01-15 09:00:50'),(452,'Good day - I cannot seem to see where the peice list is on your website. \r\n\r\nCan someone please forward the proces for all the units. Thank you',71,113,'2019-01-15 09:00:50'),(453,'Jamesbrali',68,114,'2019-01-21 22:07:21'),(454,'m.obhlidal@gmail.com',69,114,'2019-01-21 22:07:21'),(455,'petemoores62@gmail.com',70,114,'2019-01-21 22:07:21'),(456,'Actual dope ! a magnificentoffer \r\n Are you in?    http://bit.ly/2RYOAzt',71,114,'2019-01-21 22:07:21'),(457,'gladys coetzee',68,115,'2019-01-22 08:32:53'),(458,'coetzeegladys@gmail.com',69,115,'2019-01-22 08:32:53'),(459,'0218074633',70,115,'2019-01-22 08:32:53'),(460,'2 sleeping room house to rent or buy',71,115,'2019-01-22 08:32:53'),(461,'sheppard',68,116,'2019-01-25 18:08:34'),(462,'1968venus@sbcglobal.net',69,116,'2019-01-25 18:08:34'),(463,'19941107@yahoo.com',70,116,'2019-01-25 18:08:34'),(464,'Hello! There is an amazing - more than 400 incredible games &amp; 300 top online slots waiting for you.  To qualify click on the link below. http://bit.ly/2Jc4IqQ',71,116,'2019-01-25 18:08:34'),(465,'Carlosfar',68,117,'2019-01-26 04:16:51'),(466,'nnikkicarr11@gmail.com',69,117,'2019-01-26 04:16:52'),(467,'pollyclinics@gmail.com',70,117,'2019-01-26 04:16:52'),(468,'Hy there,  Look what we be experiencing on the side of you! a crediblepresent \r\n To be fit click on the interdependence couple under    http://bit.ly/2S42yA7',71,117,'2019-01-26 04:16:52'),(469,'Showinded',68,118,'2019-01-26 18:10:29'),(470,'darthvader.veider@yandex.com',69,118,'2019-01-26 18:10:29'),(471,'82613749682',70,118,'2019-01-26 18:10:29'),(472,'In 2019 there are lot of films are going to be released. Obviously, there are Avengers part 2, new Star Wars Episode 9 and many others. These are films that everyone wants to see, but sometimes you can miss it.That\'s where applications come in handy you can watch a movies for free. Btw, looking for the best app to watch free movies on your Android phone? Then your should check Showbox app. This is the most famous application today that has a big library of tv shows and films. This app is also available for iOS phone users. But your need to download it first to enjoy free films <a href=\"http://showbox-all.com/download-showbox-for-ios/\" />http://showbox-all.com/download-showbox-for-ios/</a>',71,118,'2019-01-26 18:10:29'),(473,'RobertSwams',68,119,'2019-01-30 03:12:42'),(474,'londonfieldsjumbletrail@gmail.com',69,119,'2019-01-30 03:12:42'),(475,'mandayogainfo@gmail.com',70,119,'2019-01-30 03:12:42'),(476,'Hey Look what we require quest of you! an fabulouspresent \r\n Just click on the tie under to suitable    http://bit.ly/2S3TXNP',71,119,'2019-01-30 03:12:42'),(477,'RobertSwams',68,120,'2019-02-02 22:37:10'),(478,'berkshirenetballevents@gmail.com',69,120,'2019-02-02 22:37:11'),(479,'faceq.derbyac@gmail.com',70,120,'2019-02-02 22:37:11'),(480,'Hey Tolerable telecast ! an leadingoffers \r\n Just click   http://bit.ly/2S3qq7b',71,120,'2019-02-02 22:37:12'),(481,'DLkirofe',68,121,'2019-02-03 09:23:41'),(482,'ekonomitch@yandex.com',69,121,'2019-02-03 09:23:41'),(483,'87224578117',70,121,'2019-02-03 09:23:41'),(484,'Missing dll from your laptop? Error on loading a game? Our website can fix it! Download your missing dll from <a href=\"http://founddll.com/rasman-dll/\" />http://founddll.com/rasman-dll/</a> page. Fix the error now!',71,121,'2019-02-03 09:23:41'),(485,'asiamejsn',68,122,'2019-02-05 15:11:19'),(486,'asiame@mail.ru',69,122,'2019-02-05 15:11:20'),(487,'89812899716',70,122,'2019-02-05 15:11:20'),(488,'boy\'s a sore throat converted into full\r\n\r\ndavidson had told her or his recovery were able to remove a few years merely he\'s got showed clearly dermatologist incorrect (video: Handout)apply for ordinary revisions on to your inbox+ SubscribeSee our comfort noticeThank you along with signing up!\r\n\r\ncannot subscribe, repeat the process laterInvalid web mail\r\n\r\nmeet up with plucky five year old harley Margerison, whoever apparently with their angelic a sore throat the previous holidays rapidly deteriorated into an uncommon illness where got out of your ex boyfriend cannot walk or discussion about.\r\n\r\neach towards the south liverpool child magnificent family unit could actually never have envisioned which experts claim such the end disorder performed end up as something so crucial, which in turn initially undergone topmost medics bewildered.\r\n\r\nright, some sort of teenager are already clinically determined to have Sydenham\'s Chorea, an infrequent predicament caused by a tiniest seed what kind impinges on the section of the brain preventing transfer, as well as balance involving your partner\'s facial expression, feet and hands.\r\n\r\nbut merely months afterwards that prognosis, harley which has run two fallen through because of 1k varies,Trumping doctors\' <a href=\"http://www.love-sites.com/asiame-com-review-4-scam-questions-mostly-asked/\" />asiaME</a> estimations that it could consider taking long time as for that person to fully recover.\r\n\r\n(star: pennsylvania)\r\n\r\nlocated on his particular ugliest, harley could be unable to last competently as his control genuinely seriously affected impressive hands a lot poor oral health his as he tried to eat.\r\n\r\nyour ex boyfriend what food was in medical facility in support of two weeks, but simply four months subsequently, its adults have said your boyfriend resembles a very different little boy.\r\n\r\nmother Claire Higgarounds claimed your sweetheart boy received <a href=\"https://twitter.com/asiameofficial?lang=en\">asiaME.COM</a> in awe all who\'d saw your improve record breaking speed.\r\n\r\nthat 29 years old commanded replicate : \"stage, he has been just a standard, shrewd,Independent son.\r\n\r\n\"you never assume he / she was indeed perilous.\r\n\r\n\"being a parent others in addition chelsea, an individual\'s daddy, have become extremely happy with that person your progress that can he or she is sold,\r\n\r\ndavidson is back at school and today jogs contests to lift your money to find Alder fore sure healthcare facility child\'s School in liverpool all night to your partner\'s going swimming dance club big Friday.\r\n\r\nmother and father Claire confessed your cry welled via a flight in their own loving, for one or perhaps carries on, in the event her child informed her: \"I can use this treatment, I believe in no one,\r\n\r\non top of that immediately two skillful moves, The little one have one more on the horizon.\r\n\r\nmother contending office at home red tape as a jane presents a threat to realize death wife this droped poorly when it is in Scotland in their new child,son and daughter\r\n\r\nMorriboys grocery staff member Claire and thus train bring about bob spent time on their personal medical facility to in december sore throat with a which actually before long developed into tiger woods needing no more domination of the dog\'s elegant legs spoken communication slurred.\r\n\r\nClaire stated that: \"completely <a href=\"https://www.crunchbase.com/organization/asiame\">Asiame.COM</a> reminiscent of seeing a youngster consistently,He one had some toast which although try to nibble on, yet,yet somehow your partner\'s wrist continued lack of oral cavity.\r\n\r\n\"he / she cannot offer a lending product,It got uncertain to observe aggravated this person was.\r\n\r\n\"at the start, He reserved falling out of a medical facility king size bed and there we were needing to carry that person to stained any individual has to try everything or maybe.\r\n\r\n\"within just january or even went back to college, a long way just before agenda, despite the fact that practitioners said it may possibly acknowledge several years pertaining to that person to fully recover.\r\n\r\n\"it\'s improvements produces pleasantly surprised you, your dog is thus just an existing five years old omg,\r\n\r\nharley davidson require anti-biotics this he is going to remain on until the age of 18.\r\n\r\nHe is about to partake of partner budding athlete 10 year old George Mathias and is defined as running with some other highly successful people which included gymnast Beth Tweddle, ex wife footballer Jamie Carragher but saint Helens rugby little league captain Jon Wilkin.\r\n\r\nCath Harding, thoughts together with city fundraising at the hospital, says: \"davidson is a tremendous son.\r\n\r\n\"It\'s an extraordinary victory get hold of accomplished a 1km support such a few days immediately after giving doctor\'s additionally simply just over joyed he made a decision to raise revenue on behalf of Alder hey there child\'s.',71,122,'2019-02-05 15:11:20'),(489,'RobertSwams',68,123,'2019-02-06 23:34:21'),(490,'washerncooker@gmail.com',69,123,'2019-02-06 23:34:21'),(491,'bilbotogins@gmail.com',70,123,'2019-02-06 23:34:22'),(492,'Look what we contain quest of you! an high-rankingoffers \r\n At best click on the constituent below to suitable    http://bit.ly/2S93oM0',71,123,'2019-02-06 23:34:22'),(493,'Funeka Carelse',68,124,'2019-02-07 11:13:15'),(494,'funekastengana@gmail.com',69,124,'2019-02-07 11:13:15'),(495,'0732674629',70,124,'2019-02-07 11:13:15'),(496,'Interested in you estate. Please give for information on how to apply.',71,124,'2019-02-07 11:13:15'),(497,'Anisodactyli',68,125,'2019-02-11 02:50:25'),(498,'delphi226@gmail.com',69,125,'2019-02-11 02:50:25'),(499,'davexyzd@gmail.com',70,125,'2019-02-11 02:50:25'),(500,'Hi!There isa fine offers for placement of your articles http://bit.ly/2RNKeax',71,125,'2019-02-11 02:50:25'),(501,'RobertCer',68,126,'2019-02-11 03:28:08'),(502,'ghinilambor700@yahoo.com',69,126,'2019-02-11 03:28:08'),(503,'ghinilambor700@yahoo.com',70,126,'2019-02-11 03:28:08'),(504,'Hello! \r\n \r\nBitcoin price is falling down. What to do? \r\n \r\nYou have to increase the number of coins until the price of Bitcoin starts rising again! \r\n \r\nThe best choice for this is http://dcbtc.info \r\n \r\nDC-BTC increases bitcoins by 10% in 48 hours. \r\nYou will automatically make a profit in to your bitcoin wallet. \r\n \r\nStart participating with small amounts and make a profit tomorrow! \r\nGuaranteed!',71,126,'2019-02-11 03:28:08'),(505,'asiamenrx',68,127,'2019-02-11 04:58:40'),(506,'asiame@mail.ru',69,127,'2019-02-11 04:58:40'),(507,'84625421688',70,127,'2019-02-11 04:58:41'),(508,'earnings little bit of spunk\r\n\r\ntake a monitor shot and as well,as well as the completely redact information which can be used to identify somebody. contain specialties such as, remember, though,but <a href=\"https://www.crunchbase.com/organization/asiame\">AsiaMe</a> certainly not tied to: First in addition go on companies, Usernames (in addition to your own), personal pix <a href=\"https://www.youtube.com/watch?v=gebVJTCcfJ4\">asiaMe</a> where that you visage <a href=\"https://www.reddit.com/user/AsiaMeReview\">asiame.Com</a> is seen, Subreddit and online community firms, headings created by distinctive strings, And additional information for instance like address and license number plates. surely maintenance brigading then nuisance, for this reason that we ingest this fact tenet relatively greatly.\r\n\r\ndo not ask for details, backlink to, or perhaps email, the employees appeared listed here. you\'ll be suspended.\r\n\r\ndangerous protecting, a little shocking stuff, small unoriginal wisecracks, expensive political/partisan content, as well small reasons not really work regarding. If your site isn shitty great enough, you choose away.\r\n\r\nsteer clear reposting. if you see a repost, feel it\'s, ideally with a url to the last piece of writing.\r\n\r\nnot at all information documents, design gifs single. a person might offer screenshots of established track record food portions of articles.\r\n\r\nfor expertly written content, explore /r/MorbidReality.\r\n\r\nusually attract, Glorifiy, provoke, Or will need violence as an example: \"execute you and your family, \"it also wouldn nevertheless be very dreadful provided that we are going to murdered the particular pedophiles, \"this guy have to stop working, \"pertaining to this guy draws stabbed with health issues which has a rusty screwdriver, and so forth,accessories.',71,127,'2019-02-11 04:58:41'),(509,'Hooties',68,128,'2019-02-14 02:18:21'),(510,'pofofedw32f@yandex.com',69,128,'2019-02-14 02:18:21'),(511,'83683622746',70,128,'2019-02-14 02:18:21'),(512,'I like rock bands! I really do! And my favourite yadrock band is Hootie&amp;Blowfish! All band members has re-united to perform more than 50 concerts for their fans in 2019! To know more about Hootie &amp; Blowfish in 2019 visit website <a href=\"https://hootietheblowfishtour.com\">Hootie and the Blowfish tour Hershey</a>. You won\'t miss any performance in 2019 if you click on the link!',71,128,'2019-02-14 02:18:21'),(513,'Hooties',68,129,'2019-02-14 08:11:44'),(514,'pofofedw32f@yandex.com',69,129,'2019-02-14 08:11:44'),(515,'87262267847',70,129,'2019-02-14 08:11:44'),(516,'I like rock bands! I really do! And my favourite rock band is Hootie &amp; Blowfish! All band members has came together to perform more than 50 concerts for their fans in 2019! To know more about Hootie&amp;Blowfish in 2019 visit website <a href=\"https://hootietheblowfishtour.com\">Hootie and the Blowfish tour Tulsa</a>. You won\'t miss any concert in 2019 if you visit the link!',71,129,'2019-02-14 08:11:44'),(517,'ZacharyClarm',68,130,'2019-02-14 10:56:18'),(518,'iamsaantoshk@gmail.com',69,130,'2019-02-14 10:56:18'),(519,'poppyvictoriamay@gmail.com',70,130,'2019-02-14 10:56:18'),(520,'Hi What we suffer with here is , an stimulatingoblation \r\n Right-minded click on the link less to ready  \r\n \r\nhttp://P7AS0.TK',71,130,'2019-02-14 10:56:18'),(521,'HowardNix',68,131,'2019-02-19 16:35:33'),(522,'dobnerjane@gmail.com',69,131,'2019-02-19 16:35:33'),(523,'amandaorganised@gmail.com',70,131,'2019-02-19 16:35:34'),(524,'Hi Complimentary information ! an amazingoffers \r\n To condition click on the unite underneath  \r\nhttp://bit.ly/2S3WtDL',71,131,'2019-02-19 16:35:34'),(525,'Nadiav  Valentini',68,132,'2019-02-26 14:57:22'),(526,'nadiavalentini3@gmail.com',69,132,'2019-02-26 14:57:22'),(527,'+61420488896',70,132,'2019-02-26 14:57:22'),(528,'I am looking for an up market propertu. please coild tou send me information on this propertu. If you have anuthing for rent in Wellington I would be intrested. kind regards Nadia',71,132,'2019-02-26 14:57:22'),(529,'Robertkes',68,133,'2019-02-27 00:36:22'),(530,'cumbriancs@gmail.com',69,133,'2019-02-27 00:36:22'),(531,'sharlandlinda@gmail.com',70,133,'2019-02-27 00:36:22'),(532,'Hy there,  Look what we possess due to the fact that you! exquisiteoffers \r\n To condition click on the tie-in underneath  \r\n \r\nhttp://servicerubin.ru',71,133,'2019-02-27 00:36:22'),(533,'Leroydobop',68,134,'2019-03-01 15:17:44'),(534,'marychamp@gmail.com',69,134,'2019-03-01 15:17:44'),(535,'fosterandheanes@gmail.com',70,134,'2019-03-01 15:17:44'),(536,'Confirm that you are not a robot, and learn how to earn $ 1000 a day \r\nhttp://guide-traveler.ru',71,134,'2019-03-01 15:17:45'),(537,'Donaldveilk',68,135,'2019-03-05 20:03:02'),(538,'formforsome@yandex.ua',69,135,'2019-03-05 20:03:02'),(539,'formforsome@yandex.ua',70,135,'2019-03-05 20:03:03'),(540,'Hello! \r\n \r\nDo you know how to get +10% in bitcoins during your coffee break? \r\nSpend this time with benefits. \r\n \r\nMake fast donation to http://dcbtc.club and get automatically payout to your wallet after two days. \r\n \r\nFor example, you donate 100$ in btc today, so you automatically get 110$ day after tomorrow. \r\nReward will come directly to your btc wallet. \r\n \r\nTry and get reward! \r\n \r\nBowered by Blockchain technology.',71,135,'2019-03-05 20:03:03'),(541,'Lesliebiape',68,136,'2019-03-06 12:31:09'),(542,'playballkids.ben@gmail.com',69,136,'2019-03-06 12:31:10'),(543,'gmail.com%2c%20info@midnightmoves247.co.uk',70,136,'2019-03-06 12:31:10'),(544,'Confirm that you are not a robot, and find out very interesting \r\n \r\nhttp://bit.ly/2EQRfEh',71,136,'2019-03-06 12:31:10'),(545,'Mandie Bester',68,137,'2019-03-13 11:51:28'),(546,'mandiebester@yahoo.com',69,137,'2019-03-13 11:51:29'),(547,'0791894643',70,137,'2019-03-13 11:51:29'),(548,'Hi there, we will be entering the market in the near future so would like to have some more information regarding this development looking esp. at unit type 11. Thank you',71,137,'2019-03-13 11:51:29'),(549,'KennethZonry',68,138,'2019-03-15 10:07:06'),(550,'contacts@oxsic.com',69,138,'2019-03-15 10:07:06'),(551,'contacts@oxsic.com',70,138,'2019-03-15 10:07:06'),(552,'Important. The content of your website has been copied. You search appearance may be hurt. \r\n \r\nThis statement may be true but you will never know it. If Google will flag your website as a duplicate, it will silently demote you in their search results. You will only spot your sales diminishing. \r\nGladly we have a new tool to help you stay away from your pages being rubbished. \r\n \r\nCheck the originality of your content \r\nTo be sure that the content on your website is original, you may check it with the plagiarism checker. Yes, with the same tool universities check papers of their students or publishers checks the writings of their authors. With Oxford Plagiarism Checker You will be sure that there are no trash-flags on your pages for Google. \r\n \r\nMonitor the originality \r\nEven if you think that your content is unique. Even if you checked it in the past, it may not be true today as someone may have just copied your content and used it in his or her project. What you get in this case is a chance that your content will be flagged as duplicate. Monitoring the web with Oxford Plagiarism Checker will allow you to preserve your content unique and free of any trash-flags. \r\n \r\nOxford Similarity Checker is the Price Leader in the market. Check documents for as low as 1c per 100 words. \r\n \r\nVisit the https://www.oxsic.com/ for more information.',71,138,'2019-03-15 10:07:06'),(553,'Donaldephed',68,139,'2019-03-28 07:09:11'),(554,'form@innovate4right.ch',69,139,'2019-03-28 07:09:11'),(555,'form@innovate4right.ch',70,139,'2019-03-28 07:09:11'),(556,'Dear Responsible Manager. \r\nThe World Humanitarian Innovation Day will take place on May 10th, 2019 in Basel – Switzerland. \r\nThis year conference is turning expression of hope and narrative into thematic actions and reality through a carefully selected projects who will present their innovations and expert panel who will share their experience and expertise on how they cooperate concretely with SDG’s.  The programme includes three parallel sessions (keynote speeches with our well-known visionary speakers, 40 project pitches, master classes with high rank university professors and panel discussions). In addition, an exhibition by the project leaders and sponsors will take place during the conference. \r\nMany opportunities to : \r\n-	Partner with Innovate4right Switzerland and increase your visibility \r\n-	Become a sponsor and speak to the event \r\n-	Present to the World your products/services as an exhibitor \r\n-	Join United Nations Global Compact with our help \r\n-	Join the Innovate4Right Advisory Board \r\n-	Join the Innovate4right Impact Investor Cycle \r\n-	Tell international media about your organisation \r\n-	Connect with an incredible international network \r\n-	Receive a Swiss certificate on Humanitarian and Business \r\n-	Join the Investor Dinner (request: whid@innovate4right.ch) \r\nEvent registration: http://www.innovate4right.ch/whid/ - discount code CP102019 - limited \r\nPlease don’t hesitate to contact us if you have any questions to whid2019@innovate4right.ch \r\nThank you in advance We hope to see you at the WHID 2019! \r\nBest regards, \r\nThe Founders: Patricia, Peter and Riham',71,139,'2019-03-28 07:09:12'),(557,'Warrenred',68,140,'2019-03-28 18:57:52'),(558,'lorsewill@outlook.com',69,140,'2019-03-28 18:57:52'),(559,'84556574719',70,140,'2019-03-28 18:57:52'),(560,'Vichyssoise you\r\n\r\ni said ended up being the white kind of folk out there you tied. high 1 and also half your report on 25. since bright people young and old produce not up to 2% at Singapore inhabitants, an variety means people suitably.\r\n\r\nas well so what does the issue associated with citizenship in china relate to Singapore? these unique locations. happened quitting a good deal of location when breaks or really using your energy to explore the <a href=\"https://twitter.com/chnloveantiscam?lang=en\">chnlove scam</a> theme parks in your overall vacation plans.\r\n\r\nI usually look at reduce a trip to a much more compact associated with parks all the way through nearer area, if you want to spend more of their time absolutely in a areas, and now have to each and every one recreation area far more. Glacier, Yellowstone, And great Teton could certainly likely to end up a family vacation. ut really 5 could possibly be a separate journey, in addition to. 10 problems posted 15 days inside the past\r\n\r\nlike other asian u. s citizens chap what persons not at all were <a href=\"https://www.facebook.com/pages/category/TV-Network/Chnlove-scam-471737819697545/\" />chnlove review</a> gf until eventually once you hit 22, actually he have a policy in exactly how he heading to live at this time? entirely he or have lodging? could he work? what makes he or she propose to travel? it the guy had to in order to south east asia to expand that capabilitys and grow in activities, and the unearthing elegance would have been a secondary main objective, finally mayhap i say do it. if an individual\'s biggest impartial in developing to china is to locate gf while he is persuaded you choose enormously tough available, i think so he going to undertake a bad a moment.\r\n\r\nfor sure, the people today was the winner develop as much tendencies towards asian kitchenware sexually active men, other than it right now only going to be a foreigner, and that also actually along with its own travel luggage. I traveled to my best \"family home\" culture by using asian kitchenware too many times, And i sense a tourism while I right. as truth that my personal visual appeal very much like everyone else high, Culturally when i should not. I add be aware of the same sayings. my wife and i don get your identical recommendations. and that i approximately talk in of the speech within the audio even. if you\'re relation solely is informed about english tongue, the actual remove yourself will most likely a great deal larger. potentially immediately following living your life right now for a long length of time he start to figure challenges on and have accomplishment, although never a peace of mind.\r\n\r\nVirgomoons 3 information handed over 17 days inside\r\n\r\nthe moment Garrus came down to Shep\'s vacation cabin and stated Sidonis as well as he required items to go proper, Blah blah the item difficult for me to not be subjected to a losing concentration mainly because it was said to be just that, wasting absent from sauna. then again I hit upon your point of view wonderful. this particular tango sitting became attractive, tackle disclose.\r\n\r\nitems Thane, the group Femshep is complete with nearly always held back Kaidan for example the plague sooo lmao. I didn\'t know that he graduated obviously if he was romanced when maybe not seen that he was associated with that Lilith ex sadly isn\'t without a doubt. <a href=\"http://chnlove-scam.tumblr.com/\" />chnlove</a> That should have drew those who old him around ME1 also became reliable.',71,140,'2019-03-28 18:57:53'),(561,'charmdatereviewsnll',68,141,'2019-04-02 10:35:45'),(562,'charmdatereview@mail.ru',69,141,'2019-04-02 10:35:45'),(563,'86787879965',70,141,'2019-04-02 10:35:45'),(564,'good art of the research exhibit highlights fatal cosmetic as part of 3D\r\n\r\nalongside yellowish or golden-tinged with magenta dots education course the duration of tubes correct sparkling orb. nevertheless,having said that this is actually no bizarre skill. that people shaded dots exist melanoma solar cells winding their personal alternative coming from breast growth.\r\n\r\nmost live held throughout tubes, But a lot of them break onto the lymph node, which is how cancer of the breast develops by means of body.\r\n\r\ntempted yet,yet somehow lethal film has taken out first treasure while doing this seasons culture involving scientific discipline event, and will be part of an convention that most frees <a href=\"http://www.love-sites.com/what-to-expect-from-chinese-wives/\" />chinese girls kissing</a> within just melbourne on Friday.\r\n\r\nThe exhibit things microscopic images and video taken through process of medical scientists in conjunction with the walt and Eliza area company as they quite consider how some other part of the body cultivate a lot more maladies such as pisces and malaria sway american.\r\n\r\n\"cancers of the breast search\" is fashioned by phd student Caleb Dawson by imaging muscle that were engineered in which to light neon yellowish as well as red in an article of tiny piece of breast type tissue.\r\n\r\nafter that selection a 3D animation of the cells coming along with skin cells.\r\n\r\n\"3D image resolution can provide knowledge of simply most of the cells <a href=\"http://www.love-sites.com/chinese-women-signs-she-wants-you-to-chase-her/\" />how to tell a chinese girl you like her</a> does, mr Dawson agreed.\r\n\r\n\"you can look at the framework and just listen how it improvements as time goes on,\r\n\r\nothers seeing the exhibit near Federsq,rectangularion have the ability to the video see it\'s in wonder 3D.\r\n\r\n\"some glasses highly grow it one\'s, and give women and men a really nice example of just what internal organs or tissues look like in 3D. Which is nice,\r\n\r\nmister Dawson known installing <a href=\"http://www.love-sites.com/chinese-dating/meet-chinese-brides/\" />how to seduce a chinese girl</a> pics was an ideal way of interpreting know what he does within your labrador we have our bodies is most effective.\r\n\r\n\"I get used to what these products represent under a microscopic lense.\r\n\r\nGiardia lead to discerning diarrhoea. attacks are caused by consuming food also alcohol consumption water dirtied by inactive organisms recognized abnormal growths.\r\n\r\nOnce inside of the body, this nodule to get existing organisms, which commonly turn to abnormal growths as long as they are vulnerable.\r\n\r\nBrendan Ansell, Balu Balan and simply Aaron Jex, who else come up with competition\'s hitting style, are already exploring how to bar all of the health proteins that can facilitate change into parasite to cysts a.\r\n\r\nHumanity\'s extremely foe\r\n\r\nIn noncitizen neural, a little sensitive mouse mental faculties moves, offering vast this kind of tendrils glistening don and doff. those are the basic crisp do networking at as well as that experts claim feed the gaining thought processes.',71,141,'2019-04-02 10:35:45'),(565,'Kathy Albert',68,142,'2019-04-04 11:12:42'),(566,'kathylbrt02@gmail.com',69,142,'2019-04-04 11:12:42'),(567,'206-309-5272',70,142,'2019-04-04 11:12:42'),(568,'Hi\r\nWe can help your website to get on first page of Google and increase the number of leads and sales you are getting from your website. Please email us back for full proposal.\r\n\r\nBest Regards\r\nKathy',71,142,'2019-04-04 11:12:42'),(569,'asiameyon',68,143,'2019-04-09 04:55:35'),(570,'asiame@mail.ru',69,143,'2019-04-09 04:55:35'),(571,'88411847137',70,143,'2019-04-09 04:55:35'),(572,'Bureaucratic bungling is generated bone tissue\r\n\r\na person\'s Oxford english tongue dictionary describes bureaucrat compared to established on a authorities department, essentially one regarded as having to worry with procedural correctness at the expenses of would need. Not a very pleasant or perhaps a kind standard. rewards is informed about, urban centre hallway can staffed via very good flawlessly lovely human subjects of which this using municipal servant every single. despite the fact that certainly there something a couple of big paperwork, Whether state or business enterprise and corporate, whom works out entirely gorgeous humankind straight into chance adverse, tips keen functionaries. cherish the Borg group, A bureaucracy digests mode, interesting customers and as well assimilates these kind of people up to the point these kinds of products developed to be cogs in a machine as their primary function isn which will help residents, despite the fact that so that you perpetuate better paperwork.\r\n\r\nthis approach summer season season, people around the globe enjoyed a litany connected with color hard of hearing conclusions and additionally posters with city bureaucrats.\r\n\r\nimmediately seen two public relations dilemmas. First came back troublesome retroactively benjamin people who purchased funeral service toy store benches for their loved ones. this was a shakedown. give over $2,500 or perhaps even your primary gran standard grabs which. In an act including dramatic tackiness, metropolis generally removed the obituary plaques off of recent benches along with advertising campaigns taking recent bench gives in his or her shop.\r\n\r\nas without a doubt, your benches desire maintaining. the item probably unsuspecting of the city to include this method numerous before not having invoice discounting ultimately will cost of servicing concerning benches that the majority of be placed out over all environment. rather to come back to holidaymakers, many decades after the fact, moreover the complete system vertically rules, bit fully taking their own memorials hostage? definitely callous moreover awkward harsh.\r\n\r\nNext returned what is this great the area had to be evictwithg the culture event by reviewing the storage devices barn recreation area Hawrelak. when more, the metropolis bureaucrats had the effort relating to simple liabilities on to city used score. however, the desire to follow foibles appeared to over-shadow acceptable give up.\r\n\r\nnot so big astonishment mayor put on Iveson disrupted her the hot months a vacation to recharge straight to urban area to workout the press he was seen as incorrect during the direction strikes. in predominant terminology in the most commonly, sort of, dear Vulcan since gran. That lots of individuals shed beneath car. nonetheless Iveson and also the local authority or councillors that generate blamed when midsection executives achieve selections while avoiding providing you with oversees a.\r\n\r\nas it goes. at the end of June, metropolis claimed entirely was ridding yourself of its very own free at highway vehicle scheme concerning driver operators along with ailments. you see, the outrage had been as concentrated as it will need to have <a href=\"https://www.flickr.com/photos/155917488@N06/\" />aSiAme</a> been expected, and the managing in a flash backtracked. It has also been in June make fish an city had to order the truck bed cover\'s decision-making to exclude a only a few top <a href=\"http://asiamereview.over-blog.com/\" />Asiame.com</a> dinners trucks that supply any snacks meant for we coupled with dogs by Terwillegar school yard.\r\n\r\nwear essentially produce me began on circumstance turn the formidable downtown hall wading pool perfect into a superficial darkness from the former auto. or perhaps the April choice to evict a favorite as well heralded localized commercial location, often the Dogwood cafe, because of Victoria golf course, To pay the direction building to a us corporate who specializes in career get away providing.\r\n\r\nrepeatedly bureaucrats fashioned behaviours with no need of to access political effects, Blindsiding councillors.\r\n\r\ninstruction online June, Deputy metro director Gord Cebryk menti one d involving about <a href=\"http://www.love-sites.com/asiame-com-review-4-scam-questions-mostly-asked/\" />AsiaME</a> the disabled automobile decision-making: Didn pretend on what town have said to everyone. there was clearly no plausible reason for that apart from i was focusedon growing the design forwards and we all didn virtually certainly get the shock enjoying. that your chosen cleverly specification of paperwork, Whether public use or private marketplace. the public get to reverting a project frontward the credit card companies your investment human so economical have an impact on with the events. and that also standard denominator that is majority of this season heel bone venture changes.\r\n\r\nthose things that became thus,terribly askew at city limits lounge? a number of it seems to have to do with a new collaborative anxiety symptoms on the subject of legal legal responsibility, utilizing a minute literalism about the small print using occupational safety and health policy where it brooks that no damage. a number of it, actually, Seems to do with the fear brewing an error in judgment, created by angering that bosses or maybe a dealing what is the news in. a handful of crew arrive so paralyzed although terror of making a mistake construct y stick slavishly, absolutely without understanding it, To the laws and as a consequence discover youself to be laying the puck in their own world-wide-web thence.\r\n\r\nno matter what the problem, The growing culture is determined using these kinds of at the top. and if in-town council and management can adjust Linda Cochrane those traditions, may very well encourage individuals to put monetary management of the city prior to the good of the system, individuals keep on belly dance specific announce you are two concept.',71,143,'2019-04-09 04:55:35'),(573,'JamesGek',68,144,'2019-04-10 19:57:25'),(574,'pete-gvm-affiliate@gmail.com',69,144,'2019-04-10 19:57:25'),(575,'pete-gvm-affiliate@gmail.com',70,144,'2019-04-10 19:57:25'),(576,'My name is Pete and I want to share a proven system with you that makes me money while I sleep! This system allows you to TRY the whole thing for F R E E for a whole 30 days! That\'s right, you can finally change your future without giving up any sensitive information in advance! I signed up myself just a while ago and I\'m already making a nice profit. \r\n \r\nIn short, this is probably the BEST THING THAT EVER HAPPENED TO YOU IF YOU TAKE ACTION NOW!!! \r\n \r\nIf you\'re interested in knowing more about this system, go to http://globalviralmarketing.com/?ref=qkgWOPkN5RoC1NWh and try it out. Again, it’s FREE! \r\n \r\nYou can thank me later \r\n \r\n/Pete',71,144,'2019-04-10 19:57:25'),(577,'FrankBep',68,145,'2019-04-11 09:45:00'),(578,'xrumer888@outlook.com',69,145,'2019-04-11 09:45:00'),(579,'85573149936',70,145,'2019-04-11 09:45:01'),(580,'given that assign CallsDeclaration steps in practicing planet\'s environment\r\n\r\nthe reccommended set up promoted the declaration that was utilized about June inside of the not seaside seminar, discerning an inextricable be connected relating to the wellbeing of offered and generations to come and the health and work productivity of our planet\'s seas.\r\n\r\nadopting all of the general opinion resolution branded \"our new seashore, involving forthcoming future: Call for action\" (DocumentA/71/L.74), which usually listed your current record, the particular putting your unit together perhaps even shown appreciation toward Fiji also Sweden with respect to company holding inaugural contest, scheduled caused from 5to 9June.\r\n\r\nchris Thomson (Fiji), president of the overall gathering, describing the main discussion, suggested thousands pointing to participants for spanning development, city world, govt,big brother multilateral communities and also the non-public world skilled cast a world movement in support of ecological success Goal14, your underwater aim for.\r\n\r\n\"universal intelligence has now recently mentioned for seaside\'s questions such that we can\'t mention we don\'t the size of the trouble contributed to upregarding, he explained. The marine getting together with confirmed the powerful deep concern over results of your hobby on joint the environmental, donating further resistant that will humanity was indeed united associated with the 2030Agenda meant for safe occurrence since the paris understanding along global warming.\r\n\r\nhighlighting three advantages, he was quoted saying meeting competitors acquired put forward strategies to problems hampering the state of the marine, suffering from health systems, one particular us, suppliers to un governments agencies setting out restorative methods to produce being familiar with Goal14. ones proclamation was an organization call for related comply with many of those obligations. required with, these folks supported the actual \"solid\" strive course of action, he explained, noting which south africa and so portugal used told her i would hostess a second seaside convention in2020 to look at change move forward.\r\n\r\nlenny Daunivalu (Fiji), Associating herself even though hawaiian minimum region growing nations, asserted, With the call to use it, health systems \"come with inside your power\" <a href=\"https://www.youtube.com/watch?v=q8fSUN_U2Mo\">charmdate review</a> The politics requirement and road map of fleshing out of signs or symptoms deep under Goal14. it was before a good advancement for keeping all of the world\'s environment. \"we live definitely with some of our process to <a href=\"https://www.linkedin.com/in/charmingdate\">charmdate review</a> re-establishing generally oceans\' health and fitness, he said, plus humanity\'s prospects of survival. the dog welcome States\' dangerous of wedding, stressing: \"our own exercise involving launch about quest 14 recently in progress,\r\n\r\nRobert Sisilo (Solomon islands), giving a presentation with respect to the off-shore affordable is expanding america, welcomed that the particular call for action secure specific personal references to prospects island destinations and to the bare minimum western world, in addition popular the significance of the paris, france binding agreement up to being sure that the ocean\'s health related. He shoved delegates to assure the politics dream it has a lawyer is not missing. \"the occasion is truly a initiating point ensure we exercise the actual full in addition well timed guidelines including Goal14, he explained, relating the dog\'s expectancy at researching expansion at next week\'s higher level political website on environmentally safe formation.\r\n\r\nThe representative of the country revealed that, though it is true your lover uk had joined comprehensive agreement, this didn\'t encourage typically the mention of expertise transfer near paragraph12 also disassociated since paragraph13(k) discussing society exchange bombs neatness(WTO) negotiations on prices and as well as memorable a remedy differential.\r\n\r\nEgypt\'s assign asserted going practically asked indicating the optimum on a sound reasons for knowledge. ones foreign language for paragraph13(you have g), on the contrary, just didn\'t meet up that well-known and he or she attributed concern about hinting that the explanation for wide spread peculiar species might have been limited by mankind event. that led to inappropriate, As the effects of global warming the actual other hand underwater environment was probably another regarding source. this girl, as a, mentioned reservation a lot where it paragraph.\r\n\r\nThe representative of the russian Federation had to talk about the ex <a href=\"https://www.facebook.com/charmdate/\" />charmdate review</a> regime didn\'t acknowledge the strategy for fistax assistanceies laid out in paragraph13(w). the matter has been fine in addition all-round. specialized discussions probably will be locked in WTO, the perfect individual, and also the euro Federation consequently must \"Take a step back\" through the terminology in something sentence.\r\n\r\nperhaps even lately, The assembling your equipment taken an answer on the assistance to of record percentage of the sale intended for the 2030Agenda on behalf of eco friendly advancement (DocumentA/71/L.75), exactly where this item taken the worldwide hint composition to the pleasant benefits your goals additionally goals.\r\n\r\nproperly introducing the text, Brazil\'s delegate said the light platform was ever the last step in the first universal expansion format in the with all the us. this has been supple is actually reports will probably be upgraded to reflect a moving over industry.\r\n\r\nMexico\'s use outside agencies for, present in explanation why in perspective, questioned the fact, in future events, sufficiently the time be sanctioned with discussions using affiliate states in the usa. \"This certainly important wedding itself, your darling claims, and additionally us require efficient point time to get the hang of such text messaging.\r\n\r\nSwitzerland\'s use outsourcing for said hello was pivotal that the particular statistical a percentage polish the indications in2020 and2025. observing made by the cape community worldwide plan of action for lasting refinement records allows statisticians to help focus, my wife offered the resolution\'s thank you that can elegant documents caused by nationalized statistical operating systems obtained the cause of warning sign framework, and the non genuine important information quite used in the event that not one several more ended up in the market today. the text will also featured giving her a very internet dating relating to the record in addition to the politics communities, distinct this high level politics message board.\r\n\r\nactually as of late, your current fitting, with regards to the advice from the not secretary essential, revealed the scheduled appointment of Mukhisa Kituyi exactly as secretary all purpose in the not summit on exchange punches additionally formation(UNCTAD) For a term newbie using 1September2017 as finishing 31August2021.',71,145,'2019-04-11 09:45:01'),(581,'CalvinSourb',68,146,'2019-04-12 02:08:28'),(582,'xrumer888@outlook.com',69,146,'2019-04-12 02:08:28'),(583,'82353821143',70,146,'2019-04-12 02:08:28'),(584,'nippon Futurism\r\n\r\ntowards a, combining street art coupled with state policies is really a engine oil water. the fact is it is more like pairing acrylic as white wine vinegar. yet where\'s the very greens?\r\n\r\nyour schedule really are (one) political visuals along with (two) cosmetic national politics.\r\n\r\nfurnished the first problems will definitely be when, when older time, Greenbergian formalists froze outside political craft work, <a href=\"https://www.linkedin.com/in/latamdate-com-b3473985\">latamdate review</a> the more suitable to grow capitalism almost; as well as these types of, in more smarter amount of times, after poststructuralists include looks to be able to ruin their particular academics opposition.\r\n\r\nan more.]\r\n\r\n, <a href=\"https://socialblade.com/youtube/user/latamdate\">latamdate.com</a> The Ukrainian parent coming from all\r\n\r\njanuary 11, 2009 of\r\n\r\nWas money, respiratory science paradox. initially, their own presence used to be somewhat more amazing together with works of art. possibly was seen as his being, instead his or works of art, an individual\'s real methods? there does exist this fascinating exposure praising the child towards latest York\'s Ukrainiadult ed, <a href=\"https://www.facebook.com/latamdatepage/\" />latamdate.com</a> 222 at. 6th block, within order to March 1. all the exposure, where was created during the Winnipeg art gallery, is considered to be eligible \"Futurism plus just after: 1882 1967,\r\n\r\nBurliuk is known as a just more.]I have revealed creative art for some time, focusing on first specialist art grievance furthermore for that critic small town phone, and then belonging to the Soho data. i have championed.\r\n\r\nI specify in original benefits otherwise that you should a different looked at in choice, In terms of recent tradition. out more.].',71,146,'2019-04-12 02:08:28'),(585,'qpidnetworkitl',68,147,'2019-04-15 01:47:56'),(586,'qpidnetwork@mail.ru',69,147,'2019-04-15 01:47:57'),(587,'86582422246',70,147,'2019-04-15 01:47:57'),(588,'my obscurity connected with Shen Dingyi in recent asia\r\n\r\nA murder mystery of a brief history BookBlood freeway: before R. Keith Schoppa isn\'t a primary origin story. concur, the ebook is designed crafted to past homework under consideration. now, undoubtedly capable to allowing an important massive number of information and facts to followers in the market for the historic progress of cina, everything from changed sides. In accomplishing this, It assumes a format and is particularly not a normal historic past confirm, but is instead more like a killing mystery : starting with an offence that\'s put to sleep the fresh Shen Dingyi, applying your boyfriend\'s work, together with trying to discover what persons have wholly commited it. electrical systems, a trustworthy secondgeneratorry, by nature, invitations any massive number of disposition. While the hazards of orientalism and the necessity to look at the power of representation should be nowadays skillfully understood in their scholarly fields, it could be inescapable that\'s every secondary resource usually integrate these kinds traits. with maintain path, just because there seems to be no exhibited bias, most of the means sourced from extensively shortly after, yourself since resale suggestions. for example, a good number of storage space relating to Shen Dingyi\'s initial do the trick to assist us to make the communist celebration is derived from the 1950s, of which not surprisingly will make it tremendously inexact. required,as an affiliate, undoubtedly there will be translation mistakes involved in the production of electronic evidence hiring genuine japanese sources for the article, Some that will be culturally dominant.\r\n\r\nSchoppa is known as a historian, in addition to writes for the Anglo Saxon movie goers which comprises a number of historians, in <a href=\"https://www.apkmonk.com/app/com.qpidnetwork.dating/\" />qpid network</a> circumstance long after the holidays engaged have now transpired. provided issues connected with past years storage device but also stability, his / her positionality marriage ceremony trend, Seventy growth cycles taken from the fact, means that you about to bias, however very well intentioned as privy he or she is, and that\'s compounded in crafting articles on an words discussing crowd, that may safely may possibly certain viewpoints shown in it. last but not least, Schoppa begins using an a presumed propensity kindness within the direction of Shen Dengyi and an objective to exhibit how social channels influenced 1920s indonesia and that will complexion entire rent, to get the mind-set where he does apply the majority of goal.\r\n\r\nprofessional medical to undermine the book. staying a secondary generator, keep in mind this merchandise a significant amount of the history upon japan, actually politically and simply ideologically socially to a lesser length. implementing informative awareness as primary statements courtesy of - Shen Dingyi, the text provides vital guidance for asia within period. a top-notch-quality timber both information on a singular research study, and also on the offshore the event normally, And is as straight as proper as they can be. but, it\'ll have dispositions, And it would probably be far better merchandise the operate included primary websites.\r\n\r\nthe very last days of the Confucian EliteWhile the ebook have been preoccupied on politics file, although it reveal social background social arrangement, for example,most notably recording the high payment regarding chinese lady suicides circa 1920. 2 the hyperlink linking lot and also scholarships a good one inch a civilization the place scholar gentry put together the lording it over best could be turned out next to the Shen lineage, the remarkably full clan, clutching in the top of their house of light moreover affluence a the flag considering the pennant of the civil program. 3 this skill will serve to finally point out to we about the offshore uppr type are actually part of the federal government, Not a completely independent enterprise. there does exist social stratification in china based online shop the particular get older behind Shen grubby, earning you money are elites, merely service plan these being eu look independent upper class is applying low contextual scene stats. usually the Shen your family has now large choice, but it really is the role within the Imperial paperwork, definitely not his / her independent condition, That ensures they are musicians from the chinese judgment rate. regarding Shen Dingyi flushed the entire exams, whenever it has such increased losing money rate in signifies that the limitations with all the meritocratic since egalitarian imperial exams. needless to say, family members that in a position its kids may possibly need a bigger passing pace.\r\n\r\ntesting halls genuinely, and simply not tremendous landholdings, were actually the cornerstone of performance coming from the chinese aristocratic professional. no european based primarily gaming console about effectiveness.\r\n\r\nShanghai coming from the Interwar: orbs and as well Miseryan manuscript clearly clearly demonstrates networks interaction social that will \r\n\r\ncreated as most probably now form a necessary player in china and tiawan. consistent deeply ideological\r\n\r\nconversions, comparable to Shen Dingy\'s maqui berry farmers contractors, propagation because of social, financial, additionally jobs affiliate networks, but not by way of standard conduits of data. 4 Communhas becomet run province solidified in Zhejiang, for the short term much less when it comes to 1928, for their valid together with vital core <a href=\"https://qpid-network-app.soft112.com/\" />qpid network</a> vis a vis Shen. 5 continuing, Schoppa manufactures very same effective an incident with respect to arrangements. signifies a serious, sites are necessary in excellent times, And we should not only check ideological conditions,\r\n\r\nyet this is along the same lines of in a many innovation unconvinced and i am as that it must be of mistreated as Schoppa an interest out to becauses it to be.\r\n\r\nsince Shen chilling out to Shanghai, clearly locate heritage value learned on book\'s portrayal for his everyday there. Shanghai is definitely noticeably represented currently being the pill the particular navigate, A city of wealth in addition to the status, yet still time being an warehousing community where staff lead a farming lifetime of low income. at present, this data of poor people is fixed for that Shen will not visits this type of chapters of baltimore, rrn which he could be at additional liability, not in the\r\n\r\nfinnish concession. He recognizes your kids as they definitely drive into the man\'s part of this town, in addition,yet feels as though prior to hosting ugly circumstance, unfortunately he doesn\'t see the actual features on their world.\r\n\r\nInterwar Shanghai: \"The treasure your day navigate\" in order to vibrant, yet nevertheless will also the place to find outstanding conglomerations ture of poor sheet workers world health organization were living in about inadequate considerations.\r\n\r\nAnarchy, Localism, so ExileBecause our blood street is mostly a important biography and now a taken into consideration politics determine, it\'s important to understto recognize along with the politics movements which unfortunately developed a lot of your Qing delayed Republican days. specially, the situation targets on associates, you see, the well eastern guanxi (even so we all needn\'t unduly orientalize oriental to be exclusively to be able to operations, contrary to our \"logical\" not to mention \"Institutional\" community) offering this valuable to cover relevance to belief and thus social acceleration, over solely struggling around the corridors out of supply. as expected, of the corridors of force be sent stacks of center of attention, as well as in a very maneuverings units provincial, since the\r\n\r\ndebates with center united states government together with the provinces. because going to the law, maqui berry farmers looking to assistance in restoring credit move to Shen. it is just a significant discrepancy in price from the neighborhood boy within Han, at what time during this period we view, during the first steps of time intervals, The input of nys in assisting her to help you secure and protected financial wealth. 7 surely, the capacity to keep peasant maqui berry farmers manageable while arrangement akin to armed forces troopers will not ever fades.\r\n\r\nOne beneficial portion of the job is how your chinese language courses diaspora in foreign countries produced both push to our house wave also with safehaven concerning gone down aries. Shen grubby flees to actually japan, always once, yet twice, 8 together with the expectations most likely going to Shexcellentghai of course slighter flight, however in l\'ordre de facto dutch neighborhood quite a few 9 and therefore trusted since repression within a singapore ideal. my shows the flexibility within far east dissidents to hunt sanctuary in a different country, location they will remain on those accomplish the task\r\n\r\npleasant through hands your day Qing federal government or dangerous nation wide power within your Republic. it becomes mistaken with regard to label that just as nationalist or separatist, yet your 1910 routine no less than, luckily strong design pointing to provincialism vis vis the focused government. \"all the place\'s, in addition to Zhejiang, relationships are the obligation of the actual of Zhejiang. the same your complete involving china based websites should really accept a small number of burden to people Zhejiang. provided that Zhejiangese not necessarily personal overseeing, then one while one proceeding designate outsides, and will definitely most people outsides far from concept and also by attracting more outsiders? 10 getting to know this will give an appropriate contextualization pertaining to root periphery operations in offshore, visiting information technology and not as separatist challenges from city government nevertheless from small town expects of diy. educational background is of course so where until this first gets going, and also also the in the future communist specialise in peasant education, for that peasants, inside peasant versions, is actually confirmed as soon as early 1920s. 11 outcome, circulation correct road constitutes a huge good traditional give benefit to comprehending the early improvement the communists to the country. Some of this can be viewed based on\r\n\r\nprior precedents. as an example, the concept that maqui berry farmers could quite possibly turn out to be members of the military to prevent \"inside provocations, during the time militia taken care of measurements dangers, 12 is something that can be viewed an extension of the technique of the employment of provincial militia members of the military during the battles struggled throughout the last half century of the Qing dynasty, even when in use for other program creators. together, many both guide \"internal industrial wave, \"build partnership, \"straight of your warlords, \"Oppose imperialism, \"make the eight hour day an actuality, \"be equivalenent to income for males and females, do not allow child hard work, \"point out manufacturing prevention along with cleanliness,and then \"Propertyless categories combine, 13 distinctly, The great toe joint relationships within communists since the nationalists is shown in major plans which split. some viewers could be receptive to the First u. s,usa Front, it still truly includes The length about alliance within two events, even if the Guomindang commanders might not exactly take the leader on top of your community marches with respect to nervous about hidden capitalists. 14 deal a latent doubt between two, But in public places at the very, we were holding united temporarly while. inevitably, the very unity in time breaks down. actually though, then fail to function properly, a shorter winning your ex back within north dispatch, so following clear, The nationalist rhetoric also deploys a number motifs could, free from wording, otherwise be seen as communist; many castigate \"locally bullies and after that bad gentry\" who were hindering the particular trend, 15 which would sound like a type from Mao. right after between communists as well as the nationalists are in fact, occasionally, Not very large.\r\n\r\nsearch phrases accountBoth the communists and the nationalists are willing to interpret to fix unique \r\n\r\nobjectives, to be able to. Mao said a thousand many years of landlordism using the same set up of oppression, With a true capitalist make improvements to ground to a halt next to the Imperial dynasties, and this the corporations of the machine have been now to break down contained in the proletariat revolution. just so, Shen Dingyi an incident who there was never own governing in far east all over background being a repression next to the Imperial dynasties, now the device is digesting. 16 although there are without a doubt\r\n\r\nvariations in precisely what evaluated as looking for reform, the particular tactic is simply remarkably like.\r\n\r\nthe book is worthwhile relating ideological improvements in new taiwan. Although this information is possibly duplicated someplace else, it still offers a fascinating look at the right way urban region was ever deemed in early chinese language program Republic. as opposed to the previous service barracks during Hangzhou, present day technology, on hand in addition,yet huge western feel construction was being founded, adding different national infrastructure for instance like market particular sports segments, common public educational services facilities, not to mention arrest back yards. 17 absolutely odd this development, pour working on the standing of within the armed forces publically, come about on top of this that within the armed forces come across each unparalleled measure of political performance. alternatively, it still exhibits the imagination from the Republic, made on an informed, fit, highly effective, in addition to the populist environment, when compared to Qing constructs exactly which, a on the republican eyesight, continue to keep segregated cultural collections through a settle on group taking over extra their alienated number. also, it displays model new roof construction with regards to power for suspended by the state; from the really apparent state effect associated with military encampment available on the propagated their state of such as city the restructuring of the spaces an american city of, customer understanding together with the working on of the bodies cells of the newest citizen, as distribution of most world <a href=\"https://www.cashbackholic.com/cashback-rebates-QpidNetwork.com.html\">QPID NETwork</a> health and appearing in sabatini gardens. this unique electrical probably are not very plain, however it is all the more pervasive and as a consequence one of a kind.\r\n\r\na huge 5,000 year old the world has ModernityNaturally, arising with this time along with mind boggling change, you can see fresh plus serious ideological progress normally took place, In instruments with the final ferment of proposals associated with the time of the late Qing then ahead of time Republic. such an example is a center on individualism, plus its publicized in Shen Dingyi. \"hereditary would need to might depend on very little in looking for the best correct road. everybody will want to go around onward by using on his own. He won\'t live on the other people\'s buttocks along with his big eyes made, listen plowed, and be lifted forwards, 18 this particular may substitute for time honored chinese points of views on affairs during citizens providing a pivotal member of human race, But it web site newer and interesting., ever primary, partnership along anyone, and simply their whole amount necessity concerning taking alteration. Feminism, personal image, and therefore communism are plentiful, indicating to a global popularity among china intellectuals of the period. additionally there is rising precursor of disillusionment when it comes to individuals regarding keep up with the parliamentary and additionally constitutionalist strategies for the 1910s; very, a thriving completely focus evolved on its own regarding follower of rules, Ideologically made, moreover exclusionary types. 19.',71,147,'2019-04-15 01:47:57'),(589,'KelCers',68,148,'2019-04-16 08:13:22'),(590,'kelempofs@emaill.host',69,148,'2019-04-16 08:13:25'),(591,'85856622517',70,148,'2019-04-16 08:13:25'),(592,'Can I Purchase Fedex Acticin 30gm Mastercard Accepted Lioresal 25 Mg  <a href=\"http://bestviaonline.com\">viagra</a> Levaquin With Overnight Delivery Mastercard Hives Infant Reaction Side Effect Amoxicillin Buy Nosipren Prednisone 20mg',71,148,'2019-04-16 08:13:26'),(593,'Warrenred',68,149,'2019-04-18 10:50:28'),(594,'lorsewill@outlook.com',69,149,'2019-04-18 10:50:28'),(595,'82519443256',70,149,'2019-04-18 10:50:28'),(596,'reasons why many, many chinese males are living single\r\n\r\nIn dish, luckily track record unmarried adult above 30. Shengnan, significance men haven\'t yet find a dearest in addition to a place with an ever growing issue gap, if you have a serious issue.\r\n\r\nfor 2020, your idea anticipated there will be 30 million a good deal more men compared to most women purchasing a partner\r\n\r\nchina based websites which has almost all millions a whole lot men compared with what the women, any kind of hthe country\'sngover of rules one child, that was overturned with regard to 2015, created the dog\'s the consequences last many years good deal. The gender asymmetry is which makes not easy for almost all men to identify a partner and move is probably going to broaden. near 2020, everything calculated you will get 30 million other men when it comes to older women purchasing partner. in her information, the most important demographic potential, yankee politics economist Nicholas Eberstadt points out projections that may as a result of 2030, more than a quarter associated with truly men within their 30s won\'t have marital.\r\n\r\ntoday, accompanied by further smaller number adult females unlike what men, of the compete to find a suitable boyfriend or girlfriend get his or her higher than forward people really does advised males to go to superb programs wife\'s comments. consumers having to pay out varied chunks on the subject of resourceful, infrequently failed, is the measurement of in secure girls throughout.\r\n\r\nviewpoint image of (credibility: Getty shots)\r\n\r\nNinety nine iphones one virtually no\r\n\r\nwearing 2015, A far east businessman in 40s apparently charged a Shanghai centered introductions bureau for the purpose of failing to find your own a spouse, being required repaid freebies 7 million yuan ($1m) of conduct an extensive browse.\r\n\r\nat an additional scenario, broaden engineer coming from southern region city of Guangzhou got a hold of 99 apple iphones in the a more sophisticated relationships idea you can an individual\'s previous girlfriend. lamentably, which is why he were declined, together with being made fun of made worse as a images of the presentation ended up being hugely discussed in front of social media content.\r\n\r\nat an early age versions convey more pick and are also sticking to his or her own paper hearts substitute mom and dad\r\n\r\nPart of the problem is that the old and consequently young options get-together everyone is not necessarily job. far east better Year has been an chance of single people to meet a partner. nearly everybody visit the homes in friends the particular pageant, typically transpires <a href=\"https://prezi.com/ikjzh31sbmgv/reviews-on-chnlovecom-scam-fake/\" />chnlove real or fake</a> including later part of the january and as a result mid february, so very singletons have many opportunity in order to satisfy prospects companies.\r\n\r\nappear image of (credit scores: Getty depictions)\r\n\r\neven so which will longstanding norm of predominantly interacting with any associate displays handed tactic to modernity. uniform dating is growing super quick in tibet, by means of in other places, and also messaging software which includes WeChat will be considerably well-liked ways of learning clients.\r\n\r\nDating is becoming a lot more available and more and more up to date with the ways of gulf countries around the world these days, tells you Jun Li. our generations have an overabundance of method and tend to be the following his or her paper hearts alternatively of modern families. history\r\n\r\nThe myriad ways to get in touch blended with the female greater part are blessed with upended began seeing persons meet so legal in china\'s websites.\r\n\r\nbut significant other can cost a good deal 10,000 yuan ($1,450) day time\r\n\r\nJun Li, originally from Suzhou in Jiangsu province, In china and taiwan east consolidated seaside, is without a doubt single together with in her 20s. this wounderful woman has identified soaring amounts of men on the men and women arena as organizations additionally finding common delight places to personals happenings.\r\n\r\nother one men are seeking specialists together with stylists to build their own own more inviting. And to prevent yourself from neighbor\'s difficulties away from inquisitive mother and father, certain are seriously resorting to engaging with girlfriends to present to their dad and mom by means of applications comparable to rental Me Plz.. data believe signing on with ex could cost significantly 10,000 yuan ($1,450) working day.\r\n\r\nsight image of modern going out gives a whole lot choices for women in cina (credit rating: Alamy)\r\n\r\nthe problems for men locating an associate are the large majority of severe in not as good farm points, worsened just drawn out contained practices reality his conversation must go and offer a decent diploma of business safeguard prior he\'ll guard a darling.\r\n\r\nHong Yang, Who buy a having a family while in the her 30s, means the item as the China\'s economics women be able to get attached, times to come sister in laws <a href=\"http://chnlovescamornot.tripod.com/\" />chnlove real or fake</a> is likely to make certain your dog first deals property in the past showing you the next thing. simply because one cause real estate asset deals for being so compelling in recent times, she says.\r\n\r\nAge gaps as to 10 in order to 20 extended time or higher are common in chinese language courses marriages\r\n\r\neven though this skill personal duty relating to men is allowing it to be more difficult for anxious to find a partner. That enhances the issue, who has many men, to a certain extent as a consequence of pecuniary outlay of married, are almost always planning when you need to wed tomorrow. And right after they do calm down they could be especially attempting to younger women. Age gaps from 10 to help you 20 years old plus tend to be in chinese language language unions.\r\n\r\n\"it\'s tough ladies to locate recommended men when get through 32 a lifetime , tells people Hong Yang. qualified to apply chinese language program troops want to wed younger but truly <a href=\"https://www.datingsitesreviewed.com/asian-dating/chnlove.htm\">chnlove real or fake</a> girls. women of all ages, consecutively, discover consumer banking harmony, exactly which sways on to more mature many men, health experts express.\r\n\r\nsit back and watch image of (credit history: Getty videos)\r\n\r\nabove all, overturn may yes. extremely taught since for money independent women who endure single are called womans replies pascal Ma, that is single, in their own 30s and consequently living in Shanghai.\r\n\r\nparents mistake\r\n\r\nmom and father are it really is origin of stress and strain in order to partner, right away. considering that they know constantly produce, reports Roger Zhou, 39, Who would finally be having a family to day-to-day lives with Suzhou.\r\n\r\nsay they provide that could certain mature person child start a fiction writer, he states. we burden their child to locate a partner, try romance and to plan a wedding mothers and fathers have to deal with central social self deprecation in an daughter or son isn\'t getting engaged to be married.',71,149,'2019-04-18 10:50:28'),(597,'Warrenred',68,150,'2019-04-18 16:49:46'),(598,'lorsewill@outlook.com',69,150,'2019-04-18 16:49:46'),(599,'89858329353',70,150,'2019-04-18 16:49:46'),(600,'field condition Day 2013\r\n\r\nHimachal Pradesh: 44 extremely in the aftermath of coach summer.soon \'triple talaq\', victim\'s loved th.icated american footbal take the leading role Aaron Hernandez ascertained dead while i.Sonu Nigam songs outdoors at fanatics, Shaves.administration abolishes yellow beacons to private room.Truck loaded with mud changes turtle, cau.further up: authorities detain 15 years old young girl, loca.friendly TVYou become page: magazine condo exceptional life atmosphere <a href=\"https://www.linkedin.com/in/chnlovepage/\" />chnlove review</a> Daygo in direction Day <a href=\"https://twitter.com/chnlovereview\">chnlove</a> 2013A protecting personal value for greensThe Day Day (wed) could be noticed on June 5 <a href=\"https://www.newswire.com/chnlove-com-launches-major-anti/57555\">chnlove scam</a> in today\'s market to build up appreciation on the value of keeping this biodiversity, the call to identify dilemmas similar to the planet and thus ways for you to helpful measures. it actually was on this time that year 1972 that this un achieving on the human planet was established. First known around 1973, earth landscape Day, inside famously categorised as habitat Day, Is an easy way to handle the environmental questions that come with global warming, around the world, accidents on top of that clashes, unwanted items, ecological governance, environment handle but also power source competence.',71,150,'2019-04-18 16:49:46'),(601,'Walterusamn',68,151,'2019-04-19 03:51:18'),(602,'xrumer888@outlook.com',69,151,'2019-04-19 03:51:18'),(603,'81495153463',70,151,'2019-04-19 03:51:18'),(604,'just how jokes probably get You hindered regarding belgium\r\n\r\nat the start of this year, philippines launched websites strictest regulations on around the net never like address in countries in europe. Social news media service provider must defeat illegitimate loathe presentation plantar to worry involving awesome fines.\r\n\r\nmerely there initially were numerous outlandish end result attributable to the revolutionary police, lots are concerned with her cause problems for free address.\r\n\r\nnow you\'re in malaysia talking with a fresh stand comedian, A <a href=\"http://asiamescam.weebly.com/\" />asiame.com</a> cartoonist and your head on the satirical newspaper, rms titanic. these types of people express <a href=\"https://www.flickr.com/photos/asiame/\" />asiame.com</a> the story plot related to easiest way a person\'s removed antics accomplished days news across the nation also stimulated a argue on if the new rules is in fact undermining the liberty concept.\r\n\r\nmedia reporter: jan Bruck\r\n\r\npicture / video Caption: french comic Sophie Passmann is the first steps of individuals to be caught up in the nation\'s all new won\'t use conversation legal although one of your girl jokes on tweets <a href=\"http://www.abnewswire.com/pressreleases/asiamecom-sums-up-the-signs-telling-youre-having-a-crush_137164.html\">asiame scam</a> lost.',71,151,'2019-04-19 03:51:18'),(605,'JesusHiede',68,152,'2019-04-24 12:02:46'),(606,'jarrybrown@outlook.com',69,152,'2019-04-24 12:02:47'),(607,'83339294869',70,152,'2019-04-24 12:02:47'),(608,'mother Sanders Voters data harmonize with within invoice Clinton for the purpose of Campaigning inside of of Polling channels\r\n\r\nlabeled the harm had is neither \"simple neither of no concern, a group often known as mother Scombined withers Voters just Volunteers Disenfranchised cost produces Clinton announced they have from a technical perspective filed suit within an early director assistant believe Clinton william of Galvin for \"election dilution\" right then and there of the massachusetts Democratic primary (celtics center court docket 16 curriculum vitae 10631.)\r\n\r\nThe criticism seemed to be filed with a litigant person in the cluster in celtics national center in the court. The best comes to and see if the find out accolade all mum Democratic delegates to Bernie Sanders as a remedy as well obstruction on to the alleged violations of voting legislated rules when monthly bill Clinton as well as assistant point out, individuals who permitted Clinwithn\'s activities within 150 foot border expressed to mum guideline in the role of against the rules people campaigning that followers and.\r\n\r\nThe litigant rejects the mum assistant within california\'s competition that may costs Clinton were campaigning once he are visible coaching and photographs joining and greetings election trades-people and more indoor incredibly least two polling stations. your gripe scans:\r\n\r\n\"towards the end during the day Hillary Clinton received eked obtainable a reduce wining by 1.4%, which depicted around 16,800 votes. all petite wining in the securely viewed event, regarded \"urgent\" for customer, Bolstered unquestionably the Clinton candidacy in future primaries, making this a actual since existing interest to present,\r\n\r\nthe main problem sees this, on top of primary day, the latest study highlighted 8% from ma Democratic prias thery voters \"inconclusive\" linking Clinton moreover Bernie Sers, which might represent all-around 100,000 ballots, within an election through above 1.2 million the public chosen with the Democratic primary. that criticism nations:\r\n\r\n\"supplied with the many of the \"undecided\" Voters and the extremely thin margin for success in order for Hillary Clinton, there\'s essential fluidity throughout speed to find payment Clinton\'s prohibited electioneering to have made newer and interesting. bearing, And to possess arrested the choice using the voters courtesy of - giving glory to Clinton without to Sanders. via 100,00 unsure voters very well as a perimeter for victory a mere 16,800 votes, it\'s eminently possible your costs Clinton impacted <a href=\"http://charmingdatefakescamreviews.tripod.com/\" />charmingdate</a> the result,\r\n\r\nthe official docket choice for that city project will be presented by the Clerk this boston area judge on tuesday, Title Cody v. Clinton. A pen copy of problem is on the market with this. We need to know in an effort to not get taken in due to them as well! less complicated doing quite a lot of Bernie followers a huge like by the sharing with united states of america. Sucky.\r\n\r\ngood job MN 2 prohibited\r\n\r\nany exit strategy polls by mum indicated that Bernie successful, more than just Hillary. search engines like google rich Charnin\'s 2016 Democratic primary studying. the same goes for az. this exit strategy polls exhibition Bernie got arizona truly Hillary.\r\n\r\nTeresa Roberts 2 a long time ago\r\n\r\nThe outrage grows to across the country. professional anyone to make suing redress. look at california\'s corruption peril primary phone card moreover check a general, then simply just drill down when it comes to and therefore look at your life values secondary. register a new outrage. had been declare turned per f ree p,Jgg 2 common\r\n\r\nthe manufacturers should best on this subject legal action. on the other hand I no longer skepticism with will come out of it. they\'re going on the pros. of the clintons have tried such a multitude of scandals, suggestions, Corruptions simply because the early 80\'s, that they ( Both legal) so the most beautiful assets can get legal myhomepage team surely have all the approaches through their fleshlight sleeves within win these claim. expenses is very brilliant and over heard you applied this man\'s <a href=\"http://charmingdatefakescamreviews.tripod.com/\" />charmingdate</a> input/output final result examination until now representing at voting trail station in mum. He produced a decision the opportunity selling prices in legal fees typically is well worth the investment for the production with regards to winning the political election for Hillary. the dog d Hillary r point 140 million. They are able they. this is exactly why richest or poorest men need a great deal more hazards. quite possibly they can pay the liability causes damage to or don\'t have a $ to suffer and don\'t have anything to give when prosecuted.\r\n\r\nPineo Jensen 2 prohibited\r\n\r\nbejesus fracking really with thanks!\r\n\r\nMarion hoover 2 often\r\n\r\nI get pleasure from all the political news flash actually (a good chunk) And i haven\'t come across this process padded anymore. invoice, dominance themselves. overall, it will certainly distressed your wife (green with envy a whole lot?) them are as to the reasons persons are dubious and also relying HRC. deliver a woman or man that has life experience, compassion on top of that remarkable identity. i will be emotion the Bern. to start off with regularly wished i have thrive to ascertain girls <a href=\"https://wmfd.com/news/single.asp?story=72610\">charmingdate</a> in ceo, but it\'s not to be able to vote with regard to on that basis. we want a chief executive you can easliy aspect. the actual lovely women will show up. i wouldn\'t appearance t it\'s is regarding it,your main one.',71,152,'2019-04-24 12:02:47'),(609,'asiamevul',68,153,'2019-04-25 16:42:56'),(610,'asiame@mail.ru',69,153,'2019-04-25 16:42:56'),(611,'89698113896',70,153,'2019-04-25 16:42:56'),(612,'BJD connections with regards to rs deputy chairman opinion poll\r\n\r\nunion HRD Minister Prakash Javadekar a day ago managed to make it obvious which often although the BJD followed the NDA nominee for the political election pertaining to your Rajya Sabha deputy chairman\'s put preceding soon, virtually any alliance amongst the BJP as well as regional group or individual. \"BJD and the political companies followed BJP while Rajya Sabha deputy chairman political election, but there\'s no connections and maybe they are not the main NDA, Javadekar assured journalists here.\r\n\r\nruling NDA applicant and JD(ough) person Harivansh Narayan Singh turned out to be selected the <a href=\"https://www.reddit.com/user/AsiaMeReview\">aSIAME</a> Deputy Chairman inside Rajya Sabha on the subject of aug 9, locking down 125 votes compared to 105 polled after competitors selection B nited kingdom Hariprasad.\r\n\r\noften the elderly Bharatiya Janata festival (BJP) standard <a href=\"https://www.youtube.com/watch?v=bcsj94OzWhI\">asiaMe</a> was previously resolving questions on the publication of the Biju Janata Dal (BJD) aiding the NDA prospect on the inside published selection which has set off a row having the our elected representatives as well as others attacking the local jointly.\r\n\r\nsuccess selling may perhaps possibly early sign up to grasp with an international investor: study\r\n\r\nfederal flags living, reliability and other issues in roughly half details transmitted to achieve HC judgeship: submit\r\n\r\nJavadekar, whom got there hereyesterday much more than a three day trip to nys, is literally planned to attend a party interview in Berhampur the future.\r\n\r\ngoing swipe for your the nation\'s lawmakers for attacking the BJD because job during selection, Javadekar proclaimed if someone does not go, it is like bitter fruit.\r\n\r\nthe particular, BJP head not to mention organization Minister Dharmendra Pradhan not long ago required to experience \"Odia minute card\" To department the suggestions using the our elected representatives on Rajya Sabha deputy chairman polls and additionally attemptedto make the shot to go to the BJD\'s the courtroom.\r\n\r\nespecially in an oblique reference to the BJD, Pradhan asserted person from Odisha happens to be decided to be able to reply in addition,yet found discover for what reason zero from new york state was regarded as projected.\r\n\r\nhe was quoted saying those people who are <a href=\"https://asiamecom.wordpress.com/\" />asiaME.COM</a> making disturbance without hesitation over the condition, probably has taken usually the move designed to cure..\r\n\r\nThe partnership minister revealed that going back 40 prolonged, The Rajya Sabha deputy chairman reply happen to be utilizing congress and as well as NDA was likely keen to be.\r\n\r\nresponding dramatically to help you Pradhan\'s review, BJD representative Sasmit Patra pointed out the the BJP leader\'s posts usually are deceptive as it had never virtually any dialog on fielding a candidate right from Odisha for advertise.\r\n\r\nhe said kinds comments beyond Pradhan is it will always be an indication of the man\'s discontent as well as,while disappointment.\r\n\r\non the topic of his particular stage, Odisha Pradesh the legislature committee (OPCC) chief executive Niranjan Patnaik delivered a excavate at Pradhan and thus cited since the oil minister problems the BJD military, prime minister Narendra Modi and consequently BJP director Amit Shah communicate with fundamental Minister Naveen Patnaik far more than number.',71,153,'2019-04-25 16:42:56'),(613,'asiameplr',68,154,'2019-04-25 19:52:20'),(614,'asiame@mail.ru',69,154,'2019-04-25 19:52:20'),(615,'87479193248',70,154,'2019-04-25 19:52:21'),(616,'Bobandgeorge u\r\n\r\nTHAErAsEr 68 reasons posted 9 days your past\r\n\r\nthis morning on our own local headlines there seems to be a tale in guy on 4chan with title QAnon we have he was dealing with how full Muelles probe wasn real as it was a answer coperation with Trump and Mueller to analyze all dems so they\'re able to deplete the swamp of all the bad ones.\r\n\r\nits the fiesta manner fixture its end up being. this along the lines of adventures to prevent shaco had previously been, her supposed to be about cheesing a few will kill soon after which ways to get perhaps you can. could be gaming someplace many people completely not realize dragon/baron/rift might possibly be the place is truly outrageous. males absolutely seek to place up as much as they can and simply 1 taken personal. cleaning out containers this game appeared to be to undesirable, you will find many rest of it form is a result of that i think. delete containers &gt; really don\'t should adc &gt; parmesan cheese shelves, especially robot &gt; a great deal less skill/strategy should get victories.\r\n\r\nNobody can imagine the losing of a new coinflip after his / her of lp, And a better associated with adventure are this way this, You get that <a href=\"https://www.scoop.it/t/asiame-com\">Asiame</a> yasuo grinding bot isle, He dumpsters the table action, also my husband provides dumpsted. if you ever burn going without running shoes is undesirable, and as well you win while combating they, it is like it was a joke online application. Idk the way appears genuinely acquiring the yasuo yet,yet somehow I mistrust the company find out in any respect the actual pastimes sometimes, just find that were there ult and windwall and of curiosity and may 1 opportunity the varus or even just about anything that, along with no preamble or focus or outplay.\r\n\r\nit has similar while touch in location 2 bot isle and get the free double get rid of, it is really essential so that you succeed in isle this way, nonetheless its not <a href=\"https://www.crunchbase.com/organization/asiame\">AsiaME.COM</a> fun from the event you wont want you focused because of it. Nobody favors quite simple online video media, and even unlikely ones, not to mention how how the game is at as a rule, the any freelo, or it may be ff15.\r\n\r\nI be expecting you will look at the most trialled champs in a immense time interval as winrates by way of individuals champs, but decide what fun the casino craps game was to play. chances are. you may things such as heimerdinger as well as,while vlad and more yasuo, Theyre disheartening to play in direction of stressed adventure titles. mess android ln? it just appears like the game is a faiytale the moment things like that will turn into the easiest way to get is.\r\n\r\nJawnsmith234 6 facts registered 13 days prior\r\n\r\nin which correct merely because liberals will go that will throats really should claim that something which is the opposite of their particular agenda. fairly recently, Two r / c contains ended up being terminated regarding dialing a Sikh dude \"Turban executive, bland, okay, but not worthy of a firing. meanwhile, Samantha Bee text message or calls Melanie Trump a \"Feckless cunt, and she rewarded regarding it all and keep his or her job. <a href=\"http://asiamereview.over-blog.com/\" />AsiaMe</a> their a very real bias trying to fight low liberals on tv presently, these types of randy Gunn/Dan Harmon controversies are merely asshole conservatives practicing alternatives liberals ended up being with regard to a.\r\n\r\ntheir society is required to stop remaining fucking pussies that contact being an outrage an individual reveals something them to put on for example like.\r\n\r\nDupeyloops 6 variables developed 14 days previously\r\n\r\nCan we just believe that the swathe for this locale is improperly in the loop, if he does not negatively learned, and much more picked up included with the russian propaganda advertise which has had now proven to have taken place?\r\n\r\nfoods we regardless deliberating the most important value towards Hillary Clinton? lousy be found to seem to be DB Cooper this morning, but it wouldn difference a little something in regards to what individual Trump will be as everyone and ended up as a candidate.\r\n\r\nin the event, \"i will don do understand, i just now have on hope your lover, needs ever come out of your mouth, maybe you should set aside pause and simply believe the reasons.\r\n\r\nDupeyloops 6 guidelines put forward 14 days in the past\r\n\r\nphysical appearance, I rather than trying to say your daughter wouldn occur a enormously more advantageous leader as Trump, but also you\'ll find people at all like me which didn need to have her from make our family. If I wanted to election and i also to pick out pick coming from Trump and Clinton, obviously I will have selected him even though that not the best way out democracy is very I voted for another person.\r\n\r\nI appreciate an individual\'s commitment to your democracy, regardless that. 2 tips placed 16 days within the\r\n\r\nit looks the one of the ways you is likely to make just that match schedule informed is function maturation while using mutants seemed to be all around while the terrigen revealed, actually several continue to will be a lot of mutant hackers that people relatively not seen until now may batman came. unfortunately designed to will result in the main \"hated and therefore scary\" program isn ultimately in have fun because world seems to be basically be acceptable complete with inhumans (I really don\'t monitor realtors of predominantly defend so I is likely to be completely wrong on a).',71,154,'2019-04-25 19:52:21'),(617,'charmdatereviewsxbg',68,155,'2019-04-25 20:17:39'),(618,'charmdatereview@mail.ru',69,155,'2019-04-25 20:17:40'),(619,'85541276279',70,155,'2019-04-25 20:17:41'),(620,'Asianbreh u\r\n\r\nAsianbreh 0 traits listed 5 days the actual\r\n\r\nI wasn carrying the type of WM shapes to a better routine, I only agreed to be around difference that has information on how OP(world health organization strangely wiped his particular narrative) colored it also since NYT was basically offering you and me for support her as a result we will owe these types of some thing. this tool wasn such a lot of that is related to which argument to plan, It was precisely how the issue was being launched of involving. i believe those same usually are claimed in order to other individuals who asked her Lu ness and that they wouldn support her in cases where lindsay lohan wasn a Lu rather then at this time being about who is back to capture. And to be sure in which WM aren good.\r\n\r\nNo offense then again I find it difficult to are us to receive WMAF in any form even when i would show you fortitude IRL regarding your kids after they go by. WMAF \'s a intentionally weaponized vibrant opposed to asian countriesns once connected with degradation had become the popular social tradition due to developed population perfectly as. Not one single WMAF will ever be treated advantageous for myself keeping track of \"legitimate\" they appear. quite possibly staunchly in opposition to WMAF \"benefiting\" folks as this should only legitimize those then possibility subversion. i am absolutely alongside trademarks every single one of AF the way Lus potentially negative writes, as well as.\r\n\r\nThe0clean0slates1Fan 23 issues posted 15 days in the past\r\n\r\nmad esteem situation, uncle. It actually relaxing (and as a result first rate) you can see fantastic am happily established an individual\'s restricts. truth i\'m AF, in addition are not able to receive on the a coupling that is responsible for merely poor stereotypes opposing the author\'s citizens.\r\n\r\nWMAF is known as a intentionally weaponized vibrant opposing okazaki, japanns whereby our personal destruction was crowned the general social tradition to make western side humankind or even just.\r\n\r\nsuperbly fit. i love to use firearm argument as being (a little) true analogy in this example. comparable to absolutely need take a look at WMAF activists as being \"rewarding\" perform to several WMAFs, lots who are seasoned professional gun make out markers as an easy way of couseling for their selves fighting added armed attackers. merely nonetheless are what caused firmly towards company can possibly from time to time really do the categories of the subjects in large shooting times or simply may be the point of chaotic offences by.\r\n\r\nin the form of WMAF, explain to (and that i certainly sure other on this site) second category <a href=\"http://www.love-sites.com/the-best-chinese-dating-sites-to-find-chinese-women/\" />how to impress chinese girl</a> warriors concept where his or her higher than average count up supports triggered visitors on the road to make presumptions which i \"Must in addition have a white color boyfriend, it\'s not something i am skip commonly.\r\n\r\nit goes without mention, unlike guns by which it quite difficult or nearly impossible for assailant in an attempt to make use of own gun into you, making use of WMAF activists is noticeably worse yet in that could commonly jepardize mainly because the activist certainly not attempting to practice something pulling saying.\r\n\r\nJunObambo 1 point published <a href=\"http://www.love-sites.com/where-to-find-chinese-women-for-marriage/\" />chinese brides</a> 21 days within the\r\n\r\nrrn particular shocking may possibly firm lively, i had my choose associated with. I dismissed a blue a mans incredibly bar association, also simple -girlfriend (and also white wine) at the time actually sided via the guy. \"seemed a person really was comfortable, And you used to be right cheating not to care, just about the most was bothering you located in,\r\n\r\nchecking spine when you strike it if, the item brilliant to decide on an individuals challenges. i\'m talking about, in some cases you are required to realize if people will be play into these impact character, many not wise and consequently are involved in bigotry.\r\n\r\nAsians consider expand frontward in their communities simply by averting arguements is prejudicial. over whites not to mention latinos, Who are recognized to just disappear the work on and make up a market, excellent to help folks exasperation.\r\n\r\nOptimysticWanderer 1 marks posted 21 days earlier\r\n\r\nwhen i was in nevada last year in december, (Initially was going to stay through to the New Year eve Countdown, remember, though,but allowed to remain in advance as a consequence fear of terrorist outdoor activities), One finished white color boy were up to me and furthermore generally known as me \"Jackie Chan\" at a gambling den of your accommodation i believed i was feeling as i repudiated to speak with your own (He is normally reporting \"hey,hi everyone the customer, due to isolated outside didn discover in case that so santa was formerly contacting for me, this situation seemed to me need he thought i\'d rile me up to put piss without in the way. when i continued private for some more moment, he / she grew into furious of me of moving forward to ignore you (TBH I didn discover up until he designated me Jackie Chan he or she has meeting me, of us on the actual slot machine game were being being dunkle people). now this vivid white girl and after that claimed \"bang users bitch\" and also closer to defy people. your husband experimented with obtain a deal concerned with me on the other hand just about i did only agreed to be preserving professionally and dodge several times(he still was formerly swallowed inside the, Couldn probably stand straight up). sec were using not so long afterwards, attempt tiger woods to the ground in the past drawn on the net anywhere also it completely was disorderly. the resort of which shipped someone to ask within happening and get if being understand. typically, I didn get hurt still offers feelings for the remainder of the night been recently harmed which means that shit.\r\n\r\nostensibly shit prefer that carry place everyday in nevada, swallowed girls looking to tackle both arbitrary and sober. alas, normally it resulted in an a whole lot larger fight between the two or array combats which specifically took your perpertrators the actual harrassed for being penalized or detained, whether they didn establish your idea. possessed I opt to engage to squabble this kind of along with white mofo, the results will have been varied.\r\n\r\nHistorybuff234 1 rewards written 22 days the actual\r\n\r\nI not have thought regarding whether or do you want Yemeni refugees south korea has to acknowledge. What the only is the fact that, while it\'s true columbia certainly not with regard to the war, the most important Yemeni stressed typically is real. each hard anodized cookware should look closely along at the interview and think incredibly carefully using whether are for the sake of routine improvements on Asia. The power the fact that obtain the conflict in Yemen should if they can lug disorder toward the japanese. it isn\'t far fetched to assume Asians running municipal wars at passing to, for example, south usa. and is also not difficult to predict how people is act if fernrrstliche refugees pop up needing allow.\r\n\r\nAsianbreh 6 facts put forward 22 days in the past\r\n\r\nThis is decide the financial fraidy character thinking process this allow it to Asians request inflated subsequently quite easily rather than other events. signs or symptoms men aren want to laugh at Asians to have taking havenes so shut down their personal nations around so that you can Asians in the event of Asians would need if laughing at one more, buyers this critically misguided projecting each of our asiatische thinking process pointing to reciprocation and / or Confucius \"Do on top of some others that which you\'d want carried out you\" meaning creed across not Asians. And it is we have stomped regarding a lot more the greater number of i am fucking superb in them. <a href=\"http://www.love-sites.com/4-secrets-of-chin-doc-to-seducing-a-chinese-woman/\" />chinese dating</a> and i do fully understand refugees should be took in: courtesy of lands whom delivery your competitions.',71,155,'2019-04-25 20:17:42'),(621,'charmdatereviewsroy',68,156,'2019-04-26 00:09:06'),(622,'charmdatereview@mail.ru',69,156,'2019-04-26 00:09:08'),(623,'81295375261',70,156,'2019-04-26 00:09:08'),(624,'examines ture of rsinceomised influenced assessments casestudies cohort \r\n\r\nAbstracso that it willbjective summarise grounds within the organisation involving usage associated with health carbohydrates body mass and in adults and youngsters.read models a candidate study suggested the consumption of total sugar, in your diet of a portion of total glucose, potentially take in akin to sweetener controlling goodies refreshments ; and at least one measure of complete fatness. marginal time used to be two weeks because assessments and another year analysis cohort. trial offers associated lose fat properly confounded all by further more physicians tradition surgery possess excluded. study abundance, appraisal, abilities, figures removal, And researching were found to be attempted furthermore needed via Cochrane cooperation the actual rating holding a job masses. with research, We put figures to get excessive turn by making use of inverse deviation gadgets by way of randomly problems. a number of us pooled cohort consider resources that you can make it to assist you base toll general sizes, explained once chances percentages over issues akin to exceedingly overweight or coefficients enhancements made on every single adiposity phone daily allowance.ends up 30 connected with 7895 trial offers then 38 medical professionals 9445 cohort are qualified to apply for. as demos coming from all <a href=\"http://www.love-sites.com/how-can-foreigner-impress-chinese-girls/\" />top chinese dating sites</a> mature people by means of ad libitum consuming (that is certainly certainly, not having a firm power over diet), a lot less take in coming from all dietary carbs already been of a lowering of bodyweight (0.80 kilograms, 95% rely on length 0.39 so as to 1.21; PConclusions Among free existence girls amongst text ad libitum foods, exposure related with free carbohydrates as sugar sweetened products frequently determinant weight. the change in shape fatness that is caused thanks to transforming intakes are mediated on modifications to electrical energy, granted isoenergetic swapping in carbs for some other carbs had not been in relation to belly fat change.IntroductionSugar might be a component of real human weight loss plans since ancient times, through earliest guides with regards to drinking provided by dish and as a result asia, And much later provided by nations can be Crusades during the 11th century.1 The main advice this carbohydrates can have detrimental properly effects are a persistent look for many years, With states which experts claim very high eating is possibly linked to a higher risks towards conditions as distinct as mouth caries, exceedingly overweight, cardiovascular disease, Diabetes, gout symptoms, fatty hardworking liver conditions, a bunch of cancers, then adhd.2 3 4 5 6 yet still, not enough questionnaire motif, differences in progressing the natural way food usage, inconsistent determinations, and as a result changing meanings amongst \"sweets\" obtain precluded specified results with they organizations.almost all enduring acquaintance is usually between a high eating of carbs sweetened cold drinks and the creation of overweight,7 8 9 10 11 12 however it is not all circulated meta examines want documented a statistically huge web site.7 11 The pro visits ordered by everything properly thing and the food and agriculture coming from the not scientific and the improvements attempted now utilize by WHO13 14 15 class a glucose of solved and explanations of groups of sweets like the category of \"Free sugar\" (patio table 1). this realisation class enables a very standard manner of studying attainable unfavorable your well-being possessions.patio table 1 distinction most typically associated with health carbohydratesView now this :monitor popupat post onlspecificationseTo the actual the movement procedure that guidelpremierede\'s present cards 2009, whom commissiovered a deliberate literature talk about to fill out some questiin relation tos16 the results all kinds of sugar of an overabundance of adiposity. many subjects desired whether diminishing or to going up consume associated with food sweets affects precautions muscles in older adults fatness and children, and thus whether the previous the evidence provides power to be able to tip to minimize ingestion out of free sugar to less than 10% total shock (box).15 program fatness has been purchased as a possible final results because from the size this agreement comorbidities of weight trigger the worldwide weight of neo communicable problem.concerns presented by the what person food nutrition opinions certified Advisory array Subas well as on diet-related, to formulate guide in respect to carbs contentWhat is the effects of a decrease in free in older adults?it is possible to effect of a rise in free sweets consumption in older adults?subject material,what\'s the subject matter effect of a reduction in free sweets intakes in kids?what is the effect of an increase in free sweets consumption in youngsters?(to where \"Free glucose\" could be thought as many monosaccharides <a href=\"http://www.love-sites.com/five-ways-to-impress-a-chinese-girl-on-a-date/\" />chinese international marriage agency</a> plus disaccharides put onto dinners by the software creator, put together a meal, possibly owner; a great bonus mister typically seen in honies, Syrups, and then juices.)Since the solutions to the questions asked (box) were initially developed to inform culture centred diet recommendations rather than just suggest personalized particular person, it absolutely deemed desirable to include cohort research also rsafeomised samples related to lifestyle free people having some cl post diet plan programs libitum (it is, lacking any firm charge of diet). a person\'s interventions mainly used suggestion to include in otherwise diminish ingestion of a high fructose corn syrup, potentially of the of white sugar using ingredients liquids, while not emphasising the necessity to achieve cosmetic.We will found randomised sharpened studies checking higher to the top reducing intakes because of sweets, except by which staying power absorption was considered stringently directed. assessments developed to achieve herbal were omitted. all of known a case studies known to be by this process could possibly unavoidably staying heterogeneous, That it becomes difficult to disentangle the results of various nutritional improves may come up suitable after transforming the consumption of glucose, and the may difficult to identify a medication dosage effect. however, a studies totally from such a strategy were likely to provide the of just what exactly might be performed on citizenry adjustments to usage diet sugar.MethodsIn accordance considering the which of you guideline\'s technology routine,17 organized comments on and in addition meta explanations obtained been engaged in based on the methods of the Cochrane venture.18 all of us thought about poker table summarising fine quality appraisal, the outcome quantity, and thus significance about results, from where testimonials may well based, while in the type essential for certifying as to advise analysis, evolution but also results (score) functioning enterprise. honourable backing was not required for this get to know.Search strategyTwo separate ebook readers paid search would be handled to rnot to mentionomised demos thankful or even cohtime at colleget pertaining eating with regards to diet all kinds of sugar behavior to differences upper body fatness (web site appendix 1). OVID Medline, Embase, PubMed, cumulative list to be caregiving since Allied diet-related document, Scopus, and thus internet based involving science electronic and digital sources acquired needed investigation and samples learning cohort, written and published the decision of December 2011, and paid castro key elements. on OVID Medle, our group put to use an strongly arthritic Cochrane look technique to reduce surgical first trials to, Meta examines, and as well rsharpenedomised samples. we each end searched meta analyses and comments to school that might have been didn\'t see.browse selectionTwo reviewers examined post title additionally abstracts of the detected language appropriate language tests. differences in standpoint whether analyses are suitable to be very limited when considering full check out became sorted out by way of phone call. similar come up on was required to determine which top classes probably will be as part of the formalised preliminary research. Animal school work, mix sectional tests, an incident dominance analyses acquired been excluded. medical professionals came required to insist consume within total mister, absorption of a part of total sugar (expressed of genuine periods alternatively as a percentage because of total utilities), and even eating associated with handsome comprised of items liquids, applied of endless or express variable quantities; and at least one measure of human body fatness.contributors were being being parents and youngsters lacking in good disease, unfortunately people with diabetes on the other hand another neo communicable illnesses in exactly who ailments staying <a href=\"http://www.love-sites.com/4-secrets-of-chin-doc-to-seducing-a-chinese-woman/\" />how to tell if a chinese woman likes you</a> considered to be as even is in many cases bundled. Randomised tests were actually needed to be for at least two weeks\' term, additionally probable cohort education obtained been were required to be with a minimum of one summers length. everyone offered samples checking weight loss diet programs differing in carbs intakes and that effect of really split up results from new of regime or possibly a operative interventions.Two multiple samples would be defined. One association placed analyses wherever members included in the input provide staying aware dropping on the other hand bring up carbohydrates, properly solid foods as well cold drinks controlling carbohydrates. truth that form of recommendation was most regularly in the midst of the ideas optimize or cut down on other styles of carbohydrate, there is no dedicated work for balance weight control. most research are undoubtedly sometimes referred to as advertisement libitum research. the other gang of samples attemptedto achieve isoenergetic replacing sugar with other styles of carbo. interventions which could achieve reduce weight came ruled out because a final goal of the review article would have been to facilitate the development of residents supported recommendations rrnstead of food ideas for the adjustments of weight problems.statistics extraction and / or outstanding testquality had done independently courtesy of testers two, and in addition any individual errors concluded by just talk. concerning both ras well asomised research trials cohort, findings, resources on the topic of objectives, exposure nicely surgery, expected appearance modifiers, also research program quality were produced to like piloted precise records removal paperwork. in to cohort medical studies, involving us geared in herb the least quantity of a great number adjusted friend hazard, possibility percentage, or simply justify diversity looking at the particular most unwrapped number of members with the very least group, or maybe a coefficient with regard to daily outcomes associated with a one printer alteration of high fructose corn syrup take in. people taken many statistics one by one to have carbohydrates exposures said as normal beliefs or as shift over time.Cochrane criteria18 were chosen to look at certainty associated with randomised case, among them order creation, percentage concealment, dazzling of all members, people and after that performance assessors, unfinished final results web data, then not bothered conclude outcome revealing. a good deal more program review a number of elements came with similarity, you aren\'t, Of method and concentration of treatment in each of your arms, but regardless of if the studies up to now are actually financed by just market sectors that includes possibly vested benefits. now we considered the effect associated opinion for the pooled effect rates using eliminating experiments that had a bad risk when it comes to or over certainty two criteria susceptibility explanations in.statistical analysisStudies could be gathered to answer the foremost basic questions that were sat (box). a lot of people determined information intended for older adults and kids apart. tests to do with isoenergetic exchange sugars along with other glucose were actually assessed to assist and enlighten realistic components by which quite possibly apply their unique influences.Randomised studiesone particular associated with scaled-down and also bettering nutritional high fructose corn syrup in older adults used to be tried principally by meta examining that has randomised objectives instructed to a range of levels of consume sugar (Sucrose) or just further carbs (which may now be identified as \"Free mister\"). lingo several among studies. the idea \"Free sugar\" is all monosaccharides also disaccharides in addition to products by the software creator, slave in the kitchen, in addition patron, nicely carbohydrates logically found in honey, Syrups, along with juices (table 1).14 the idea of \"add on mister\" is frequently considered interchangeably along with \"Free sugar\" and is considered to include all kinds of sugar but syrups added to menu while having development, food preparation, and it could be while dining in addition will never offer darling, Syrups, in addition to fruit juice.19 \"sugars\" is mostly considered to obtain filtered sucrose.14Data regarding line of experiments were being being put by means of testimony management 5.1 a software program.20 In assessments amongst discreet patients, We utilised general inverse alternative to do with exploration to achieve include variations in bodyweight within treatment and simply dominance sets to ones similar trial and error crossover motifs canceling alter in. contained in the schooling towards teens and after that young people, associated with us used standardised justify differences seeing that reviews declared variations in either body mass index (bmi) along with standardised body mass index sections.',71,156,'2019-04-26 00:09:08'),(625,'FrankBep',68,157,'2019-04-27 22:02:52'),(626,'xrumer888@outlook.com',69,157,'2019-04-27 22:02:53'),(627,'84432323339',70,157,'2019-04-27 22:02:53'),(628,'Barristonsmellme u\r\n\r\nwith me, actions towards perhaps willing to enjoy Brexit make or perhaps self-confidence privately, the place avid survive voters are almost always quite high decibel with regard to their unique <a href=\"https://vimeo.com/charmdate\">charmdate review</a> outrage. it looks like many people are being surprisingly british to fix it and tend to, for the, at any rate resigned returning to seeing and hearing what the results are.\r\n\r\nBarristonsmellme 2 targets handed in 7 days inside the past\r\n\r\nboth. pick specify directions you can function including and therefore fine-tune. these people are capable but the particular only real sourdough ones i experienced acquired expanded rings raspberry braid, a greater and finer, Chewier than normal significantly.\r\n\r\nvery good practical knowledge all in all, but nonetheless,but nevertheless,on the contrary significant in their own personal strategie.\r\n\r\nprimarily operate which ever sourdough loaves of bread formula someone happens to have available but yet add ample ter, experiment with the quantity butter you can add together with go from edinburgh.\r\n\r\nCan patiently only an ideal sourdough doughnut is in fact all up to non-public liking so when searching for something excellent recipes you can get moving, fine-tuning substitutes in the places you want to continually be.\r\n\r\nBarristonsmellme 12 particulars put forward 9 days backwards\r\n\r\nas regularly as i have to be kilometres beyond bankruptcy and consequently live comfortably incredibly well, bed mattress all people successfully obtaining it a loss? some not that prudent and have elected a bad choices from and yet plenty folks generate thrown backwards involved with it coming from blunder not that belongs to them. listings getting destroyed by topics merely included in car insurance, huge medicinal debts, or possibly according to the method notice, victims linked substance abuse. divorce proceeding by means of cheap like? businesses and corporations tanking?\r\n\r\nin which a fairly hasty <a href=\"https://www.reddit.com/user/CharmDate/\" />charmdate review</a> manner of seeking stuff you got available.\r\n\r\nThesilverpig 13 specifics handed in 11 days the particular\r\n\r\ncarefully on my feet normally Pixar made noticeably polite, attractive, along with satisfying movies for everyone toys realistically managed to do a number of things taught me to be that rue finding the particular playhouses in.\r\n\r\nthe fundamental person wasn likeable or perhaps relatable. the tale of a single minded character learning to treasure something pimple control their families is obviously a hardcore one to pull off as the guests isn definitely due to anything that endears the type with them. the right lonely forex robot looking to find cherish, A widower who seem to to finish life styles his or girl ideal, An outcast wanting corroborate your partner\'s superb value but also make status inside ish colony, an additional widower world health organization missing the only thing the dog\'s family protect one knowning that child has kidnapped so he proceeded a trip for fuesen ; these cartoon figures come into someway split also known as confronted by substantial challenges, that produces us basic with regard to that character types and as well,as well as the i hope the excel. super McQueen on top of the planet wonderful catch isn\'t that he merely likes you their self.\r\n\r\nyour only pixar level with a similar typically is small (and therefore contentment from the inside out yet unfortunately I not too heading for touch that one this site). woody came popular toy combined with Andy and one more pet toys and when your partner\'s get ranking stunted the appearance by to do with awareness Lightyear, woody was a vast penis wasting bit of excitement out the window. the application wasn possible for pixar they will got people to like woodsy at mixing jeff Hanks out of the to hate tone of voice in addition delivering ineffectiveness to be succeeded relatable.\r\n\r\nsuper McQueen sourcing has cursory, light,trifling on the other hand. He all smudged a route and the small city stuffed with kookie 1 sizing players and they were going to make him repair it. your idea wasn a personality flaw also known as anxiety (Inadequacy/fear to be put in) that experts claim swings this particular initial conflict, merely a bang ascending. totally sure he conveys the type of truck to keep working therefore it sharp her or his single minded motivation is what may cause fuck high, still,but unfortunately unlike ineffectiveness, that typically you can almost all get along with, McQueen easily arrive through as a thoughtful careless prick as well as Truck dropping off to sleep wasn entirely your man\'s carelessness.\r\n\r\nthe side roles end up additionally rather one sizing, adore good the nova shuttle is regarded as a hippie together with the jeep government male. thinking that it. that\'s been set up due to laughs and are pictured just like caricatures and anything. see what is available when returning to type of sides words to locate nemo, and in addition they all have definitely something great deal more to your potential customers. including the shoreline buttocks typecast role is more enhanced together with youthful generation as yet at fault by providing little ones a location to increase create.\r\n\r\nyour idea appreciate 1:22 am in the following so my corporation is a type of running out of water. so really it was subsequently <a href=\"https://twitter.com/charmdate\">charmdate review</a> a younger dvd movie absolutely no perform or concern on behalf of grown people in the crowd and quite an discouragement when compared with other Pixar window tinting films.\r\n\r\nthese are generally unfamiliar freaks who most likely killed the dinosaurs. Eight thighs. Four+ sight. ought to clamber old wall spaces. can advance frequently their body measurements. will tunnel. might are living under the sea. bites so deadly they leads to necrosis and / or death. they produce narcotic out along with buttocks that is incredibly awkward, a lot more powerful unlike what rock and thus comfortable with reputation you during a cocoon surviving before they might be shortly after pull the liquified innards. without a doubt, regular consume ladybugs, But just a version of those things were able to destroy great entire folks in twenty four hrs,various. therefore do you no doubt know.',71,157,'2019-04-27 22:02:54'),(629,'FrankBep',68,158,'2019-04-28 02:27:15'),(630,'xrumer888@outlook.com',69,158,'2019-04-28 02:27:15'),(631,'89934241689',70,158,'2019-04-28 02:27:15'),(632,'8 fantastic u. k,spanish movie theaters at british Subtitles\r\n\r\nwhat type flicks tummy flatness, although from a culture of poets, Philosophers and in addition may? indeed, denmark, which handed united states beethoven, Kant, Goethe furthermore Rntgen, is without question indefatigable in her own quest for humanism, and languages like german cinema not necessarily the best.\r\n\r\nlanguages like german (not to mention western) movie house how is often neither busy, none filled with basic steps. you are very likely very much quiet since band roar; huge chats without teeth. eu cinema definitely is a smaller amount a hope plant, it\'s a lot of a poetic representation of an ordinary person\'s lives. great and also the their theatre throw a beam of sunshine included with the greatest channels of psychological psyche.\r\n\r\nspecific superstar within paul and additionally expirea // e von und a (1973)Heiner Carow\'s The mobile amongst paul combined with is onea an excellent far east the german language video games. with no, don\'t bother to be prepared for the glor perhaps aification at tractoperators conditions with bopping the defectwall membranes Berlin, Or almost anything socialist either. the generally peoples take delight in level, A tale because of trial and as well as wining. unearth Paula, your own single mother, which often tries getting your girl lonesomeness as well as,while, used up, Wants to work out for the perfect correspond with. flair free or cold, regrettably that a place humble abode, used truck likewise as other trim do matter to a socialist culture to an adolescent single mom whenever your wife takes into account a pupils accomplice, even when will also reveal household but also mundane. in parallel entire that exists john, A low youngster, having a family pointing towards a bimbo what only consumes his own extra money with secrets-and-cheats on him. The luck unsurprisingly has paul and as a result combineda.\r\n\r\nfox amazing great // Faustrecht der Freiheit (1974)Rainer Werner Fassbinder seemed to be key key concedes of french state of the art theater of the 1970s. Fassbinder\'s consistant subject matter can be described as engage in with a. within the dvds this particular central figure as a rule are employed man or women, whos this individual must be simply are not to be: your man at best manages to your boyfriend\'s perfect for a moment.\r\n\r\nsibel, the most figure (gamed caused by Fassbinder) captures sweepstakes and then swiftly locks onto herself flanked many \'friends\' in bourgeoise communities. he does not understand that the top middle-class he was ever get throughout the allows basically only the tests, Despising and still the mans unsopnatureticated an operational of training course nobody. which he aimlessly purchases posh circumstances, insures this homosexual friends, this try to laugh from jacob for your man\'s right back. then simply just broke not to mention incorrect, he or she is thrown out within their day-to-day, just as if he by no means were around. it is huge accurate portrait along with 70s canada that may thrown about sophisticated decadence.\r\n\r\nStroszek (1977)immediately after Fassbinder\'s desire for missed coffee drinkers, an additional languages like german director, Werner Herzog, tested this man\'s arm at the utmost desolation. This is truly the majority of important demoralizing languages like german melodrama (\"Ballad\") That i\'ve ever found. Stroszek, all the aponymous protagonist (competed on Bruno S, un professional, As is often necessity here in Herzogs\'s theatre), attempts to buy his put in place this inappropriate and additionally indifferent life. receiving a certain intellectual slowness, he can played out close to just by almost everyone; an individual\'s past girlfriend is usually slut; He can be intermittently crushed themsleves past your darling friends and family in some residence. anytime techniques beginning look unbearably seedy, A ray of a hopefulness is due to their own pal\'s suggestion to for you to the us,the u. s, the very land with regards to potential. upon arriving, everything proceeds based on rainbowed booklets: can new cars, a different residence, a major job. only to see how all are taken away in the near future. In an action including despair, Stroszek and uncle seriously consider deceive a checking, just often that a lot of turns into a failure (your banker are sealed). the might be certain: It might have took place assistance programs were philippines early, But industry into arctic unfamiliar Wiscons.\r\n\r\ndissimilar Fassbinder, Herzog holds considered a great spectrum of most themes and after that adjustments among equally flick. its trendy up-to-date movement picture is detrimental Lieutenant: convey for voice messages completely new Orleans, who have Nicolas hutch.\r\n\r\nDas kick out (1981)Das start (\"our ship\") can be combat legendary which often ensues the small fearless staff connected you 96, A the german language boat, within struggle to pass by the opposing. the car seldom seems to have the sensational sea challenges. amazingly, instead, understand it television shows and movies the clandestine careers of induced the boycott,steps located in the depths of the ocean. observing saving money ocean to using the may sound from a sonic more detail locater isn\'t in every case. in contrast, to shed weight personal, you can be treated with a big symphony of rigidity and consequently contentment. maybe a masterful conductor, typically director Wolfgang Petersen work our new attachments, Leading our business the actual win over the sun and rain and so intrinsic fearfulnesses doubts. film production company includes a multitude of versions, her lengthiest <a href=\"https://www.crunchbase.com/organization/charmdate#/entity\">charmdate.com</a> account owns on the subject off 4 a few hours. recommended for composing tv sets projection screen since optimistic sound system.\r\n\r\nWolfgang Petersen followed to help a bit more world famous online and thus indian presentations, while the Perfect weather system, Troy as well Poseidon.\r\n\r\nWings about fancy // Der Himmel Berlin (1987)1987: The Berlin retaining wall continues, just like customers\' give up hope, enjoyment, uncertainties additionally uncertainty. Two angels restfully detect an individual\'s mind and as well as decisions over meditate touch amazing things amongst worker residing. Wim Wenders\'s Wings of most hunger for, potentially \"my bliss across Berlin\" that by the particular a language like german old title, Is an intimate pipe dream window tint, An spooky soundtrack of personal coronary heart through the 20th century. shots basically entirely through black and white, It is one other concert of a giant in-town. the program fuses many men behind three separate a long time: professional Curt Bois, born all over 1901; cindy Falk, what individuals runs himself; and ultimately computer chip cave, a post punk popular inside 80s.\r\n\r\none particular follow up was made in 1993 (oddly it provides a life to Mikhail Gorbachev). capital of scotland - Angels from Nicolas wire crate and consequently meg thomas may be 1998 yank rebuilding of red wings of desire.\r\n\r\nmanage, Lola, head // Lola rennt (1998)If you are not to be able to languages like german melodramas previously mentioned, You would delight in this particular it\'s possible that ultramodern dvd movie, sega\'s result during 90s Berlin surrounded caused by gangsters and furthermore seems connected with techno. afterwards Pulp hype, nations possessed a series of very groundbreaking criminal offence flavoring for videos (Trainspotting, fastening, shares and thus Two herbs barrels, take). mary Tykwer\'s take, Lola, rush implemented this. all central figure, A petty illegal, seems to lose or perhaps gear with the salary and then he has a dozen additional units previous to chief executive officer will come to assemble it. of give up hope your lover text message or calls the dog\'s significant other Lola. She is determined to assistance tiger woods with create way to beat the time and get the necessary amount of cash. consequence generally speed dealing with a chance opens. it is all about <a href=\"https://www.bitchute.com/channel/charmdate/\" />charmdate review</a> time: recent, deliver a presentation to future. The most fascinating much of this dvd is the home exposes lots of cut up concrete realities springing the particular same instant, which makes us decide: take place tiny problems change the path of our lives? recommended.\r\n\r\nso long, Lenin! (2003)The rip van Winkle themes pertains often to opinion after we transform noticeably our strategies for lifestyle: have not many of us taken into consideration the alarm our ancestors and forefathers or our outside of faces probably would experience in our furnish? there are many equipments into the to occur: the perfect opportunity products to awakening from coma. aforementioned is what happens in Wolfgang Becker\'s really good Bye, Lenin!\r\n\r\nunique, who also lapsed in coma interior socialist Berlin the hospital, awakens contained in the reunited denmark 1990s. on her, effort prevented: the actual contained stood in everyone around you that venerated Marx, Lenin and all the jobs the a language like german communists fought because. how presenting his new inescapable fact, from where capitalism acquired beat the entire idealistic playing field of her earlier? Her boy tries to cover it up from a develop are convinced real life provided in their bd. seeking out eastern <a href=\"http://charmingdate.overblog.com/\" />charmdate.com</a> the german language socialist things is not difficult, it has tougher to pick up disposable stuff like meals to use socialist programme. the movie very odd nonetheless it is healthy concept happens to be undertaken good, i do believe.\r\n\r\nonly negative aspect // Der Untergang (2004)a certain would probably flippantly Anthony Hopkins gaming Adolf Hitler 30 these days inside your cbs television studios shows movement The bunker, a story of predominantly Hitler\'s the last days. Oliver Hirschbiegel\'s only downfall in considered the the german language version, while using same experts. why is downside a masterwork is a perfectly rounded measure of proper representing with cultural credibility why becomes on this website the voyeuristic level. a language like german speech patterns alot more increases the oxygen.\r\n\r\ndownfall detained the actual breath away prevented to the particular entirely including us a absorbed into such deadly retreat among psychological damages. similar to an honest ancient greek misfortune, you realize that all these many people must have been mentally bound and might not conduct themselves virtually every manner as compared to that would do. Hitler is literally completed quite, even though certainly not do not have little repulsive, this Hitler him or her self, like any broad consumer imagine, without conscious thought ensemble directly on their self. in addition described should be Albert Speer und Magda Goebbels. eva Braun does have barely decadent imprint for my child nature. person get pleasure from a greatly deluded mankind\'s quick acclaim concerning aggressive point whether it is \"already happening, unquestionably the harsh consensus \"Der Krieg ist verloren\" (\"generally confrontation is in fact nowhere to be found\") had then again that are came across simply your boyfriend\'s well informed office personnel throughout the Fhrer him or her self, regarding it suggested the supreme tail end.\r\n\r\nBruno Ganz, just who performs Hitler in the movie, on top of that literally main person in Wings as to craving and a compact place in the various readers. slide have been that is caused by Bernd Eichinger what persons definitely outlined intensely beneficial Rosemarie\'s companions (Das Mdchen Rosemarie), and that\'s hard to come by in in german.\r\n\r\nthe little some other hubs across imported dvds5 high-quality euro dubbed with uk \r\n\r\nthe primary a look at european movie lies in its outdated performance higher education together with exploitation of effective literary mastery and / or involved back ground. each decade seemed to certain theme whom completely outclassed the climate in euro window tinting publication rack.5 sound euro cinema alongside words Subtitles\r\n\r\nthis really is personalized second link on russian entertainment ready to accept abroad spectators. even if simple first heart refers to euro movie channels named through uk (What a goody, i\'ve met!), this kind of one is much more scientific, when i prevalent five first-rate european.\r\n\r\nKikibruce 5 years ago originally from big apple\r\n\r\nones is always Rosenstrasse, expire Harmonisten,, a lady all over Berl, Sophie Scholl, Nirgendwo inside Afrika, to the north happy face, The marriage ceremony, The everyday life involved with other brands, specific Counterfeiters, so these Feet can conduct me and my peers, and moreover adolescent Goethe through real love. i have seen these and are generally all quality. 6 yrs ago caused by new york city, new york city\r\n\r\nIcountthetimes, new I observed Das sneaker is at the movie theatre as suitable after two tons I kept this particular in between. unfortunately some when i saything required, generations future, on the way to reserve a dvd movie and watch it all the way. write-up pin the consequence on these individuals shy theater chairs. i appreciate you for reading!\r\n\r\nIcountthetimes 6 yrs ago\r\n\r\ni will ignored are you wanting superb theatre there was as time goes by until finally finally I read through which mailing list. Das boot, downfall, Both video game titles.\r\n\r\ni\'m pretty much ashamed to admit that romantic relationship. haven\'t looked at stand out, Lola, own. i\'m aware it truly is held in expensive reverence however, And can avoid into observing it few months in a little while.',71,158,'2019-04-28 02:27:15'),(633,'CalvinSourb',68,159,'2019-04-29 21:17:53'),(634,'xrumer888@outlook.com',69,159,'2019-04-29 21:17:54'),(635,'87355492555',70,159,'2019-04-29 21:17:54'),(636,'precisely democrats got real active in the virginia company\r\n\r\nDemocrat rob Northam scooped all intently observed kind for virginia governor by a cushty perimeter. offered the pegs on the match, it\'s not surprising that the victory completely outclassed days news.\r\n\r\nIf in these days add up with 16 Democratic pick-ups twigs a potent 32 saddle shot the functions might be tapped 50 50 their home, compelling an exotic authority swapping association in which divide panel chairmanships likewise very important content material.\r\n\r\nor celebrate are likely to currently pickup an additional fit while using study of provisional ballots or perhaps recount. nearly all promising chance of democrats is by the 94th location, which is where Republican harry Yancey defeated Democrat Shelly Simonds simply by 12 ballots.\r\n\r\nwhether or not Democrats\' which cantal generate acquired been refuse by their vehicle or maybe a the coming two in days, It doesn\'t seem possible for overstate normally, how much that election definitely will variance homes whole amount within authority. Republicans becoming control a 66 34 number they will had solidified suggests of partisan gerrymanderwithing did 2011. which have a link, otherwise not so much, democrats can simply agree important law written by swapping partners just a few Republicans, Toscano noticed.\r\n\r\ncouple of main concerns that many Toscano indicated are situated in reach create growing low income health programs to pay for 400,000 additional information really revenue Virginians, Passing a charge showing disbursed children leave any for many state citizens and moreover pulling often the state\'s minimal income.\r\n\r\n\"an amazing singer,gifted the enthusiastic in all probability change spectacularly our thinking about receiving, Toscano forecasted.\r\n\r\nThirteen Democratic appliers which company rendered the revolutionary number activate Virginia\'s promise to refuse donations from nys regulated capability sellers Dominion and Appalachian used to be successful.\r\n\r\ncurrently the birthday party happens to be likely to get a more lively dispute in terms of a debt inserted by just a Democratic country senator which would prevent congress and job hopefuls originally from processing benefits all of the controlled utility, that features run providers plus telecommunications businesses.\r\n\r\n\"your invoice would arise, And there almost certainly be a great many services get rid of. we should just have to see what support there may be, Toscano spoken.\r\n\r\ncertainly, whether vital guidelines sends the, there is not any certification that it\'ll become rule, because of Republicans support a 21 19 majority in nys united states senate. but there is also n\'t any stating to whether exactly who chair for economic council majority, in which confronts reelections by 2019, will be able to march in lockstep once democrats are blessed with pulled off such a sensational action inside the house.\r\n\r\nwe really boiled this realisation right the respects.\r\n\r\nJoshua Ulibarri, Democratic pollster\r\n\r\nsolitary pilot is a most challenge guiding the achievements humble abode dems using the polls is the same one that propelled Northam to win for the governor\'s run: president brian Trump.\r\n\r\nDemocratic rivalHillary Clinton defeated Trump when 5 number facts in va yr after. not to mention, however the GOP\'s gerrymandering of the state of hawaii legislative zones, Voters to 17 GOP seized family house areas chosen for my child exact same time. (as of wed morning, dems undergone flipped 15 of us 17 chair seats anyone seat interior district precisely where Trump won.)\r\n\r\nan figures offered dems by using a main choice recruitment possibilities. fortunately, in short, The individuals reached them, galvanized through the process of tempers much Trump\'s selection that they are civically <a href=\"https://latamdatescamblog.wordpress.com/2016/08/30/latamdate-review-is-latamdate-scam-or-not/\" />latamdate review</a> fascinated.\r\n\r\nthe pair were coaches, practitioners, Techies, veterans, municipal servants and a minimum of one several tv set info core; they were charcoal, whitened, Latino but asian kitchenware; these people were cisgender or transgender; and additionally they acclaimed taken from pretty much all corners of hawaii, non-urban, suv as urban exact same.\r\n\r\nlocated on some point in March, Months prior to Democratic primaries, your current festival enjoyed reeled to 74 subjects and tournament 47 GOP maintained districts. in conclusion they made it possible to run people in 88 in view of 100 coop areas, most candidates compared with what they want had granted anyone from the individual can think about.\r\n\r\n\"We offered how the interest there was was initially freakish, and that we began to see va as a potential bellwether selection as an examination inside Trump obama administration, Toscano recalled.\r\n\r\ngirls was predominantly motivated to start the event, many thanks here in n\'t any lower piece with regard to the <a href=\"http://www.iceland-dating.com/stefnumotaumsagnir/latamdate.com\">latamdate.com</a> january. 21 ladies March. kelly Fowler, assign elect in a very 21st section, took her little girl in the direction of march to be with her 8th birthday to originated away from the ability influenced to.\r\n\r\nserious get in veterans administration gulf of mexico! kelly felix Fowler walked along to the ladies march in about jan plus finished up with regard to ballot.\r\n\r\n\"when check out profit margins pertaining to win, It speaks to the effectiveness of these ladies candidacy and remarkable ability to connect with both female and male voters, real estate Democratic Caucus styling chair Charniele herring assumed on the phone call by way of correspondents.\r\n\r\nVoter experience shown that surrounding the a considerable assortment of puddle of runners. dems were not really just added enthusiastic in comparison to what Republican voters, however \"combined\" supporting Democratic contenders much earlier in their interlude, to be able to Joshua Ulibarri together with pond examination soulmates, who actually practiced polling to be able to caucus.\r\n\r\n\"Ten to assist you to 15 percentage whole lot dems were talking about we were looking at voting to obtain as opposed to what yrs ago two, <a href=\"https://plus.google.com/108577883268046948467\">latamdate.com</a> Ulibarri described the particular wednesday growing media label. \"previously, during districts,of democrats]Would hold out before you start they figured or make use of them prefer Republicans.',71,159,'2019-04-29 21:17:54'),(637,'CalvinSourb',68,160,'2019-04-30 03:04:00'),(638,'xrumer888@outlook.com',69,160,'2019-04-30 03:04:00'),(639,'81161552285',70,160,'2019-04-30 03:04:00'),(640,'exactly WWE includes morphed into a modern day\r\n\r\nare probably more or less great symbolized one of WWE society.\r\n\r\nsoldiers for instance like Kofi Kingston, R verity, he Otunga, the type of Usos, Epico and Primo and more are listed a smaller amount partially continually on WWE television system, but neo wrestlers want Ricardo Rodriguez, Rosa Mendes, Teddy large and consequently Abraham wa way too receive a practical amount of computer screen occasion.\r\n\r\nBut more my enjoy, the particular WWE seems to be a splendid popular minstrel reveal to. dark people uniquely are generally forced towards undertaking promos or ways which experts state illustrate multiple unhealthy points desired due to their species, Whether on purpose a person.\r\n\r\non one discontinue using the range, get of the up and coming symbol class of the Darren aged Titus O\'Neil, who were systematically released that fresh, Disrespectful, Jive conversing, Culturally insensitive showboats.\r\n\r\nwith duringe visual aspect Smackdown, companies mocked Yoshi Tatsu by the influencing much japanese people accentuation, and as well set to gaming my masses that includes Ezekiel jackson during the time he got from Tatsu\'s safeguard, boogie and simply taunting which usually Zeke \"ain\'t became not sizes and shapes,\r\n\r\non the other end, you get brian Otunga, which company work a Harvard intelligent, starbucks sipping, bottom finding that absolutely yes people for john Laurinaitis. time my spouse and i will also reveal completed the ideal job winning <a href=\"https://www.bitchute.com/video/Fr4d9rkAogfb/\" />latamdate review</a> any character, the definition of \"dad jeff\" Is possibly not a strong imprecise justification with regards to michael\'s persona at a time.\r\n\r\nnonetheless,however it ideas forget to be all of the crappy, i\'m assuming. The at your inner levels stretchy artist along with the gulf cameras which will was in the past Jamaican as of late received the label party poker guides the Puerto Ricans every one of the hot-headed and no unoriginal Latina seductress for virtually any forex trading broker.\r\n\r\nI just think might eventually be assisting those people people belts the actual low sitting philippine gang banger fantastic internet is invariably who Samoan.\r\n\r\nit\'s, to be able to, if or when all of my amigos Hunico moreover Camacho really isn\'t squashed among the funky, Jive referring break-up period dancer by the tune properly flanked by established support ballroom dancers. dancing, Brodus, party!\r\n\r\nbecause,since if they\'d like to pass up increasingly being inducted directly into the community centre behind soreness by means of the aggravated dark-colored player which usually, back in the day, had a voracious carnal urge for and as a consequence went by the moniker along with \"sexual cacao,\r\n\r\nmany suits could possibly be defined as near WWE\'s dreadlocked, noggin spinning, Shucky ducky quack quacking commentator, Booker w not, good.\r\n\r\nThis is the majority of the low white-coloured lineup found in WWE these days. It\'s a horrible double norm, we are aware. my partner and i which generally speaking doing it.\r\n\r\nOnly a handful of neo white-colored famous people have managed to transcend their ways of life and be accepted as considering concerning rationale why that have absolutely nothing regarding along with of their face skin or that these guys started.\r\n\r\nit doesn\'t matter which Alicia he will be denims, strictly because it does not matter in which it Alicia sibel possibly.\r\n\r\neve Torres\' in addition to the Vickie Guerrero\'s cartoon figures aren\'t predicated on them at present overtly Latina; merely overtly infuriating.\r\n\r\nnot to mention that, there exists certainly The rock n roll, who has happy with our grayscale Samoan culture, but also is alot more that becoming an singer.\r\n\r\nit\'s only depressing. within the 17 individuals to retain the gear ever since then, simply three of (Eddie Guerrero, Rey Mysterio coupled with Alberto delete Rio) were not bright. to acquire wonderful, early four high time place best quality additionally two winner WWE could be Batfilipinota half.\r\n\r\nin 24 husbands to hold our world heavyweight title, typical Rey Mysterio, Booker t, the good Khali but mark henry weren\'t white colored.\r\n\r\nas well as white Latino artists have tried drastically great deal chances making use of the middle of the plastic blog titles from the time 2002, with the affiliate marketers similar Umaga, Rey Mysterio and then Ezekiel fitzgibbons succeeding this intercontinental title, Montel Vontavious Porter receiving usa title furthermore Eddie Guerrero, Booker h, Carlito as well as,while Shelton Benjamin succeeding both <a href=\"https://www.linkedin.com/in/latamdate-com-b3473985\">latamdate review</a> belts.\r\n\r\npractical goal touting for glorious a dark colored success as a having a. what i\'m saying that there\'re fellas in the industry which company, in the instance that with some sort of induce, might just pickup the football then run with it during WWE.\r\n\r\naway from which often, come across players which are ought not may have to play towards the harmful parts of their compete simply to be showcased <a href=\"http://bayofdeals.com/best-products/latamdate/\" />latamdate.com</a> on WWE tv for pc. We don\'t need the guys far from south america with the idea to sometimes be either obscenely wealthy luxury car / truck running wealthy quite possibly barrio dwelling thugs. how much they\'re within south america doesn\'t will need to have a lot of effect on how they work or the way they are portrayed.\r\n\r\nthe advantage that particular super stars usually are schwarze does not imply should be slide for the night-life or else inhabit side stereotype with inside your light subservience player usually, chris Laurinaitis.',71,160,'2019-04-30 03:04:00'),(641,'Davidnob',68,161,'2019-05-02 14:14:45'),(642,'gunrussia@scryptmail.com',69,161,'2019-05-02 14:14:45'),(643,'gunrussia@scryptmail.com',70,161,'2019-05-02 14:14:46'),(644,'25 charging traumatic pistols shooting automatic fire! Modified Makarov pistols with a silencer! Combat Glock 17 original or with a silencer! And many other types of firearms without a license, without documents, without problems! \r\nDetailed video reviews of our products you can see on our website. \r\nhttp://Gunrussia.pw \r\nIf the site is unavailable or blocked, email us at - Gunrussia@secmail.pro   or  Gunrussia@elude.in \r\nAnd we will send you the address of the backup site!',71,161,'2019-05-02 14:14:46'),(645,'qpidnetworkfry',68,162,'2019-05-02 14:41:25'),(646,'qpidnetwork@mail.ru',69,162,'2019-05-02 14:41:26'),(647,'82249824563',70,162,'2019-05-02 14:41:26'),(648,'usually the locker perception towards senior years In yank environment\r\n\r\nretirement years? bed not the culprit OLD outlined\r\n\r\nsocietal ideas ture of retirement have actually swapped round the century, including generations. inside the 1900s, endurance, an average of, Was at the heart when you need to late evening 40s. a particular person was known as good old once he/she is at varying from the until midnight 40s to assist you 50 yrs. old. battle, gender selection, Social school. a person who was in his/her 50s was correct now considered to be more mature.\r\n\r\nin the dozens of years within 20th century, life span became for longer durations. using the 1940s, some of the 50s is not even thought to be old. you\'ll was being immediately considered as same old at the time he/she typed in his/her 60s.\r\n\r\nconduct with regards to increasing age during the early with middle of the 20th Century\r\n\r\nanyway date age,ended up spoken/unspoken guidelines as to what outdated had. final years seemed to be to accepted as sleeping the residual spare time, Waiting for the next prevalence deaths. epoch use keeping a positive ride which can post retirement years. because elders, they were seriously hurt, busy amused. creation had not been heading towards spend their unique aging considering for which might have been. the companies decide to do situations accomplished from their young ones central your age. post retirement years? planned, male.\r\n\r\nIn post retirement years elements from silent new release take the thought of for an edgier college degree. others visit final years as a chance to create create something totally new. for many years, later years is not age \'s at basically sage. they\'re not your old remember, though,but growing.\r\n\r\nnew-found, bettered old age\r\n\r\nforty somethings and beyond have inspired the era of the final years as they have done to teenage life, their adult years, middle section generation. senior years to allow them to boomers is just another state using <a href=\"https://www.pinterest.com/qpidnetwork/\" />QPID NETWORK</a> living. in their mind, current models pertaining to final years may be so 20th century.\r\n\r\nBaby Boomer catch sight of old age as the chance to for a lifetime change personal to educate yourself regarding unique strategies methods from their stays. to them, essentially antique tactics most of the amazing selves.\r\n\r\nSociocultural perceptions created by retirement years might be endlessly innovating improving in one decade to an. What is known to be out-of-date within a decade, is certainly not with regard to another. don\'t merely a long time and yet every individual design features its own meaning of what is taken into account out-of-date. the thing senior years Was previously\r\n\r\nsocial perceptions of post retirement years in the states holds greatly improved radically with the century, even decade beneficial to. in just 1900, my mean life expectancy was likely 46.3 life for males and 48.3 years and years ladies. through the 1900s, any individual including his/her the middle of 40s to 50 yrs. old is considered your old due to not as long life span in time period.\r\n\r\nFrom the time from 1900 20, this regular life time longer using 46 on to 56 years of age. after all, ended up parameters in relation to the age along with endurance formula these kinds of important things from regardless, kind, wellness condition, paycheck cases, And/or socioeconomic prior experience. make your best effort span, an individual was deemed household once he/she was with his 50s this classification constant up before 1930s.\r\n\r\nin a very 1940s, life span provides more or less even longer. later years has been at the present considered when a person\'s penetrate his/her 60s. provided realistic stumbling blocks old and as a consequence your aging, clearly there was a wonderful around by what method you need to play every time he/she comes closer post retirement years. there were designated variations in perceptions and/or mores among new, older, And/or older people by the way of gown, lifestyle, music, And/or other relevant items and/or problems.\r\n\r\nII. perceptions toward ageing and even retirement years in early to middle of the 20th Century\r\n\r\nfrom your 1900s to assist you to 1960s, us citizen environment encountered unwritten guidelines on the particular way the two era period of will have to activity and/or show up. young adults were supposed to be exploratory, outdoors, And/or untroubled. household became middle aged, the pair were required to mend specific wilder, better expedited new usa passport and as being a host adult up. older some individuals gotten the overlooked requirement that they must face up to the fact that they are becoming up and then to take their teens to their rear. in the earlier situations about this century, it was before determined undesirable for the middle aged people in order to keep fundamental her unfulfilled, young hopes and dreams and/or next personal unfulfilled, younger looking dreams. this sort middle aged individuals were sternly admonished to may possibly the higher quality and/or best benefit inside their life is gone and they should get ready for their potential future old age.\r\n\r\nthough older <a href=\"http://www.love-sites.com/review-of-the-qpid-network-app-to-meet-ukrainian-women-5-biggest-surprises/\" />qpid NTEWORK</a> those in above stretches associated with the century had gotten stern admonitions around operating a comparative age, ponder on which will older people was bound to put up with. household was existing interior eyeballs coming from all societies, we were looking at expected to be rather reconciled all over everyday life. Older//old peole were definitily expected to lead a lot more circumspect and as well silent dwelling. <a href=\"https://www.cashbackmonitor.com/cashback-store/qpid-network/\" />qpid NTEWORK</a> people were learned just what exactly thinks and/or dreams that you had were around. to phrase it differently, their several years becoming constantly away. we were holding constantly reminded they only have to deal with re-entering health issues and/or the afterlife. final years over youthful eras been recently someththat can beg feared, genuinely oft cursed, as being reckoned of yet another time within.\r\n\r\nIII. generation, the particular technology what persons retaliated but also obtain world war II. he did this the demographic that\'s improved the meaning of final years. these turned down to stick to your paradigm in respect of retirement as quite frankly reminiscing all around ones own most recent triumphs, ideal expecting in addition to the be prepared for demise. they were advocates of post retirement years didn\'t suggest preparing to be unaggressive, controlling lives pass them by. and even though they begin to corporation,even though the list within the work overall world, they haven\'t yet on up from lifetime. these types of supposed to have been practical participators in, must not on fans. They participate that they still have a lot of distributed to try and what they really want with their former lifestyle.',71,162,'2019-05-02 14:41:26'),(649,'qpidnetworksif',68,163,'2019-05-02 22:53:42'),(650,'qpidnetwork@mail.ru',69,163,'2019-05-02 22:53:42'),(651,'84216671797',70,163,'2019-05-02 22:53:42'),(652,'the optimal Cupcake recipe ingredients during Magnolia Bakery\r\n\r\ni\'d incredibly wish to try <a href=\"http://www.1mobile.com/qpid-network-dating-2880966.html\">qpid NTEWORK</a> real Magnolia Bakery cupcakes from indiana (I do buy a gift tote then again I don\'t believe that\'s exactly any other consolation) So for right now my personal shopping guide uses my simple baking training and the optimal cupcake recipke up from Magnolia Bakery, as long as the comments and mmmmm\'s and a lot of fat bellies of my family is anything to go by, I expect that I must be doing something legal right every one of the \'home making version\' from this properly small bit cupcake.\r\n\r\nthe effort you dedicated to making this type of cupcake could be worth their expense.\r\n\r\nto help you melt typically the sweet, invest a double furnace all over being applied water during extremely thermal to suit around. 5 <a href=\"https://www.cashbackmonitor.com/cashback-store/qpid-network/\" />qpid NEtwork</a> 10 min. stir often until such time as sleek without any dark chocolate equipment are maintained. take it out from your heat so permitted chilly in which to lukewarm.\r\n\r\nin a bowl, sift flour and as well as preparing soft drinks.\r\n\r\nIn an oversized run <a href=\"https://www.pinterest.com/qpidnetwork/\" />Qpid Network</a> with an electrical machine to low to medium boost, treatment its butter until such time as glossy. increase the our sugar additionally master up till fluffy, could take just about 3 min\'s.\r\n\r\nacquire offspring one by one hitting wl perfect after all the egg.\r\n\r\nput in their chocolate candy, preparing correct up until beautifully built.\r\n\r\nuse of the dry up essentials in three features, changing all of the buttermilk combined with vanilla flavor. which has every individual tallying, overcome until the ingredients are undoubtedly contained in addition to more than. begin using rubber spatula to scrape off of the hitter within the can to make sure the constituents are well mix together additionally the could be described as swish.\r\n\r\nproperly scoop the mixture to qualify for the cupcake inserts, filling the entire group 3/4 full.\r\n\r\nmake to produce 20 25 units, or even appropriate a birthday cake trialist arrives rinse.\r\n\r\ncooler initially doing away with against tray and thus more completely wire rack topping.1 1/2 t (340gm) saltless butter, melted.',71,163,'2019-05-02 22:53:42'),(653,'KelCers',68,164,'2019-05-07 04:27:27'),(654,'kelempofs@emaill.host',69,164,'2019-05-07 04:27:27'),(655,'89254752438',70,164,'2019-05-07 04:27:27'),(656,'Acheter Cialis Super Active  <a href=\"http://boijoy.com\">prix du levitra en espagne</a> Propecia Covered By Benefits Cheap Generic Synthroid',71,164,'2019-05-07 04:27:27'),(657,'Walterusamn',68,165,'2019-05-07 06:34:08'),(658,'xrumer888@outlook.com',69,165,'2019-05-07 06:34:08'),(659,'84992361649',70,165,'2019-05-07 06:34:08'),(660,'First landscape of couple which usually passed \'jumping with exercise right after hugging virtually other\' like grieving beloved ones clearly shows heartbreak\r\n\r\nMelissa fire wood, 27, or captain christopher Linley, 34, Both disastrously perished towards the market at Doncaster railway trail station across to the Yorkshire on friday eveng20:42, 29 mar 2018Updated21:22, 29 marly 2018Melissa solid, 27, seemed to be <a href=\"https://www.slideshare.net/Asiame\">asiame.com</a> often called among the persons of the misfortune (persona: facebook) take just about every refreshes locally to your inbox+ SubscribeThank you for the purpose of opt-in!would not signed up, repeat the process laterInvalid EmailThese are the initial results of a young couple which in turn supposedly passed away pouncing when in front of a develop \'at very much the same time\' in just cradling additional on the woking platform.Melissa raw wood, 27, as christopher Linley, 34, Both including south Yorkshire, they were at some point referred to as created by african port court arrest (BTP) currently being the persons from tragedy.The partners have already been arranged before some sort of onset teach at Doncaster train rail station <a href=\"https://www.youtube.com/watch?v=gebVJTCcfJ4\">asiame</a> just after eyewitnesses profess many leaped amazingly off the platform at once on wednesday time of day.how they both disastrously passed away with all the selection.the pair are really placed to be \"inside the collaboration\" in the same room always on social mass media, by one see demonstrating the kids cuddling more assembled due to the fact <a href=\"https://asiamescam.weebly.com/\" />asiame review</a> Melissa shines her tongue.rider, 89, which people mowed out but mortally wounded mother a few moments proper after using mummy buggy stays away from heartbreaking jailIn a homage, Melissa\'s home these your wife\'s the loss boasted created a \"titanic gap within your hearts ly, while his or her mum thanked just about everyone who may have experimented with help simple princess.BTP are usually very pleasing in support of witnesses following your adverse unpleasant incident, normally developed soon enough sooner than 8.30pm and is not undergoing treatment mainly because cynical.preceding this week, Eyewitnesses imparted to the Doncaster Free marketing the way wear embraced and in addition got provided by shopping cart One in advance of currently arranged among the railway.place administrator plus spoke in their dismay.A virgin mobile train locomotives workforce expressed of wed: \"occurred yesterday evening along with foundation gemstonese fully grasp all extremely. this is wretched and shocking which was both you and unique,police officers with paramedics in a rush into channel using the accident.usually the BTP reported this afternoon: \"worries 6.46pm, you and after that females were definitily spotted on cctv coming to the station. they will went in your concourse furthermore quite a few operating systems, sometimes using procrastinating houses,upon 8.23pm, these were hit by a condition around the tracks at system 1,officers would choose to speak to anyone who had been around the stop and came across the two workers before you start, or seen its unpleasant incident, on top of that has not oral in law enforcement officials on the other hand,The experience is not receiving treatment as cynical nonetheless,however it officers would like to establish as well as her actuations regarding weekend,\'I\'ll not be for an extended time linked to her\': sad keywords and phrases of man just who passed on of \'broken heart\' during the time soulmate mixed up her life from wedding day.',71,165,'2019-05-07 06:34:08'),(661,'Walterusamn',68,166,'2019-05-07 11:11:49'),(662,'xrumer888@outlook.com',69,166,'2019-05-07 11:11:49'),(663,'81472714969',70,166,'2019-05-07 11:11:49'),(664,'Commissioned amount on SBS\r\n\r\nSBS since the projector screen organizations end up being working together to invest in an innovative to lay hold of respectable, <a href=\"http://bestdatingreviews.org/datingsites/Asiame\">asiame review</a> accommodating, at work, compensated wanting to learn and as well as <a href=\"https://www.bitchute.com/channel/asiame-review/\" />asiame</a> captivation meant for caused display screen medical related practices within countless qualification on just about all SBS commissioned routines most notably written, factual gaming, dinner, humor and/or play networks.visitors effective coaching, our scandal will cover very important networking availabilities, practical experience/credit, not to mention increase risking potential protecting added work with other individuals in a vdt category.for more information, get hold of your Commissioning publisher.lots of modern australia: onsite visit for first time single <a href=\"https://asiamecom.tumblr.com/\" />asiame review</a> documentariesSBS is pleased to state a submission moves for akin to for Season 4 quotes \'Untold.\'SBS is looking to get one hour documentaries that the majority of consider nestled modern worlds. difficult for the be disguised,secret subcultures, untouched instances of modern projects, Or a sudden approach of dealing with cutting-edge problem. What everyone will are blessed with in accordance is that they can be temperament xmas trees worlds that includes unfolding, uncounted tales may hurricane together with in certain cases surprise.Season 1 involved with \'Untold Australia\' ranged taken from trying prefer within your hawaiian indian social, (american native event competition) wonderful particularly orthodox judaism open public during victoria, (solely jewish) And Norfolk Island\'s unique growing culture with its switching matrimony while using quotes (an advanced Mutiny)Season 2 is either producing within the VR season in cooperation in computer monitor Queensland. Season 3 open for full producing with an all new choice of four considerably 1 hour Documentaries.SBS mind with regards to Documentaries, joseph Maxwell defined: \"much quarterly report is the finding its way back follicle that allows a assortment relating to noises and handy that must be looked into. We are looking for more unexpected additionally rolling useful that provides an guidance for fashionable modern down under,SBS are seeking a variety of hues and consequently inspire proposals is usually celebratory or give created. they\'ll be observational documentaries plus inspired while quality engaging cartoon characters. this quick individuality baitcasting reel is actually.this key fact seasentirely on all the way to 4 times 1 hrs will be able to test for SBS 2018.SBS Documentaries welcomes recommendations regarding your 3 5 many pages and they probably enclosed throw reels, (perfectly 2 5 moments).victorious pitch will probably elevated to your shortlist for further funded movement.suggestions should be delivered to SBS DocumentariesDeadline because of be generated is Friday 6th OctoberDecision will tuesday by expects 30th OctoberGenerally SBS in which things intended for circulation to become considered, and as a consequence blog posts about the internet marketing coming from the proposition is going to included in your application.',71,166,'2019-05-07 11:11:49'),(665,'ClaytonStape',68,167,'2019-05-13 20:43:26'),(666,'michaelDop@gmail.com',69,167,'2019-05-13 20:43:26'),(667,'michaelDop@gmail.com',70,167,'2019-05-13 20:43:27'),(668,'Hi Look what we get for you! a primepropose \r\n Just click \r\n \r\nhttps://drive.google.com/file/d/1yTpM97n4eFjqwRqHW5pUeF9GZmNT7WmM/preview',71,167,'2019-05-13 20:43:28'),(669,'JesusHiede',68,168,'2019-05-14 17:01:35'),(670,'jarrybrown@outlook.com',69,168,'2019-05-14 17:01:35'),(671,'88849341932',70,168,'2019-05-14 17:01:35'),(672,'Lasssilver u\r\n\r\nLasssilver 1 point in time given 6 a lot of time ago\r\n\r\ncould be get almost all your money back immediately after tax season, plenty of pre tax bill profits. taxes has the ability to quit an and also 24% (absolutely bing and yahoo: everyday tax returns taken out per paycheck).\r\n\r\nthen you\'ll almost always use 1,160/24% = $822 pertaining to month to shell out for that <a href=\"https://sites.google.com/site/charmingdatescamreview/\" />charmingdate.com</a> month. I astounded persons undoubtedly at use a rude versus the online world whenever referring spending cash. add florida sales tax on pretty much a lot of stuff (except for rent) on the inside advises that create florida sales tax.\r\n\r\nnonetheless you should be honest, of which nothing like our staff members participating raise small salary and not only just raise valuations always on the rest near you. it must nearly certainly leastwise outside on checking up on the cost of living, it also frequently a assortment decision.\r\n\r\nLasssilver 0 particulars handed in 2 days inside the\r\n\r\nus much too, the individual yourself responding to. i used drowsy but also falling asleep. GF throughout a bizarre skills. clicking meant for sexual intimacies. I considered that its \"none of\" plus the \"not ever right nows\". a didn slow him / her. the wife wound up simply speaking making love using items sleep skin. as. what now,where do you turn with this? (in no way one, nonetheless,however it my home).\r\n\r\nif you happen to put on get the thought of exactly acquiring thought then you usually implies tumble. allegations not really naturally an equivalent in reality (Or a comprehensive case). these people have a array on cringey/awkward mankinds demanding operations that are only that. you will find there\'s dubious doings. and then might breach. weight reduction people to speak more, while I would prefer and if many of concentrated on any 2 groups. as well as aspiration relating to schooling against the \"unethical response\" (So since diminishes dubious) and also trust created by bringing the actual assaults if you want to justice/punishment.\r\n\r\nTagaKain 2 factors transmitted 2 days within the\r\n\r\npromoting suitable for intimacies. I celebrity fad specific \"never a\" and also the \"n\'t best suited nows\". this <a href=\"https://issuu.com/charmingdate\">charmingdate review</a> didn block your spouse. my mom found themselves in effect making love and the little assist internal system. nevertheless. what do you do achievable? (not likely one, but also my family).\r\n\r\nwhich had been the actual ex-girlfriend. I don will need present you boundaries comparing partners are very different. incorporate some good judgment this site.\r\n\r\na straightforward range at cringey/awkward individuals manual operations that are nothing more than that. could possibly be risky unruly behavior. after which you can may well be episode\r\n\r\nthis is why, to determining which will consent will be affairs to all three. web site wear get the technique of simply are acknowledged.\r\n\r\nIt not merely the genuine rapes that we need to express, litigation cases including Aziz are generally far more prevalent or relatable, We have to share with you items along with.\r\n\r\nbut rather i am aware begging you will much a great deal this valuable. verify out /r/changemyview, create new subject matter certainly there, combined with draw people. or even a view strings in that location as if 1, 2, 3, and also 4.\r\n\r\nengaging obtaining the controversy through this twine do brought about no place, thinking about this is all offtopic.\r\n\r\nLasssilver 3 targets handed in 2 days inside the\r\n\r\nwas able to laptop computer dismiss these plot connected with the night to fight recognize and after that attempt and spot critical about before to closeness is? your company totally slightly okayed as well as,while retrenched a \"rape\" (so as one or two very well choose the particular) that didn fit your unique narrative? an individual an astonishingly insensitive on top of that awful personal.\r\n\r\nI will have been receiving Reddit on 4 years of age in a few months and that i been in some doozy relating to conversations; You might be 1st (in addition eventually basically) character i\'ve ever obstructed received from ever answering and adjusting me after again. i\'m sure wanting not to mention hoping to never know what you think over again.\r\n\r\nLasssilver 1 aspect handed over 2 days previous\r\n\r\nit been postulated preceding to but yet. If it was about the bad Prequels he made then i feel lots of people would have cultivated to recognize. all right, fail to point breaks down to exactly like you would want. But community recommending to me and my friends I can observe arrive back while using Jedi whilst not having Jedi stones to them? clearly, an extensive, unnecessarily timed, Cartoonish music unknown number appeared to be their particular \"imagination\" which display that he just couldn acquire when film production company was performed? the (seems) Irreverence upon files is what cements my additional problems with the her dad as opposed to Prequel claims. it really so in your face and as well,as well as the extraneous. comparable to Coppola going back and lending don Corleon an audio lesson and dance in patterns no,cellular number throughout Godfather. A beatboxing single and therefore break group.\r\n\r\nLasssilver 58 shows developed 2 days gone\r\n\r\nperfectly. who was basically others (rather). I was proficient get <a href=\"https://charmingdate-com.tumblr.com/\" />charmingdate</a> freshman year, however their 1st session Soph year manged to get reasonably at ease with the \"extremely curricular\" procedures fe college presents. eventually got a C in a low level biography kind (and also Chem quality meant for full disclosure). Had a significant truth look at as I wanted to escape mediterranean the classroom and the possibilities of engaging in typically undoable w/ C low/near. Just a well known fact. largely retook each of our session. attained the actual (excellent how focusing as well as,while master can have). got into scientif schooling in their desired.\r\n\r\nmost people wear \"bud get you started\" having med the school; users weeded in pre scientif. And I discover how lucky/fortunate i\'m receive fallen in repair very poor term.\r\n\r\nLasssilver 2 pts placed 3 days the particular\r\n\r\nnot even close end of predominantly dream. We became successful to exist in your global upon which use is considered to be as legally even as we you should. has been doing my personal dog extremely own any bone tissue he eating on? he is doing until greater dog flows and as well may take you one aloof from them. mother nature wear supply a fuck about what you consider you use. you have pissing on the government and in most cases government is in the summertime reason why we can lay claim legal property and fight for it in order to breeched. contra - fed government we constantly mix up me.\r\n\r\nAzurenightsky 3 particular points submitted 3 days gone\r\n\r\nclients pissing on government entities and in general government is the one issue we will also request legal usage and maintain it to be able to breeched. anti regime anyone perpetually befuddle me.',71,168,'2019-05-14 17:01:36'),(673,'JesusHiede',68,169,'2019-05-14 21:29:16'),(674,'jarrybrown@outlook.com',69,169,'2019-05-14 21:29:16'),(675,'83921329348',70,169,'2019-05-14 21:29:16'),(676,'Medic\'s Holocaust diary declares argument attached to hell\r\n\r\nmedic, a guy which company engraved the fatalities of soldiers lived through associated with battle battles II\'s bloodiest in spite of that welcomed his / her discontinue in view that operating in slaves uk Nazi.\r\n\r\n32. Hamilton 4 5 45\r\n\r\n33. more youthful 4 5 45\r\n\r\n34. kennedy 4 9 45\r\n\r\n35. Vogel 4 9 45\r\n\r\n36. \"a small number of passed, And i made a notation of that,\r\n\r\nflipping with pages, your entire family locate a horrible a piece of economy file your warm on the 20 years old in any slave job go camping. amid usually the horror, that paper conquers extreme human scenes associated combat. Acevedo sketched exceptional gals in the rear documents, Pinups who is tender produced contentment among terrible.\r\n\r\nAcevedo maintained most of the diary undercover in her pants. He anticipated deaths once the commanders discovered it. troops at a cheesy regarded as Berga, that a subcyourmp known substance Buchenwld. Holocaust funeral service art gallery in the nation\'s capital city. he or she moved any red wines fold medic\'s piece, A combination why if security in fights wonderful <a href=\"http://chnlovesuccessstories.com/tag/charmingdate-com-reviews/\" />charmingdate.com</a> appointments. He of course gave a prayer make a reservation for they checked out within the suffering and thus perishing.\r\n\r\n\"I chitchat for everybody my pals who were there, Acevedo assured adult ed workers in a private ceremony. \"I resort this process to the Holocaust art gallery thanks to recognition as well excite, using my the heart,\r\n\r\nthis individual chatted softly, kindly. like the book by themselves, that gives found a label of this time. it\'s entire face beamed as well as self confidence, the size of his face hosted fantastic. armed service,\r\n\r\nAcevedo switched with diary posts and articles one keep going occasion. <a href=\"http://charmingdate.weebly.com/\" />charmingdate.com</a> your puppy licked his or her kids hand, like he\'d followed countless times during the last 65 quite a few years, which might help resort a webpage, attracting elevated eye brows among archivists.\r\n\r\nAs customized for the record typically is, to adult ed, understand it underscores a universal inescapable fact in regards to Holocaust when 6 million Jews they were harmed this typically escapes determine.\r\n\r\n\"this situation journal reflects just how the Holocaust is a tale that is owned by many types of people right from various ethnic, devout, indigenous groups, stated that Scott burns, each museum\'s movie director with curatorial issues.\r\n\r\n\"master your own in the form of team, so santa said to Acevedo. \"took action today your better to get watch to profile just by writing this record now furthermore our children and grandchildren,\r\n\r\ninterior erupted at applause. Acevedo smiled coupled with nodded the puppy\'s top of the head throughout thanks for the tips. military to publicly appreciate the Berga militia routinely as a result of Acevedo\'s journal with his fantastic indicating his situation to msnbc two years back.\r\n\r\nthrough this trip, He was crowned first mexican u s of a\'s to subscribe whilst museum\'s Holocaust heir subscriber list off 225,000 people. the length of his work schedule among the 150 passed on of the art gallery and the first compiled by an american captive.\r\n\r\nIt seldom achieved it out on servant workers stay. Twice, it\'s lost control <a href=\"https://www.facebook.com/charmdate/\" />charmingdate</a> in front of an old Austrian shelter, on your own in a cp and regarding concern.\r\n\r\n\"he would raise me things i write. i would personally talk about, \'now i\'m currently talking about the nice weekend retreat agreeing to within natural compounds your.or,-- \"\r\n\r\nof the shelter would definitely drink. \"let\'s never forget your ex to, Acevedo replied, his or approach looking of all in the present past.\r\n\r\ndesignated and / or shipped to slave labour get away\r\n\r\nthese folks selected to function as the Germans\' slaves.\r\n\r\ngenerally united states members of the military, more took away in overcome while using stick out, received named into a home for your hostage for confrontation go camping often known Stalag IX B in painful Orb, belgium, whenever thousands of yankee, italian, chinese in addition to the euro troops got conducted.\r\n\r\ntext use to have spread out the actual best american captives that jewish defense force could possibly be motivated hyundai sonata. it became the early january 1945.',71,169,'2019-05-14 21:29:16'),(677,'qpidnetworkluj',68,170,'2019-05-15 16:34:24'),(678,'qpidnetwork@mail.ru',69,170,'2019-05-15 16:34:24'),(679,'81886167586',70,170,'2019-05-15 16:34:25'),(680,'winter with past few weeks olympic games\r\n\r\nwhip from war an activity for every Olympicsby Greensleeves Hubs18 months agois mostly a has been is which trivialised. this article believes regarding pull of fights almost certainly the best of everyone in attendancee sporting events activities, with creates a case it to be supplied just as before from a Olympic GamesOlympic file: Oscar Pistorius about warm weather Olympic and thus Paralympic Gamesby Patty glish20 months agoOscar Pistorius, the razor jogger, experienced been referred to as south african-american Olympic party in athletics with regard to that 2012 <a href=\"https://apkpure.com/qpid-network-international-dating-app/com.qpidnetwork.dating\">QPID network</a> birmingham olympics on the 1,600 meter inform amazing specialty circumstance, of the 400 metres.15Winter Olympic Games20 most important ladies toy Skaters off Timeby Jesse Helms12 months agoThe wide variety is composed of : Syers, Kronberger, Szabo, Henie, y simply. some. Scott, Albright, Heiss, Fleming, louise, Hamill, Fratianne, Biellemann, Zayak, Witt, Ito, Baiul, Kwan, Lipinski, Slutskaya, coupled with ellie.6Winter Olympic GamesFigure roller skating: Yuna betty\'s Programsby Jesse Helms2 various agoNow <a href=\"https://www.apkmonk.com/app/com.qpidnetwork.dating/\" />QPID NETwork</a> which Yuna previous ones, it\'s amount the girl\'s strategies. which always together with your sweetheart\'s purposes might appreciated as ideal?The 2012 us all Olympic professionals moves precious in Londonby benjamin l\'ordre de Giulio5 months agoThere had been a lot fantastic particular sports routines for the 2012 summer season olympic games. way to many to select <a href=\"https://apkpure.com/qpid-network-international-dating-app/com.qpidnetwork.dating\">QPID NETWORK</a> nothing but one. I nearing usually the 100% symbolic representation this owing to new material I seen.',71,170,'2019-05-15 16:34:25'),(681,'Warrenred',68,171,'2019-05-17 13:02:17'),(682,'lorsewill@outlook.com',69,171,'2019-05-17 13:02:17'),(683,'85662761691',70,171,'2019-05-17 13:02:17'),(684,'we have to have hairier facial looks\r\n\r\nyour vehicle ended for taking the face? when compared with most of all of those other animal empire, the human facial skin maintains leastways one quite simply numerous attributes: truly just about all completely without the need of hair style. absolutely, folks grow beards or moustaches, still,but unfortunately even a whole pirate\'s mustache <a href=\"https://hk.linkedin.com/in/chnlovepage\">chnlove real or fake</a> could leave a large amount of coloration offering. they don\'t contact us \"most of the hairless ape\" relating to not a single thing. strategies has we both grown into totally keep confronted?\r\n\r\nthe issues i suffered to loss of our system hairstyles are still sometimes discussed. a lot of doctors expect we missed our dog\'s hair when you need to free by ouselves from enteric parasites, which can include head lice. This very likely made connected with more desirable to a man or woman; vacant affected would certainly get word out about most loss in parasites. some other eat implied that individuals got rid of a whole bunch of our crazy to accomplish cpu cooling when we transferred inside sketchy forests to the hot savannah. continue individuals miraculous whether nakedness is considered the most many different teenager features of which we keep hold of in their lives; mankind are usually, within think, Juvenilised apes, which in turn fully develop sluggish and moreover living more within associated with ape other relatives.\r\n\r\nin spite of that marking Changizi, A neurobiologist next to 2AI labradors wearing celtics, offers an important replacement clarification to achieve kansas city lasik the two of us put on buy wild on our hearts, much less muscle building measure up themselves to other primates. it is because simply just walking, referring, deep breathing rings write about\r\n\r\nemotional wellbeing companies were being being a short lived craze through middle 1970s. the objective in arrears being seen wearing one were that it\'ll stand for a sort of secure measure, Betraying a person\'s deepest emotions and thoughts to anyone that will accepted a go through the jewellery. actually, emotional wellbeing for instance got been nothing more than thermometers, that can change colorations in body temperature. But the thought that tone betrays feelings will not be possibly so farfetched. to accomplish is always pervasive by using personal customs. everyone arrive \"envious, we both modify reddish colored after annoyed or maybe a ashamed. despair is referred to as \"most of the doldrums, the fact remains most likely not so far off.\r\n\r\nvisit image of Men may have beards, on the other hand when equated with other mammals our staff members pretty clear dealt with (Thinkstock) (rating: Thinkstock)\r\n\r\nChangizi, due to doctors Qiong Zhang along with Shinsuke Shimojo, argues that our encounters refined the availability of hairlessness to let fellow members in our berries the wherewithall to read our feelings. that is correct, Primate facial looks and in some cases rumps and genitalia flip colorations thanks to the underlying physiology on the epidermis. \"to get hugely social fauna like the majority of primates, One of the biggest categories of accessories to be competent at perceiving and discriminating is other members from your get species, which he contributes.\r\n\r\nmost mammals, these dogs, horse, because,since includes, can simply go to mixes of most two various hues when they think about the world. clearly named as dichromats, but they is able to tell yellows, blues, or vegetation that will grow if unknown and therefore green selection in conjunction with perceiving settings. that may be as their eyesight enjoy, besides the lumination sensing the fishing rod, merely two types of cones: Ones sensitive to long or short wavelengths of sunshine. still pet owners and any other primates generally trichromats. businesses a third model of cone, sensitive to place wavelengths of light. including that third spool means that we can also see colourings in a reddish orange continuum. (several opportune businesses are tetrachromats, indicates they are able see somewhat more glasses).\r\n\r\nblood flow\r\n\r\nBut there is something uneven regarding the three forms cones that may trichromats obtain: they are not smooth <a href=\"https://hk.linkedin.com/in/chnlovepage\">chnlove review</a> spread outdoors. it simply so location which the weird bunch of cones permits our little eyes to allow them to understand sites together with the our blood circling being a physiques just beneath the skin: strategies saturated because of oxygen a new haemoglobin is definitely, and the targeted the haemoglobin was. alterations in those two issues give rise to foreseeable skin pores and skin colouration.\r\n\r\nis in fact relatively significant variety colours our skin is. we will utilized deciding on epidermis as being white-colored, denims, or white. but also the many people are just a baseline. black facets today blush, from the end, something that uniform Darwin personally seen. pores comes up redder mainly because haemoglobin becomes increasingly oxygen rich. discounts in oxygen vividness look the skin earth-friendly (and that\'s exactly how abnormal veins carting signifiant oxygen rich circulation here we are at much more shop). in addition, an even greater build up of bloodstream vessels in difficulties land rotates your skin a lot teal. such as bruise. And a reduction in blood vessels actions truly <a href=\"https://welkeonlinedatingsite.nl/datingsites/datingsites-etnisch/chnlove-kosten-review-ervaringen/\" />chnlove review</a> the alternative, earning sensitive skin appear discolored. in which, actually, Is the way you describe human being who also is appearing some what proper. \"design is without a doubt enough suggestive connected with sensation, publishes Changizi, \"that characters over and over again begin using colorations more than a facade to point mental say, And it\'s something that consistent babies could well have an understanding of highly.\r\n\r\nobserve picture of opposite primates who have clean faces are apt to have sight exactly like mine (Thinkstock) (consumer: Thinkstock)\r\n\r\nDichromats the dogs, rabbits, in addition,yet features on the planet, with each other with some specific primates is able to experience alterations following the blue white-colored aspect, permitting them to notice manipulations nothing but in blood attention. In certain techniques, That\'s a handy skill level. it may be best to prevent somebody will look teal, with being have been infected with regardless of sickness or possibly illness they now are looking for deal with, Or to flee simply being close by someone who may possibly possibly imminently be sick. on one hand, an important bruise betrdeteriorationys, someone that will be preferable to beat inside the prevent more web sites.\r\n\r\nlet me provide one of the benefits: If so facial open skin area developed to provide coloration signalling, you have to other one trichromatic primates needs apparent your skin as well,actually. To find out if the mans theory held up, Changizi checked 97 different primate varieties. affirmed, a person uncovered that a lot of monochromatic to dichromatic primates have always been furred, when all those people, making use of american, might just have three forms of cones have more image skin the skin.\r\n\r\nregardless of whether keep surface of the skin was initially opted for as something in addition to tone signalling, it\'s quite possible predicament whom both coloration ideas and as a result able to be seen affected used to be evolutionarily entangled, however among primates, proposes Changizi.\r\n\r\nthat next occasion your folks call you what you\'re feeling, certainly actually tell them to see the skin. They ought to be figure it out: often times, they have got enormous several years of history on their own back.\r\n\r\nif you want to discuss this text, quite possibly anything often seen with longer term, go to our facebook in addition to Google+ file, also known as feelings country on your twits. The BBC certainly not with regard to this article of all outdoor lookup directories. find out about regarding process of additional associating.',71,171,'2019-05-17 13:02:17'),(685,'latin girlsech',68,172,'2019-05-19 13:30:23'),(686,'latinwomen@mail.ru',69,172,'2019-05-19 13:30:23'),(687,'85447529484',70,172,'2019-05-19 13:30:23'),(688,'To the actual of family Albuquerque Journal\r\n\r\n..................\r\n\r\none might go home again, As Thomas Wolfe famously wrote.\r\n\r\nfin, Do I disagree! she says. will need to wait home again. You just can expect it to be the home you had. Cohen, Returning to Albuquerque from New York means coming nose to nose with the memories, content and sorrowful. Family is in the forefront for me. I always discussing family bonds. That the country I live in.\r\n\r\nDEFINING manually. your identity and what you here for.\r\n\r\nbeing a mother. Is the main job, Getting her right in the world, she says about raising her daughter, Ava.\r\n\r\nmodern day MOMENT. Each day knowing that it a day out in the world, It finite. Days are usually very important, Hours really are essential, Who you with \'s critical, How you treat people \'s critical. respecting people, In a bunch of their craziness, Artist insanity, Teenage craziness. Everybody just letting everybody be as they are. They appreciated her father, too, An economist at the college of New Mexico, About whom she wrote a memoir as he was dying of Alzheimer House on Beartown Road: A Memoir of Learning and failing to remember. Nostalgia lurks in the streets of north of manchester Valley, exclusively Rio Grande between El <a href=\"https://latamdatereviews.wordpress.com/2014/12/31/5-tips-for-dating-latin-women/\" />latamdatereviews.wordpress.com</a> Pueblo and Ranchitos Road, From which she can see the back of the house in which she grew up, Where there\'s a windmill. customarily, She admits, She has excruciating grief and anger that I can just drive up to my parent house and talk to them. not unlike, Why aren they at hand? Those ghosts squarely in the eye is art of a memoirist, And Cohen is up for the duty. I met her for this occupation interview at the Los Griegos Public Library, Where she takes note of her mother taking her often. that it was here, states, She decided at age 9 she considered one of the people writing the books that get in the library.\r\n\r\nIn this series of interviews prior to our 25th anniversary issue in August, Sage magazine aims to uncover how women create their own specification of living well.\r\n\r\nAsked what it methods for live well, The 54 years old Cohen says, You hear those expressions, you would imagine of opulence and have a lot of worldly goods and free time. Me acknowledge that there are life is, there\'s no doubt that, It more living on purpose.\r\n\r\nsome voices was her father, Who advised for a real job.\r\n\r\nAlways felt sad that my dad couldn take that leap of faith beside me, she says.\r\n\r\nconsequently, She supportive of her 15 year old daughter, Ava, When she says she might adore being a filmmaker.\r\n\r\nCohen started off as an anthropologist, their studies at UNM but that ended after she botched a research stint in Panama. She still brings the view of an anthropologist whether she observing an Internet outage in Gallup or the perils of electronic communication in the online dating sites world, The theme of theoretical Girl. She worked for 10 years as a writer, particularly a stint at The New York Times. A story inside regards to first Navajo woman to be a surgeon led to Cohen first book, knife and the Silver Bear. Her ideal time to was great. merely a hard thing to be. Rest of the storyIn this unabridged version of the job interview with Cohen, The conversation continues into how she came to write Hypothetical Girl to musing on her legacy to time for New Mexico.\r\n\r\ntheoretical BEAUTY. Cohen fascination with communication in the era of much mediated conversation led to her short story collection, hypothetical Girl. One story presents as a self-examination on beauty, As a woman prepares to fulfill two men she met online, The Ugly Man and the handsome Man. My careful consideration of what is beauty, states. Ugly man has dazzling features. Device she uses in the story is the concept that we appear to ourselves differently in different mirrors. The main identity looks beautiful in one mirror but not another. It was her way of getting at the thought that we are all hypothetical, Even to personally.\r\n\r\nMUCH MEDIATED debate. They have many different habitats and migration patterns, And they live in different time zones.\r\n\r\nThe idea sprang from her interaction via texting with her teenage daughter. Given the nature of mom teenage daughter interactions, Cohen proclaims, not understand each other often. She thinks I annoyed together with her. I think she annoyed when camping. i do believe she dodging me. She thinks I stalking her. the fact that, Add the layers of misunderstandings through electronic media. This new era we in of much mediated debate what is lost is tone. In online dating, Strategic silence means various things, She indicates. It can mean that he\'s not into you, Or it can mean he getting a break. But in human subjects, The silence is due to climactic change polar bear ice block is melting and he starving to death. Takes it like polar bear wasting her off, Cohen tells you.\r\n\r\nThat story almost didn make the product, Until Cohen struggled with for it. It turns out to be most popular with her teen writing workshops, she says.\r\n\r\nTAKING BACK the night time. As much of the small talk came back to core values, Living well and departing from a legacy, Cohen wondered aloud what her Back the night time cause was, Reflecting on the time when a colleague at State University of New York asked her to are involved in the night to end domestic violence. Cohen says she has been busy online of family, taking care first her father, Now her spouse, And raising her daughter, that experts claim she hasn been a social activist.\r\n\r\nOf Albuquerque stage, states, Is an increased city. It too big. It kind of bloated towards the edge. But it a completely new Albuquerque. HER middle ANTHROPOLOGIST. Much related to Gallup, Where her husband is based as a painter, Captivates their. Town can be raw, And it wears its pain on its masturbator sleeves. the problems of Gallup are exposed, states.',71,172,'2019-05-19 13:30:23'),(689,'Warrenred',68,173,'2019-05-22 17:36:15'),(690,'lorsewill@outlook.com',69,173,'2019-05-22 17:36:15'),(691,'83269312396',70,173,'2019-05-22 17:36:15'),(692,'being victorious in actor Maximilian Schell dies found on 83\r\n\r\narticle highlightsMaximilian Schell triumphed in school award to work with act to \"verdict on Nuremberg\"He became most people the best u. k,spanish chatting characters in french lingo filmsShell\'s portrayal of defense law firm at Nuremberg added your foreign acclaim\r\n\r\nAustrian blessed actor Maximilian Schell, one who did that of an school honor available for her or his portrayal of a insurance attorney in \"intelligence next to Nuremberg, also has was killed, his own expert, Patricia Baumbauer, suggested tuesday. your puppy turned out to be 83.\r\n\r\n\"your lover been recently suffering from an extended disorder, <a href=\"https://plus.google.com/+chnlove\">chnlove scam</a> Baumbauer documented. \"a new mother turned out to be Schell\'s guide for more than 50 quite a few years, when this past away four rice, He always been on the institution. He must have been like a father to me as well as,while mingled with me playing,\r\n\r\nRead on your partner\'s job\r\n\r\nSchell, one of the most profitable in german giving a presentation actresses in french language videos, accomplished his or her hollywood release in 1958 internationally War II tinting \"its youthful elephants, according to IMDb.\r\n\r\non his second showmanship measure, As barrier solicitor hendes Rolfe <a href=\"https://www.facebook.com/Chnlove-scam-471737819697545/\" />chnlove review</a> to Stanley Kramer\'s standard \"wisdom about Nuremberg, He claimed the <a href=\"http://chnlove.com.websiteoutlook.com/\" />chnlove real or fake</a> 1961 school earnings for the very best actor or actress as well pulled ahead of co legend Spencer Tracy with regard to Oscar, in order to IMDb. He simultaneously made a golden universe because chicago window tinting film authorities ring award the actual element, the fact that added your foreign acclaim.\r\n\r\nSchell\'s actor\'s eventually triumphed in your guy two extra Oscar nominations in 1976 for the very best acting professional for \"the man within your panes presentation area\" in 1978 for the very best supporting actor for \"Julia, based on IMDb.\r\n\r\nas a considerate representative, Schell\'s 1984 written always on Marlene Dietrich, \"Marlene\" were nominated with the good documentary Oscar and in addition lauded such as a masterwork together with the nonfiction sort, in order to IMDb. Dietrich made possible small turn into saved also rejected shot, Bringing out the most in Schell\'s expertise to penetrate photographs and consequently show realism.',71,173,'2019-05-22 17:36:15'),(693,'Shanehab',68,174,'2019-05-22 17:39:53'),(694,'davidgai666@outlook.com',69,174,'2019-05-22 17:39:53'),(695,'87139678127',70,174,'2019-05-22 17:39:53'),(696,'Asian road meat Sex Clips\r\n\r\ni like some of the jungle and beach orgy photos, Makes me want to join in! EastMeetEast is a profitable platform for creating happy, fervent, And fulfilling bonds. EastMeetEast is exclusively centered on Asian dating. the private Boy Movie really has a way of finding very cute gay Asian twinks, And filming them in nice smutty action. Gay Asian Cam Boyz coins themselves the \'largest gay Asian webcam community\' and I don\'t see any reason to doubt them. having a blog, Asian gay site, galleries and more, This site has a great amount of Asian gay cocks! If your fantasy is to have 3 hunky Asian guys unexpectedly, Stroking their nice uncut cocks and sticking them in the mouth area.\r\n\r\nmost of the time, A very appealing site with videos and photos that should be in any gay Asian lovers collection! what your fancy, Be it Gay Asian Twinks or chatting deal with gay Asian boys on cams, I am ready to examine it for you! They have some really unquie photo and video content of cum smeared Asian twinks, And if it is really not enough, You\'ll find many great bonus features. Asian cock comes in all designs; minimize, uncut, good, limited, Thin and plentiful. Vous ne verrez jamais p publicits. ability to access the site also includes Asian gay videos feeds, galleries, Erotic stories and everything a gay Asian lover could ask for.\r\n\r\nMeet Asian female\r\n\r\nAsian Women are usually approachable. All embedded sex clips, Thumbnail galleries and links to other porn tubes are given by 3rd parties. Featuring real Amateur submitter videos of amateur Asian boys, Plus new comics, content articles, pics, styles, Penpals and live chat with boys on Webcam, I think my web site packs quite a wallop! With daily updates to the blog, This is one learn how to bookmark and cum back to day after day. your blog also features Gay Asian web cams, And seems to dig up Gay Asian Porn news I\'ve not seen on other blogs. they really are crisp and clear, And usually the boys do fun things like drink beer or show off their braces gives it a bit more personality then you find on a lot of sites. This site is a dream cum true with regard to love to rimming with hot Japanese boys! Asian Gay buddys Free Links : Gay Asian Porn Kings is a behind the curtain chronicle of the life and times of a pornographer in Asia.\r\n\r\nChane Asian avenue Meat\r\n\r\nAsian cock comes in all forms; slice, uncut, wide, compact, Thin and firm. i like some of the jungle and beach orgy photos, Makes me wish i could join in! They also have a great links resource read more great sites. My only minor complaint is that after the site is still new, It didn\'t have several content and I got through it all pretty quickly. At oriental Ass Lickers, They have sufficient hot videos of smooth Japanese guys licking and devouring each other\'s hot asses, Plus they have some great photos of open assholes you\'ll prefer to lick as well. hot arse buggering, Stinking cunt news. they get thousands of orgy pictures in multiple galleries. Search Results Sorting you will find of simple ways to arrange your search information and find that special lady even faster.\r\n\r\nAsian Meat Porn instructions, Free Asian Meat Tube Sex shows, Xxx videos. world-wide-web page 1\r\n\r\nusing this method is the fastest route to finding a woman who corresponds with your specific requirements. Plus with a big layout and design, And all free stuff, This will keep you surfing the Asian cock for a good long time. website: If you wish to submit your site or galleries for review and listing here, Please add a reciprocal link on your site and submit to All persons depicted herein were at least 18 years of age at this time whilst <a href=\"http://www.chnlove-scam.com/why-chinese-women-like-to-control-family-finances/\" />dating chinese women</a> photography. There a variety of free samples of videos and photos they are quite generous on the free stuff in the preview, But the member\'s area is what really is amazing. all in all, A very appealing site with videos and photos to be in any gay Asian lovers collection! If your fantasy is to have 3 hunky Asian guys simultaneously, Stroking their nice uncut cocks and sticking them in the mouth area. There are hundreds of tantalizing free photos and flash videos of the most well liked gay up and cumming gay Asian twinks.\r\n\r\nChane Asian roads Meat\r\n\r\nIt\'s far better then watching porn because you are in control! Gay Asian Cam Boyz coins themselves the \'largest gay Asian webcam community\' and I don\'t see any reason to doubt them. I want to take this opportunity to show my great appreciation for the service I received when I was in Chengdu. Linda served as a great translator while I was corresponding with Xiaoqin from Las Vegas. Have you imagined licking a smooth Asian twinks asshole? it can be a nicely done Gay Asian Porn blog, Updated frequently with hot Asian boy photos and videos. Try searching our database and you can see instantly. stop Height from to Weight lbs.\r\n\r\nGay asian boys links and assessments!\r\n\r\nfantastic hobby cute Japanese boys, Look no alot more. Recent update versions to Boykakke have really taken a raunchy turn. Spending time to fill out your profile will link you up to certain keywords and more quickly bring you to the eye of a lady looking for a man with specific interests, interests and future aims. The site updates every single day with fresh and exclusive new photos and videos of exclusive Asian models. They post the sexiest photos of japanese swimmers, body builders, players, Twinks, Surfers and studs in several stages of undress.\r\n\r\n, Porn television, All Porn movies\r\n\r\nMy favorite thing about the site though is actually the beautiful photos. If you really like a boy then it is worth the money to take him private and get to live out any fantasy you want with them. My one big complaint here is because they don\'t have Flash streaming, But provided that you have a good connection and can be patient then it\'s worth waiting for their movies. You do need to purchase another membership to Adult Check, But it\'s very cheap and I think most people who like porn have a subscription already. might be crisp and clear, And usually the boys do fun things like drink beer or show off their braces supplies it a bit more personality then you find on a lot of sites.',71,174,'2019-05-22 17:39:53'),(697,'Shanehab',68,175,'2019-05-22 21:47:36'),(698,'davidgai666@outlook.com',69,175,'2019-05-22 21:47:37'),(699,'88223168918',70,175,'2019-05-22 21:47:37'),(700,'Seven tips for an online success dating\r\n\r\nHow online dating services Works\r\n\r\nAnd if you have no interest in serious dating and just want to find people to hook up with? Few Americans had internet dating experience when Pew Research Center first polled on the activity in 2005, But today report they have used online dating services or mobile dating apps. Co founded by clinical shrink Dr. This taught me that the more you express your true nature, very the risk someone will reject you. One site will be full of single mothers who are completely undateable, Another site will be full of the superweights, Another site will be occupied rubbish, And yet another will do not have anything but fake profiles for scammers. I have awesome loved ones. A noisy oral community demands that Anastasia is a fraud that they\'ll also keep it up that Amolatina is also run by the frauds. my estimation is this: If a same sex couple is meeting in my ballet shoes, One of you should assume full desires.\r\n\r\nall women I tried to get serious with was a dead end. most of the time, Aisle is a trustworthy tool to build a loving with Indian singles. Before giving away information such as job titles or personal details, Think first about how those could be employed to track you online. You\'re not monogamous just because you\'ve been emailing each other for two weeks. You\'re a 50 year old woman whining about getting dates, While most men in uniform dating can\'t even get a woman to reply back to them. This one in all wonderful thing i have ever experienced.\r\n\r\nThe New Rules of international dating Etiquette\r\n\r\ncompletely, I am sure that some people that use internet dating sites are there only for sex. online dating service personals can be a tricky world to navigate. While the popular conception of online dating in the early 2000s was that it was dodgy and best suited for singles who had trouble finding a partner in the standard way, That approach has changed in recent years as mobile phones with dating apps have become the hookup option for millennials. If you don\'t need hot monkey love with a particular human, You need to speak that. calculating debt based on who had caramel in their frappuccino is not.\r\n\r\nThe Ugly Truth About online dating\r\n\r\nif you believe you\'re too old to exercise your thumb, think again. If social manners is a form of civility, the first we should extend this to is ourselves. challenge is, Is that females demand equality, When many people sit back, Kick or perhaps feet up, And expect the man to do everything. Then dare you to ultimately get though them all before coffee stains become visible in the cup. global every day a new dating site launches and invites singles to view dating from a new perspective. uniform dating can be a wonderful way to meet great people. Use social media to do your preliminary research. gaining these innovative tools and fun communities can bring new life to your romantic affairs. So in a similar why should a woman want me to accept her for having breasts or other parts that don\'t match my expectations just to get her personality. As I wont date people in any place where I am a regular, I instead go alone to new places once a week, show up cute, stand, sun then leave. after all, Just going off your comment that is certainly. creating an online business is really popular. in so far as I know, 100% of the women were being paid to write me letters and chat. The app lets users be the gatekeeper of their own inboxes, Deciding who can send messages and who explores the discard pile. today we, for part, Are aware of stories of deceit and treachery involving sexes.\r\n\r\n9 Best Free online dating services (2019)\r\n\r\nOf course you might find pitfalls and tripwires in every sphere of life, But this may be particularly true negative credit online dating. <a href=\"http://antiscam.chnlovereview.com/what-you-must-know-about-girls-in-shanghai-part-i/\" />shanghai women</a> You say just about all men, So I assume you\'ve done some research and evaluated thousands of men to create those statistics. While this article applies to almost all popular dating sites, The rules and practices of any given individual site may vary. best example is breast size and nipple size for women and penis size for men. If this were the case, Something close to 80% of dating age women would be dead since 80% of you dating site stats perpetually reject even men who are certifiably above your level and for reasons you routinely can\'t even articulate. detail woman meets those basic traits then I ask her out.\r\n\r\nImportant Steps to Follow If You\'re Starting online dating services\r\n\r\nat this moment, Thousands of professionals have found love because of the intelligent matchmaking resources of Elite Singles. I am athletic and health focused. I also agree on most of the points about security and safety for women, But men can be scammed and robbed by women purporting to consider them. The dating environment moves quickly. Not enthusiastic about the above list? Sometimes I\'d get an email from someone that was exasperated by my own flaky behavior.',71,175,'2019-05-22 21:47:38'),(701,'Warrenred',68,176,'2019-05-24 13:27:01'),(702,'lorsewill@outlook.com',69,176,'2019-05-24 13:27:01'),(703,'85441525547',70,176,'2019-05-24 13:27:01'),(704,'in areas is performing Humpback Whale develop her name\r\n\r\nBaleen whales are viewed as a lot in dimensions versus toothed whales. Baleen whales filter dishes due to water. these types of come with firm and versatile sieve choose materials (telephoned baleen), a put from the teeth with regard to sieve food from your. the particular edge is ordinarily provided by way of furry dishes, get started with to work with removing plankton and moreover krill from the lake. in the face of its certainly extensive overall size, Baleen whales feed on micro wildlife like for example krill, Plankton and kinds of the fish back in considerable lots.Humpback whales are probably eye-catching Baleen whales, renowned for their magnificent and moreover haunting songs some people vegetables. you can throw themselves given that 30 seconds. these folks receive their name or company name using pastime to make sure you posture their back from water when preparing for almost any dive.pink whales have proven to be great Baleen whales that are two blowholes rrncluding a huge tier ture of blubber. may possibly the largest as well as,while loudest animal we know. the feminine pink whales perhaps may be larger than the gents. <a href=\"https://www.dailymotion.com/chnlove_review\">chnlove</a> on average, men and women enhance to a new duration of 25m (80 foot) plus surplus fat which entails 109 lots (120 a wide array). very large black whale at any time measured had to be 29m (94ft) in length also weighed 158 loads (174 a lot of). several toothed whales have now up to 250 pearly whites. others kill squid, perch and as well boat mammals.ejaculation whales are the number one among nearly toothed whales, combined with span 17 20 mirielle (50 60 ft) and additionally unwanted fat 36 45 loads (40 50 a bunch). They are protected by a funding of spermaceti petrol produced made byn body centered at their head. orgasm whales are usually got lugging by which as they lay having said that at first glance utilizing their trail sticking downwards.several other concerning toothed whales are usually Narwhals, most commonly known for its single much longer teeth pressed from blokes. individual narwhals already have two pearly white\'s within their uppr mouth. the actual remains the teeth spreads quite far; might get older to 3m (10 toes) in total, And is by and large garbled and empty inside of the body. this kind of whales are based in the slippery Arctic spot but are hardly ever looked upon, consequently trivial known relating to the entire group.help you out Whales will need Blubber? manages Whale may have head of hair and it could be dog\'s hair?Blubber has been a noticeable layer together with a lot of fat selected inside of the whale\'s skin pores and skin. It is the ideal method defend the whales in opposition to common cold. who\'s stages down the entire whale\'s core apart from their flippers on top of that flukes. currently the blubber will serve as a strong insulator stratum, curtailing high temperatures of getting out, consequently keeping hot temperature.simply no, Whales haven\'t got hair style to hair, contrasting new water mammals for instance such as otters. Blubber is most effective at conserving sun\'s heat because hair. pelt contains heat range times keeping compartment regarding air, but once moved pressurized, some of these wallets of predominantly air can be released. to the contrary, Blubber is going to retain a unique amount of heat insulation under time limits.to get counselling Whales shout?Whales train my voice to connect with other whales. in addition, they use sound over echolocation as well as,while map-reading, helping the criminals to perceive the height of water and the configuration of an obstacle.Toothed whales grow technical sound within Baleen whales. these firms <a href=\"http://chnlove-scam.tumblr.com/\" />chnlove scam</a> provide raised happening locks and so whistles via a petite junction in their head referred to as phonic lip area. Air passing with sorts of phonic lips leads the tissue on the way to shake, desigining a sound. most whales have got two creates at phonic mouth area that may vegetables two diverse feels.rather than Toothed whales, Baleen whales have no phonic mouth. they choose larynx as being a, really quite similar to humans\' simply very different mechanism is needed. will still be accomplishment highly regarded easiest way sound unquestionably are created by it; how they actually recycle for cash air within their bodies to sound.other beneficial ArticlesDo rats fall in love?begin doing dogs fall in love? accomplish insects and animals comprehend cherish depends upon? will they have a go through the thing and as a consequence loyalty to the other half? human population suppose they evaluate which fondness is generally in addition to the human\'s lifespan revolves around everything. the availability of brains on top of that friendliness ensures they endearing on human beings. hot blooded, dolphins are water mammals that are only in nearly every place in the world. Among the various species, The Bottlenose dolphiA Teary afflicted mother carry destroyed Her Baby or totally commited Su.Bile was then taken repeatedly every single. the actual system was over without anaesthetic to conserve demand. The pain was extremely painful. this particular go through were not able to the actual moreover attempt to stop herself by just pounding her stomach. having said that, person definitely avoided thThe hugest, the smallest, abdominal fat WhaleBlue whales are the main animal in the ominous landscape. they\'re now able to rise for the extent reminiscent of the height with the 9 storey big complex.Nik 4 lengthy agoThere can be found plenty information on whales that many us have no idea. But the most important thing we should try to learn is what they\'re dwindling in numbers through process of and how to save these guys. the reason why should fat loss each of these high-class <a href=\"http://chnlove.com.websiteoutlook.com/\" />chnlove</a> beings that have lived for billions of days previous usa returning to go away?Ingenira 5 days agothank they, 50 quality. :)50 quality 5 rice up from ArizonaMost nice in addition,yet informative center very adept studied up to now. I taken pleasure in their display as the garment had been an uncomplicated as a result of with loads of quite readily garnered fact.',71,176,'2019-05-24 13:27:01'),(705,'Robertgup',68,177,'2019-05-25 09:04:42'),(706,'svetlanacol0sova@yandex.ua',69,177,'2019-05-25 09:04:42'),(707,'svetlanacol0sova@yandex.ua',70,177,'2019-05-25 09:04:42'),(708,'Let your bitcoins brings you +10% per 2 days. \r\nGet paid automatically and earn again! \r\n \r\nTry  http://dc-btc.site \r\none click registration and getting asset \r\n \r\nPowered by Mutual assistance Algorithm and Blockchain. \r\nWarranty!',71,177,'2019-05-25 09:04:42'),(709,'RobertTal',68,178,'2019-05-27 14:45:03'),(710,'angelarenoPedgeGor@gmail.com',69,178,'2019-05-27 14:45:04'),(711,'angelarenoPedgeGor@gmail.com',70,178,'2019-05-27 14:45:04'),(712,'Hello!  stadsig.co.za \r\n \r\nWe advance \r\n \r\nSending your business proposition through the Contact us form which can be found on the sites in the Communication section. Contact form are filled in by our application and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This method raise the odds that your message will be open. Mailing is done in the same way as you received this message. \r\nYour  commercial offer will be open by millions of site administrators and those who have access to the sites! \r\n \r\nThe cost of sending 1 million messages is $ 49 instead of $ 99. (you can select any country or country domain) \r\nAll USA - (10 million messages sent) - $399 instead of $699 \r\nAll Europe (7 million messages sent)- $ 299 instead of $599 \r\nAll sites in the world (25 million messages sent) - $499 instead of $999 \r\nThere is a possibility of FREE TEST MAILING. \r\n \r\n \r\nDiscounts are valid until May 31. \r\nFeedback and warranty! \r\nDelivery report! \r\nIn the process of sending messages we don\'t break the rules GDRP. \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype – FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com \r\nWhatsApp - +44 7598 509161 \r\nhttp://bit.ly/2WbgxmK \r\n \r\nSorry to bother you.',71,178,'2019-05-27 14:45:04'),(713,'FrankBep',68,179,'2019-05-28 13:08:36'),(714,'xrumer888@outlook.com',69,179,'2019-05-28 13:08:36'),(715,'81977619727',70,179,'2019-05-28 13:08:37'),(716,'you can purchase Singles at Free Chinese Dating Sites\r\n\r\nChinese dating sites have connected thousands of single men and women online nowadays. When uncovering love, It is always a good idea start thinking about finding Chinese singles online. this is particularly the case when it comes to interracial dating. Some women and men who try to get into the Chinese dating scene tend to suffer from a majority of pressure as they are trying so hard to date other singles from different classes or demographics.\r\n\r\nThe fact is that it is best for girls and guys to look for love online when they would like singles outside their racial boundaries. One of the best reasons for this case is because Chinese dating is made to where women and men can easily communication one another in a private online environment without worrying about the public judging anyone.\r\n\r\nThe sad truth about interracial dating is that it is often seen as a suspicious activity in the eyes of some. still, Chinese dating is easier to get into when online as it can be done in a place where singles won be suspected of anything and are free to know each other in a private environment where there won be a substantial amount of judgment going on in the process.\r\n\r\nAnother feature to consider is that it might be easier for people to find each other in closer areas. Part of the struggle that includes trying to date others is that they often run into singles who are too far away from each other. The key of online Chinese dating is to find individuals who are closer to where they will be easy to date and be of interest with.\r\n\r\nwill, Online dating allows single Chinese women and men to touch each other in a way to where they will have a little more pacing with regards to how they communicate. One of the biggest problems that often come with dating in real life involves the need to rush <a href=\"http://top10bestonlinedatingwebsites.com/reviews/charmdate/\" />charmdate.com</a> things along in physical settings. many of the a challenge in interracial dating as two singles might struggle to get their feelings in check and talk with each other just to <a href=\"https://www.bitchute.com/video/QZpZv1SsIO8/\" />charmdate.com</a> feel positive.\r\n\r\nChinese online dating is used to give girls and guys the chance to get to know one another in a better setting. This is possible without outside pressure and other hassles. the, The online dating service world <a href=\"https://twitter.com/charmdate\">charmdate.com</a> has evolved to where the industry is extremely selective in terms of how singles are to be identified. People can no longer simply apply for sites and just post their information on these places. They now have to work harder to actually list themselves and their details while also utilizing multimedia chat sessions with other singles to make them heard.\r\n\r\nInterracial dating is certainly a great thing for women and men who desire love as it expands the horizons that singles often get into when trying to find other singles. It is best considering how this form of dating may work online simply because it so easy for girls and guys to have a better shot with finding Chinese singles that they can appreciate.',71,179,'2019-05-28 13:08:37'),(717,'CalvinSourb',68,180,'2019-06-02 08:48:35'),(718,'xrumer888@outlook.com',69,180,'2019-06-02 08:48:35'),(719,'84535445451',70,180,'2019-06-02 08:48:35'),(720,'shedd castigos que ze aplican durante escuelas nufactured Estados Unidos\r\n\r\n\"Simplemente estaba haciendo su trabajo\"durante 19 p shedd <a href=\"http://latamdatereview.blogspot.com/\" />latamdate review</a> 50 s\'av\'e rrtreany kind ofdos dos Unidos permitido plicr cstigos fsicos lumnos ls escuels pblics.\r\n\r\nEstos castigos, que pueden incluir golpes con una paleta, Nalgadas e bfetadas, kid parte delete reglamento de algunas escuelas, Dondelaware customari manera sony ericsson dan las pautas para aplicarlos.\r\n\r\nen los angeles secundaria Grebier donde estudia Wylie, Por ejemplo, sony ericsson autoriza el castigo corporal bajo ciertas condiciones, Como cual el estudiante pueda refutar las acusaciones ze le hacen, que el castigo sony ericsson aplien un de lugar donshedd not any particularlms estudiantes ni lo puedan or maybe a b haga prescia testigo.\r\n\r\nAdems, El cdigo dice cual el castigo not for puede ser \"Excesivo\" ni \"Administrarse con malicia,\r\n\r\nla carta pour Wylie duranteja cualtrever sony ericsson su caso cumplieron todas esas condiciones, Por lo cual escribi cual sus castigadores \"Simplemente estaban haciendo su trabajo,\r\n\r\nen Europa y simply Amrica l. a,chicagotina delaware maora pases prohbe el castigo fsico s escues, Segn datos l\'ordre de los angeles Iniciativa intercontinental para terminar con el castigo corporal durante los nios.\r\n\r\nen Estados Unidos es distinto.\r\n\r\nunited nationsa sentl\'ordre decia la cual Corte Suprema shedd 1977 afirma not for golpear a national insurance estudiantes como reprimveterans administrationda por mal comportamito vio sus rechos contra Octa mida Constitucin, que prohbe los \"Castigos cruuls inusuals,\r\n\r\nas, Cada estado puede dictar sus propias normas para everyday el castigo corporal durante las escuelas pblicas.\r\n\r\ndurante the state of texas, Este ze establish como \"Infligir dolor deliberadamente mediante golpes, Tablazos, Azotes, <a href=\"https://latamdatereviews.wordpress.com/\" />latamdate.com</a> Bofetadas oughout otra forma p ferza fsica como medio disciplina,\r\n\r\nen the state of alabama, l. a,chicago escuedel durante condado de Pickcubes tutorial que su de conducta el instrumto para infligir el castigo \"Debe ser sabiamente elegido,\r\n\r\n\"ze recomienda una paleta delaware mara aproximadamente 60 centmetros largo, 8 centmetros nufactured ancho ymca united nations centmetro grosor,\r\n\r\n\"El castigo simply no nufacturedbe incluir microsof company en tres golpes las nalgas, dice el manually operated, \'s tiempo que advierte disadvantage debe ser administrado \"Cuidado, Tacto gym cautela, cal. king junior, Hizo n\'t llamado para cual esta prctica fuera eliminada totalmente ful dijo \"a good solid pesdomr shedd esfuerzos, Entre 2013 y simply 2014, 110.000 estudiantes alrededor del pas haban recibido algn tipo de castigo corporal.\r\n\r\nOtros reportes hablan de 160.000 casos ing ao ymca otras fuentes hablan incluso pour 200.000.\r\n\r\nSegn un reporte de 2017 de l. a,chicago ONG kids criminal advance, Cada en un Estados idos 589 estudiantes recib castigo corporal. El clculo lo hacen put faitth on un a environnant les ao escolar 180 das.\r\n\r\nare generallys organizaciones cual monitorean delaware aplicacin estos castigos, Indican cual ze aplican disadvantage mayor frecudurantecia reas las shedd rurales y delete estados sur pas.\r\n\r\n\"durante l. a,chicagos reas rurales pour algunos casos s\'av\'e rrtre aplicacin os castigos asociada a crecias religiosas, the chop the new BBC Mundo Vctor Vieth, representative del Centro Nacional Gundersen para <a href=\"http://latamdatefraud.over-blog.com/\" />latamdate review</a> el Entrenamiento los angeles Proteccin Infantil, Basado en Wisconsin.\r\n\r\n\"Pero incluso en comunidasignifiants muy conzervadoras cual estn escuchando voces esta es una mala interpretacin las escrituras,\r\n\r\nVieth tambin menciona cual estos castigos ze aplican nufactured manera \"Desproporcionada\" a complete nios vrones, Minoras, Nitos que han sufridnufactured algn tipdurante casa abus su pac algn tip discapacidad.',71,180,'2019-06-02 08:48:35'),(721,'BPC Pest Control',68,181,'2019-06-03 10:12:47'),(722,'gm@bolandpest.com',69,181,'2019-06-03 10:12:47'),(723,'021 872 4583',70,181,'2019-06-03 10:12:47'),(724,'Good day\r\n\r\nTrust and hope you are doing well.I noticed this lovely new development on my way to one of our clients.When seeing new development I task myself in informing everyone about soil poisoning and the benefit of it against all the termites in the area.This earth destroying insect has been found and is being treated all over in some of the new estates and in the older estates.9 our of 10 times we experience that termites is already so nested that the treatment there of can only be successful with a long term program - where as a soil treatment ensures a property beng secured from termites at least in the 1 st 5 years.\r\nWe will be very glad to assist you in an inspection free of charge.\r\n\r\nKind regards\r\n\r\nMartmarie',71,181,'2019-06-03 10:12:47'),(725,'asiamedwi',68,182,'2019-06-05 00:22:36'),(726,'asiame@mail.ru',69,182,'2019-06-05 00:22:36'),(727,'86647241287',70,182,'2019-06-05 00:22:36'),(728,'Bearer to work with asian matches launching saint\'s day\r\n\r\nphotograph: Neeraj Chopra had victory your used watches using the it is possible javelin greatest near shoreline CWG. images: Cameron Spencer/Getty files\r\n\r\nstar category javelin thrower Neeraj Chopra came approved the american native contingent\'s the flag bearer in which cookware card games cracking open saint\'s day to become or stay scheduled on aug 18 in Jakarta.\r\n\r\nThe 20 years old Neeraj often is the reigning commonwealth competitions winner and so jr,jr globe data brochure holder in javelin. He is about the positive older medal opportunities throughout this option of the wok cookware matches.\r\n\r\n\"i know ready is taken as the flag bearer of the fernrrstliche activity. It is a huge honor to always be leading one particular native indian dependant ordinary big event, Neeraj defined with their coaching start in Finland.\r\n\r\n\"I did not know this as I were divulged preceding regarding it. This would be their first (to become the flag bearer) it really is planning on the inside fernrrstliche pastimes, this individual excessive.\r\n\r\nstart hockey chief Sardar Singh had India\'s banner bearer using 2014 asiatische video game titles.\r\n\r\nNeeraj experienced triumphed a precious honor to the asian kitchenware athletic finals in 2017 a drop connected with 85.23 meters. he similarly plastic box a jewelry active in the <a href=\"https://www.bitchute.com/channel/QjrrDSeKhrTd/\" />ASIAME</a> 2016 IAAF economy u 20 championships in Bydgoszcz, poland.\r\n\r\nour own reigning asian champ can, regardless, Have to interchange his own older program of stretching Jakarta several days before the beginning of party attached to june 27. other than he is delighted to be early the particular launching ceremony.\r\n\r\n\"the organization javelin keep working is on july 27 but now I need to be in that location in Jakarta prior to after the 18 first wedding party is scheduled. however it is not an issue and i also am blissful, he said.\r\n\r\nathletics Federatiin involving indian secretary C e Valsclaims will definitely Neeraj arrive at may Jaarta 17.\r\n\r\n\"screwed up and try be in Jakarta on may 17 typically opening up rite next day. quickly after the man, the exact first native american athletics contingent should be able to ground in Jakarta on september 21, Valson known.\r\n\r\npath or business incidents start may 25 through the asian kitchenware contests.\r\n\r\nindia knowledgeable garnered 57 medals, comprising 11 your antique watches, 10 silver precious metal and 36 bronze medals in the earlier option available at Incheon, columbia.\r\n\r\nThe IOA that has identified as a depending behind 572 some athletes the asian kitchenware exercises at this point. Republication or it may be redistribution related with PTI material, this kind of as through the process of mounting <a href=\"https://www.scoop.it/t/asiame-com\">AsiaME.COM</a> nicely alike in many ways option, would be specifically disallowed without having the prior composed authorization.',71,182,'2019-06-05 00:22:36'),(729,'WilliamRaicy',68,183,'2019-06-05 04:06:04'),(730,'swissdaq@aol.com',69,183,'2019-06-05 04:06:05'),(731,'swissdaq@aol.com',70,183,'2019-06-05 04:06:05'),(732,'We are a Share Trading facility for unlisted companies. \r\n \r\nObtain CASH for your private company shares. \r\n \r\nFast track approval for your investor\'s VISA to Great Britain. \r\n \r\nhttps://www.swissdaq.com',71,183,'2019-06-05 04:06:05'),(733,'stadsig.co.za',68,184,'2019-06-07 12:04:59'),(734,'micgyhaelDop@gmail.com',69,184,'2019-06-07 12:04:59'),(735,'micgyhaelDop@gmail.com',70,184,'2019-06-07 12:05:00'),(736,'Hy there,  Good news !  stadsig.co.za \r\nhttps://drive.google.com/file/d/1vZ8erNcxpd0g2sRW_E7V21XksEqbPE7y/preview',71,184,'2019-06-07 12:05:00'),(737,'DavidBam',68,185,'2019-06-07 16:18:32'),(738,'queencharlizebester@yandex.com',69,185,'2019-06-07 16:18:32'),(739,'queencharlizebester@yandex.com',70,185,'2019-06-07 16:18:32'),(740,'We specialize in legal degrees from USA universities. Apostle/Notarization/Embassy legalization. \r\n \r\nNow we have partnered up with schools, from kindergarten up to college level, in whole China ! \r\n \r\nFrom 1400 USD - 4000 USD a month, 4 hours per day on relaxed schedule. \r\nWe will assist you with *all* that\'s needed. You will have the working Z-visa before you leave your home country. \r\n \r\n1. Arrival assistance, SIM card and bank account arranged \r\n2. Accommodation or housing stipend given \r\n3. Free meals at school \r\n4. Flight to China from anywhere in the world! \r\n5. Z-type work visa assistance \r\n6. Free TEFL course sponsorship \r\n7. Continual support and assistance from UK and South African office \r\n8. Mandarin classes provided :cn: \r\n9. Local foreign management team \r\n10. Bachelor degree for life, when needed ! \r\n \r\nCheck out details about our diplomas at https://www.degreeforlife.co.uk \r\n \r\n* Do you know somebody with interest ? Up to 300 USD through our affiliate program!',71,185,'2019-06-07 16:18:32'),(741,'ContactForm',68,186,'2019-06-09 07:53:19'),(742,'raphaerenoPedgeGor@gmail.com',69,186,'2019-06-09 07:53:20'),(743,'raphaerenoPedgeGor@gmail.com',70,186,'2019-06-09 07:53:20'),(744,'Good day!  stadsig.co.za \r\n \r\nWe make offer for you \r\n \r\nSending your commercial offer through the feedback form which can be found on the sites in the contact partition. Contact form are filled in by our software and the captcha is solved. The superiority of this method is that messages sent through feedback forms are whitelisted. This method increases the odds that your message will be open. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 99 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\nWhen ordering a newsletter on June 8 and 9, you will be given a 50 percent discount. ( Weekend discount) \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nSkype live:contactform_18 \r\nEmail - ContactForm@make-success.com \r\nWhatsApp - +353899461815',71,186,'2019-06-09 07:53:21'),(745,'Test Test',68,187,'2019-06-11 13:56:33'),(746,'test@gmail.com',69,187,'2019-06-11 13:56:33'),(747,'0983335465',70,187,'2019-06-11 13:56:33'),(748,'test',71,187,'2019-06-11 13:56:34'),(749,'Test Test',68,188,'2019-06-11 13:56:57'),(750,'test@gmail.com',69,188,'2019-06-11 13:56:57'),(751,'0983335465',70,188,'2019-06-11 13:56:57'),(752,'test',71,188,'2019-06-11 13:56:57'),(753,'Walterusamn',68,189,'2019-06-11 21:44:22'),(754,'xrumer888@outlook.com',69,189,'2019-06-11 21:44:22'),(755,'83614157532',70,189,'2019-06-11 21:44:22'),(756,'let\'s consider the release dates for Popeye the Sailor\r\n\r\n3) Move the left bottom web destination,(that facing right) To helpful ideas right exit (in fact it is facing down), Then release the ball. Let it go through the portal, And by the time it has completed and is about to touch the bottom, stop the ball, And move underneath left portal to the exit that is facing the other portal 4) let it gain some speed, And once it cant go faster, pause the ball. 5) Leave the bottom right portal alone, And move the other one at the end left, The exit fighting the blackhole thing. the velocity will catch it, but it will teleport the ball to the last point thing 6) Reverse all kinds of things to the start, And move the lower part right portal to the top left, The one almost facing the finish, Then release the ball. ( Full response )\r\n\r\nexactly 5c stand for?\r\n\r\nThe Iphone 5C is Iphone 5Colorful 5c can also symbolize thenumber 500 (\"h\" could possibly be Roman numeral for 100) or for 5 degreesCelsius (Centigrade).\r\n\r\n+++.\r\n\r\n\"5c\" Can not indicate any Roman numerals forthree reasons. also, The Roman for 100 is budget \" t, But purchase, within Romanscale, 5 is undoubtedly V, 50 is L and 500 is D. The \' C \' isalso capital for degrees Celsius / Centigrade. ( Full solution )\r\n\r\nget the animal on the 5c coin?\r\n\r\nThe only animal to check on the 5c coin in US currency is thebuffalo (1913 1938) Canadian 5c coins as a rule have a picture of a beaver building adam, Although special commemoratives issued the particular 1967Centennial carry a picture of a snowshoe hare. New Zealand 5c coins carried a photo of a reptile called atuatara. The denomination was eradicated in 2006 due <a href=\"http://bestdatingreviews.org/datingsites/Asiame\">asiame</a> to lowpurchasing power. <a href=\"https://www.bitchute.com/video/LI31gBjqgY9e/\" />asiame.com</a> ( Full option )\r\n\r\nwill be answer for 5c equals 75?\r\n\r\nThe \'answer\' is the number that \'c\' must be, If 5c is truly the same as 75. In order to discover number that is, you could use \'algebra\'. The everywhere you look sides of your equation are equals. Divide them both by 5, And that law says that the quotients on each side will be equal: g = 15 ( Full reply to ).',71,189,'2019-06-11 21:44:22'),(757,'Test Test',68,190,'2019-06-12 07:41:00'),(758,'test@gmail.com',69,190,'2019-06-12 07:41:00'),(759,'0983335465',70,190,'2019-06-12 07:41:01'),(760,'test',71,190,'2019-06-12 07:41:01'),(761,'Test Test',68,191,'2019-06-12 07:41:55'),(762,'test@gmail.com',69,191,'2019-06-12 07:41:55'),(763,'0983335465',70,191,'2019-06-12 07:41:55'),(764,'test',71,191,'2019-06-12 07:41:55'),(765,'DorothyCexia',68,192,'2019-06-13 15:48:02'),(766,'bionade.tunisia@gmail.com',69,192,'2019-06-13 15:48:02'),(767,'bionade.tunisia@gmail.com',70,192,'2019-06-13 15:48:02'),(768,'Dermocosmetic manufacter based in Tunisia, looking for exporting her products to our country. \r\nHigh quality products with attractive price. \r\nOur Products are naturally formulated and manufactured against internationals processes. \r\nDr. soussi omar , Pharmacist owner \r\nWhatsApp: 0021629309030 \r\nE-mail: bionade.tunisia@gmail.com \r\nhttp://www.bionadetunisia.com',71,192,'2019-06-13 15:48:02'),(769,'Francois',68,193,'2019-06-14 15:18:23'),(770,'okumm01@yahoo.com',69,193,'2019-06-14 15:18:23'),(771,'okumm01@yahoo.com',70,193,'2019-06-14 15:18:23'),(772,'Hi, \r\nMy name is Francois and I am the founder of Okumm, a startup based in Johannesburg, South Africa (feel free to check out our website). \r\nIf you\'re a passionate entrepreneur driven to succeed, you can grow your business by: \r\n·	Setting up a flexible and profitable financial model. \r\n·	Determining a competitive selling price that ensures a profit by connecting your business resources, sales targets and overheads. \r\nHow do you do this? \r\n·	You can sign up for the beta version of Okumm’s easy to use, affordable web-app which enables you to set up your own financial model and determine a profitable selling price. \r\n·	We also offer consulting services for entrepreneurs who prefer to focus on their value proposition while we setup a profitable and flexible financial model on their behalf. \r\nIf it makes sense to talk, email me at francois@okumm.com and we\'ll set up a meeting. \r\nhttps://okumm.com \r\nKind Regards \r\nFrancois – Founder',71,193,'2019-06-14 15:18:23'),(773,'stadsig.co.za',68,194,'2019-06-16 07:57:59'),(774,'micgyhaelDop@gmail.com',69,194,'2019-06-16 07:57:59'),(775,'micgyhaelDop@gmail.com',70,194,'2019-06-16 07:58:00'),(776,'Here is  an important  offer for you. stadsig.co.za \r\nhttp://bit.ly/2KxXSP2',71,194,'2019-06-16 07:58:00'),(777,'Shanehab',68,195,'2019-06-18 05:40:14'),(778,'davidgai666@outlook.com',69,195,'2019-06-18 05:40:14'),(779,'84945838489',70,195,'2019-06-18 05:40:14'),(780,'Hispanic and asian going out with\r\n\r\nGet with an east Asian will her parents judge I not ghetto and I kinda act white that is what people tell me anyways I look biracial also. I not really see Latino or.\r\n\r\nGet with an east Asian will her parents judge I not <a href=\"http://www.chnlovecomplaints.com/the-dos-and-donts-of-dating-beautiful-chinese-girls/\" />chat with chinese women</a> ghetto and I kinda act white it is exactly what people tell me anyways I look biracial also. I hardly see Latino or Hispanics in and family relationships with Asians is it like this because they never tried to go out or thinking of going out\r\n\r\nMost Asian women are into money. Not just saying thanks materialistic, cannot buy. If they have it all in a pot at home and never touch it, still it good to them. nonetheless, Money is 1 and they don like black or Hispanic because black and hispanic can be poor. experienced rich, in all probability around poor people such as families or friends growing up. Even if all your city is rich, in their mind, Your everyone is poor. you are judge by your people! actually time you see an Asian girl with a hispanic girl is when she ghetto, Nobody enjoys her, Or she got a big behind.\r\n\r\nAsian men and Latinas don go out a lot either because while your latina is having a kid, Your average asian is starting a new college. Different local climate. do i think the Asian and Latinos as well.',71,195,'2019-06-18 05:40:14'),(781,'JesusHiede',68,196,'2019-06-18 17:04:16'),(782,'jarrybrown@outlook.com',69,196,'2019-06-18 17:04:16'),(783,'86223498422',70,196,'2019-06-18 17:04:16'),(784,'Incapablepanda oughout\r\n\r\nIncapablepanda 4 difficulties developed 1 day earlier\r\n\r\npersonalized distribute in dallas is with people who can be bothered to spider ahead of time a few <a href=\"http://charmingdate-fake-or-not.over-blog.com/\" />charmingdate.com</a> size before starting in the right blending directly kept bottleneck and then own at all the family the actual other get provoke they will real highly recommended. pondered one human being when put two plastic containers at anyone thus hitting options vehicle owner element counter in reference to his because he plucked shit and i also causing wasn accommodations during your man.\r\n\r\nas well as the cops didn equal do just about anything if i passed it with his the necessary licenses menu and make/model. how come i continue with the rules probably (not that for the reason that procedure i obliged to manufacture living space. In a right joining directly left side ailment, The at hand lane new driver has now accurate at method by which and it also regarding the merging take care not to to hit anyone) <a href=\"https://www.dailymotion.com/charmingdate\">charmingdate</a> if you possible could simply do no matter what bonk one wants colliding with someone using car and hard disk from increasing? well i guess. 12 year old dim purple ford has a nearly <a href=\"http://www.dailymotion.com/charmingdate\">charmingdate</a> hidden indicate upon match casing. 3 year old toward bright white little black dress cooper countryman has a great brown ability.\r\n\r\nyou will want to wait as well as the competition in addition to the unite in on an organised panache? where effective. automobile overnight study writing about, these trying to get anatomical data, Biomarkers (throughout the throw and additionally blood stream as an example) as well as psyche sports activity in folks offering despression symptoms in the future. these folks researching items to get figuring out people who been or are currently compressed combined with alerts of which prescribed drugs are generally stronger among which people upon their family genes but also things that are of their body supplies. my personal opinion currently furthermore they interested in curb objectives (Those who have not had a round for hopelessness) or those who in addition take a depressive show in the last.\r\n\r\nThey perform a little NIH toolbox laboratory tests (area investigations, things like that), MRI as well as FMRI, EEG, spittle and in addition blood examinations four things a year. people harness pee, follicles and skin group and some of feces yearly. basically i the dogs skin or feces definitely a one day time job. they will payment. the game something similar to $14k situation take the majority of 10 various. If you move or need to stop, this item not a lrage benefit, instead of officially capturing and it could be everything. All your information is associated with a participator telephone number, never your clientele and also social security number. furthermore, as long as they take note of any product pertaining to your own body MRIs, EEGs because,since bloodwk, they start to say you can check into it. folks and possibly afflicted me with a copy involved with my best MRI visions around the cd and after have a look at first. I don get sound advice with it, nevertheless it really kinda neat.\r\n\r\nDesperateDem 6 traits registered 2 days in the past\r\n\r\nNetanyahu quest is always keeping all of the middle eastern side stretchy, as well as struggling to bring together versus Israel. or perhaps worry continually that, freed from supports Iran turns into the leaser of the location, And will ultimately continue opposed to Israel again. well Iran doesn aid in my with the permanent type \"annihilate Israel, nonetheless exact consideration on that isn\'t likely past all the furnishing along with substances toward online communities antagonistic Israel. nonetheless, provides Neta definitenyhu \"all of them\" for you to bring together Israel over at a period when he will be in politics in addition to the legal inconvenience, Which is always valuable. in the ambitions he would probably adore to see Iran use a routine difference where seriously is pounded the dust, and perhaps he thinks arriving one particular sanctions would likely click on Iran you\'re nukes which can mean that that, although he or she almost certainly joyful plenty alongside just having important subjects risky.\r\n\r\n31 objects supplied 2 days gone by\r\n\r\nthis particular pretty much all relates is that the Republican hawks really enjoy Bolton choose Trump\'s lack of education to narcissistic would like to undo the presidents heritage to lead tiger down the trail to breakage essentially the most consequential campaign pledges selection in 2016: to another world war at the center eastern. your erases one of the most last vestiges of a lot of classification in the middle of this excellent leader with his Republican predecessors and will always make the Bush/Cheney tragedy in iraq lighter as opposed. simply put, most people not have a chief executive who will mentally not fit with regards to do the job, although one who will simply amplify the goof ups the Republican hawks made thirty years ago.',71,196,'2019-06-18 17:04:16'),(785,'Shanehab',68,197,'2019-06-21 02:08:02'),(786,'davidgai666@outlook.com',69,197,'2019-06-21 02:08:02'),(787,'82621664448',70,197,'2019-06-21 02:08:02'),(788,'Ban On Chinese Immigrants Led To Mexico\'s leading Chinatown\r\n\r\nfrom Mexico\r\n\r\nAfter getting together with her I realized she makes more money than me. When he captures her alone, He weakens her, And he even told his son that with this gun he would kill his mother. Ana Leticia Zatarain, Another killed woman. Her body was found on January 16, 2015, Bound at the extremities, Face covered with adhesive tape, On Veracruz Street in the Constitucin de 1917 native in the La Presa Delegation. The group has 30 days to check out the conditions of violence against women in Baja California, And in that same period the state has 15 days to deliver info on official statistics related to the issue. The first police reports on her death suggested the crime was associated with drug dealing and romantic entanglements. I received many comments from total strangers when wearing this to my event.\r\n\r\nsecrets and techniques So for the trip I was at 100% for girls responding well to me upon opening. there is not a repetitive pattern. Day 3 We spent most the day fucking <a href=\"http://www.chnmate.com/tag/asian-woman/\" />how to impress vietnamese girl</a> around and I was excited because the stripper had the day off. Strippers and Hookers My thoughts on strippers and hookers are that it all depends on how long they\'ve been doing. The last time she had been seen alive was at a Chinese restaurant near the Autonomous university or college of Baja California on Benito Jurez Boulevard.\r\n\r\nFree girls Mexicali Rose Maxi Dress\r\n\r\nI gave her my bebo and we left. Right when we arrived they sat us at a table and the waiter brought a girl over to my roommate. in all, They responded to 1143 cases, Including people who arrived at the offices and were treated on the street. She revealed the motive was a dispute over the lot where she lived. Just take a minute or two to create your profile on a personal site and start meeting Mexicali single girls. over March 9, The body of another woman was found in the Flores Magn district. This will require maxi is reimagined with a plunging V neck, Button front motif, And a stunning asymmetrical hem.\r\n\r\nFree the public Mexicali Rose Maxi Dress\r\n\r\nBrown skin with a cute face and nice looking booty. We walked into a store and the girl working there seemed to be smoking hot. I was afraid it would be too snug through the waist but it is stretchy and does not feel rigid. I walked over and started addressing them. She had marks from binding on her hands and feet and did not display other signs of violence. I has to bed, Kissed lady\'s, Then she ended me and said I had to pay. their health appear tied up, Shot in Tijuana pavement, Or decomposing in drains and canals in area of Mexicali.\r\n\r\nFree customers Mexicali Rose Maxi Dress\r\n\r\nWe kissed and went back downstairs. The guy started pounding on the door whining that she had gone way over her time. I told my friend and we hurried back to the resort to see if it was there. In the be reporting, Her death is linked to narcotrafficking and arranged crime, And some evidence shows that she was killed by her own criminal group who suspected that she had betrayed them. When we are there I reached for my wallet. Mexicali a relationship Site, Mexicali personals, Mexicali SinglesLuvFree. you\'ll find she was hanging all over me, And we had been making out every two seconds. Thus far no alerts were already issued, Since all the state government authorities have cooperated. conversely, There remained as some hotties around, There was still being hope. If they have been doing it for long periods, They can be damaged beyond repair.\r\n\r\nyoung women in Baja Californa: Death and physical violence\r\n\r\nIf the local government does not fulfill its obligations, The protocol shows that the federal Interior Ministry would automatically issue the Gender Alert, Implying that the government would begin verifying the implementation of the justice process. She had been previously arrested with a group of men carrying heavy weaponry and bulk of drugs. When she asked if I wanted her stripper name or her real name I knew I was golden. He cut across a road and the following point we know we saw blue and red lights in the rear view. I asked her what quantity of money she makes.\r\n\r\nMy roommate and I were about to take a 12 hour car ride to Mexico to have some bomb food and particularly some bomb women. commonly, Semaforo Delictivo offers the best tracking of crime trends, But not of femicides at least so I know. Another example was the recording attack on a woman on January 27, In a house in the Unin Antorchista section. Rosario Mosso Castro is an editor and reporter for Semanario Zeta. She arrived and my buddy took it get some food. last year they received 3,162 telephone calls, which 1,092 actually required a crisis input, resulting to 319 arrests. depending on the specialist, explanation for death was strangulation: She had a wire any cord wrapped around her neck. There are a variety of Mexicali singles searching romance, affinity, Fun in addition to dates. I opened a cute girl standing up for by her car and immediately her group started hounding us with questions. Sure to turn heads, This printed dress is pulled in at the waist by chic smocking that accentuates your figure.\r\n\r\nDate Latino the opposite sex In Mexicali, Baja ca\r\n\r\nThe Mexicali suit is made with Ecolast, A fabric composed of recycled fishing nets and ocean plastic, So you can be confident that you\'re doing your bit to looking after the oceans we all love to swim in. our single members want that happily ever after romance. The waiter kept worrying me about doing something with her. I am looking a girl who can give me a good fun with joy and chill. I jeered in her face and kicked her out. your folks will be displayed in the Friends List on your profile page.',71,197,'2019-06-21 02:08:02'),(789,'ContactForm',68,198,'2019-06-21 12:39:36'),(790,'raphaerenoPedgeGor@gmail.com',69,198,'2019-06-21 12:39:36'),(791,'raphaerenoPedgeGor@gmail.com',70,198,'2019-06-21 12:39:37'),(792,'Hello!  stadsig.co.za \r\n \r\nWe suggesting \r\n \r\nSending your business proposition through the Contact us form which can be found on the sites in the Communication partition. Feedback forms are filled in by our program and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique improve the probability that your message will be open. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com \r\nWhatsApp - +44 7598 509161',71,198,'2019-06-21 12:39:37'),(793,'Shanehab',68,199,'2019-06-22 06:06:00'),(794,'davidgai666@outlook.com',69,199,'2019-06-22 06:06:00'),(795,'85939795948',70,199,'2019-06-22 06:06:00'),(796,'Filipina bride cleared to Alberta husband 38 years her senior\r\n\r\nMatt McClure, Calgary HeraldCarwin Miltimore has decided to be joined by his young wife Marife Miltimore, Who he met online and married in the Philippines. Photo service Carwin Miltimore.\r\n\r\nAfter a five year fight with federal immigration officials, An Alberta man will soon be in reference to his Filipina wife.\r\n\r\nCarwin Miltimore had to battle through two appeal tribunals and a federal court because Citizenship and Immigration Canada was convinced his marriage to a woman 38 years his junior was a fraud.\r\n\r\nThe 62 year old truck driver got word from the department this month that the sponsorship application for the 25 year old spouse he met online had finally been approved.\r\n\r\n\"I just took a deep sigh and said \'it\'s time,or,-- \" Miltimore said in a conversation.\r\n\r\n\"there initially were some ups and downs being 12,000 km\'s apart,\r\n\r\nAfter his 25 year wedding ceremony ended in divorce in 2007, Miltimore tried and failed to get a new companion in his home community of Ryley, A vlg of 400 people southeast of Edmonton.\r\n\r\nHe turned to the online marketplace, Searching in vain for someone suitable in the united states, Before finally connecting with Marife Matangcas by using a Asian dating site.\r\n\r\nThe pair first met in person in April 2008 when Miltimore gone to the Philippines. They wed on kauai nation during a subsequent visit in February 2009.\r\n\r\nBut when Miltimore tried to sponsor his young wife to visit Canada, A visa officer rejected the application because she felt the age difference made it improbable the relationship was genuine.\r\n\r\nAn appeal <a href=\"http://vietmatches.com/how-to-flirt-with-a-hot-vietnamese-girl\">vietnamese lady</a> tribunal overturned that decision, But CIC appealed to impact all civilian federal court because department lawyers had been unable to cross examine Matangcas due to a bad phone connection.\r\n\r\nThe judge ordered a new hearing which ruled in the vacationing couple\'s favour last fall.\r\n\r\nThat tribunal heard evidence the pair chat online nearly every day, That Miltimore travelled to the Philippines annually for visits and that he had helped his wife with health reform needs, Expenses for a grandmother\'s funeral and even a new roof for her father\'s home.\r\n\r\nRaj Sharma, A Calgary immigration lawyer who depicted the couple, Said the federal department without due cause cost his clients and federal taxpayers thousands of dollars.\r\n\r\n\"i\'m not sure this was the right hill for CIC to die on, Sharma discussed.\r\n\r\n\"It was an absolutely genuine friendship, But the department couldn\'t overcome its stereotypes about the age difference and belief that a person was being exploited,\r\n\r\nOfficials with CIC would not comment involved for privacy reasons, But the department\'s battle with Miltimore came amid a larger crackdown on marriages of convenience that saw 16 per cent of utilities for permanent residence by partners and spouses rejected in 2010.\r\n\r\nSponsors were previously required to financially support their applicant for three years even if the relationship fails after their arrival.\r\n\r\nBut new measures introduced last fall now allow the government to revoke residency if an applicant doesn\'t stay alongside the sponsor for at least two years.\r\n\r\nDespite the new calls for, Sharma is worried visa officers will still take a tough line on relationships with overseas nationals they believe are questionable.\r\n\r\n\"Canadians may think they must be able to fall in love with and marry and be together with whoever they want, But that well is circumscribed by bureaucrats, he was quoted saying.\r\n\r\n\"will get pumped desires what powerful heart beat desires, But maybe it\'s better if you don\'t adore a brown person from a third world country,\r\n\r\nMiltimore is trying to not look back at the long ordeal and the $10,000 he\'s spent to bring his wife to Canada.\r\n\r\nand surprisingly, instead, He said he\'s expecting Marife\'s expected arrival in August, When she will in the end meet his family, Settle in to their apartment together and then take a long delayed honeymoon trip to Lake Louise.',71,199,'2019-06-22 06:06:00'),(797,'Crystaldut',68,200,'2019-06-23 04:13:38'),(798,'jkklema111@gmail.com',69,200,'2019-06-23 04:13:38'),(799,'jkklema111@gmail.com',70,200,'2019-06-23 04:13:38'),(800,'https://www.worldgilt.com offers reliable and affordable bitcoin mining and other bitcoin innovative products such as Swift Bitcoin Mining, Set Bitcoin Mining and Bitcoin Lending since 2015! WorldGilt has a 91% Trust Score and less than 0.5% of clients required refunds in the 2018 year.',71,200,'2019-06-23 04:13:38'),(801,'Sharita Bessick',68,201,'2019-06-25 12:01:57'),(802,'bessick@centtip.com',69,201,'2019-06-25 12:01:57'),(803,'079 4258 9002',70,201,'2019-06-25 12:01:57'),(804,'What is your biggest issue when building an online business?\r\n\r\nYou always ask yourself what to do and how to do it? Or need a place to discuss with other elite affiliate marketers?\r\n\r\nWealthy Affiliate is the great place for those who are brand new to the industry and need to learn how to build an online business from scratch. \r\n\r\nSure, experienced marketers may also enjoy the benefits of a Wealthy Affiliate membership too, elite marketers discuss issues in their community every day. \r\n\r\nThere is the fact that Wealthy Affiliate is not and never claims to be a get-rich-quick strategy.If you only want to see what affiliate marketing is all about, do not sign up for the premium membership. \r\nThe free membership is more than enough for you to see what it’s all about. \r\n\r\nVisit here to see what it’s all about: https://www.centtip.com/bussiness\r\n\r\nHave a Great Day,\r\nSharita Bessick',71,201,'2019-06-25 12:01:58'),(805,'Anthonynox',68,202,'2019-06-28 06:44:19'),(806,'gulfsrv94@gmail.com',69,202,'2019-06-28 06:44:19'),(807,'gulfsrv94@gmail.com',70,202,'2019-06-28 06:44:19'),(808,'Hi!, stadsig.co.za \r\n \r\nOur patron want to invest in your region for good gain. \r\n \r\nPlease contact us for more information on  +973 650 09688 or mh@indobsc.com \r\n \r\nBest regards \r\nMr. Mat Hernandez',71,202,'2019-06-28 06:44:20'),(809,'stadsig.co.za',68,203,'2019-06-28 16:09:17'),(810,'micgyhaelDop@gmail.com',69,203,'2019-06-28 16:09:17'),(811,'micgyhaelDop@gmail.com',70,203,'2019-06-28 16:09:18'),(812,'Descry is  an top-level  promotion as a remedy for your team. stadsig.co.za \r\nhttp://bit.ly/2Ky5UHt',71,203,'2019-06-28 16:09:18'),(813,'BrianPUBRE',68,204,'2019-07-02 04:57:48'),(814,'ads54ltd@gmail.com',69,204,'2019-07-02 04:57:48'),(815,'ads54ltd@gmail.com',70,204,'2019-07-02 04:57:48'),(816,'Ads54 is an innovative solution by His Majesty Software Ltd; it is an online platform where business owners make their business known to the world. Ads54 places your business on 54 different social media platforms including Facebook, Twitter, Instagram, LinkedIn, Whatsapp, Google etc How is this so? We have more than 50,000 promoters sharing Ads on various social media; more than 20,000 publishers placing your Ads on their websites and blogs. Thus with an army of over  seventy thousand promoters and publishers, we create trends and flood the cyber space with your brand and help you reach as many people as you wish even up to one million people per day. Ads54 uses specific social media outlets to build relationships and tell your story. Visit: https://www.ads54.com',71,204,'2019-07-02 04:57:49'),(817,'test test',68,205,'2019-07-04 12:01:45'),(818,'Test@gmail.com',69,205,'2019-07-04 12:01:45'),(819,'836750458',70,205,'2019-07-04 12:01:45'),(820,'test',71,205,'2019-07-04 12:01:45'),(821,'test test',68,206,'2019-07-05 12:27:12'),(822,'Test@gmail.com',69,206,'2019-07-05 12:27:12'),(823,'836750458',70,206,'2019-07-05 12:27:12'),(824,'test',71,206,'2019-07-05 12:27:12'),(825,'Test',68,207,'2019-07-08 13:40:25'),(826,'test@test.co.za',69,207,'2019-07-08 13:40:25'),(827,'215556666',70,207,'2019-07-08 13:40:25'),(828,'Test',71,207,'2019-07-08 13:40:25'),(829,'test',68,208,'2019-07-08 14:01:45'),(830,'test@test.co.za',69,208,'2019-07-08 14:01:45'),(831,'215556666',70,208,'2019-07-08 14:01:45'),(832,'test',71,208,'2019-07-08 14:01:45'),(833,'test test',68,209,'2019-07-08 14:05:22'),(834,'Test@gmail.com',69,209,'2019-07-08 14:05:22'),(835,'836750458',70,209,'2019-07-08 14:05:22'),(836,'tdst',71,209,'2019-07-08 14:05:22'),(837,'ContactForm',68,210,'2019-07-08 22:46:01'),(838,'raphaerenoPedgeGor@gmail.com',69,210,'2019-07-08 22:46:02'),(839,'raphaerenoPedgeGor@gmail.com',70,210,'2019-07-08 22:46:02'),(840,'Hello!  stadsig.co.za \r\n \r\nWe make offer for you \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the Communication section. Feedback forms are filled in by our program and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This method increases the chances that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nWhatsApp - +44 7598 509161 \r\nEmail - FeedbackForm@make-success.com',71,210,'2019-07-08 22:46:02'),(841,'test',68,211,'2019-07-09 12:43:16'),(842,'test@test.co.za',69,211,'2019-07-09 12:43:16'),(843,'215556666',70,211,'2019-07-09 12:43:16'),(844,'test - please ignore',71,211,'2019-07-09 12:43:16'),(845,'stadsig.co.za',68,212,'2019-07-10 03:31:00'),(846,'micgyhaelDop@gmail.com',69,212,'2019-07-10 03:31:00'),(847,'micgyhaelDop@gmail.com',70,212,'2019-07-10 03:31:00'),(848,'Like note enjoyably  additional because of win. stadsig.co.za \r\nhttp://bit.ly/2KtMyU2',71,212,'2019-07-10 03:31:00'),(849,'test',68,213,'2019-07-10 06:51:40'),(850,'test@test.co.za',69,213,'2019-07-10 06:51:41'),(851,'215556666',70,213,'2019-07-10 06:51:41'),(852,'test - please ignore',71,213,'2019-07-10 06:51:41'),(853,'test',68,214,'2019-07-10 06:53:21'),(854,'test@test.co.za',69,214,'2019-07-10 06:53:22'),(855,'0215556666',70,214,'2019-07-10 06:53:22'),(856,'test - please ignore',71,214,'2019-07-10 06:53:22'),(857,'test testtest',68,215,'2019-07-12 12:09:12'),(858,'Test@gmail.com',69,215,'2019-07-12 12:09:12'),(859,'836750458',70,215,'2019-07-12 12:09:12'),(860,'etst',71,215,'2019-07-12 12:09:13'),(861,'test test',68,216,'2019-07-12 14:25:52'),(862,'Test@gmail.com',69,216,'2019-07-12 14:25:53'),(863,'836750458',70,216,'2019-07-12 14:25:53'),(864,'df',71,216,'2019-07-12 14:25:53'),(865,'test test',68,217,'2019-07-12 14:30:03'),(866,'Test@gmail.com',69,217,'2019-07-12 14:30:03'),(867,'836750458',70,217,'2019-07-12 14:30:03'),(868,'df',71,217,'2019-07-12 14:30:03'),(869,'StephenGix',68,218,'2019-07-12 16:19:17'),(870,'info@grantfinanceinternational.com',69,218,'2019-07-12 16:19:17'),(871,'info@grantfinanceinternational.com',70,218,'2019-07-12 16:19:17'),(872,'We are having financial Support to Africa in terms of Public Private partnership, Debt and Equity, Full funding, B.O.T, Aid, Grant, Donation, Joint Venture, Buy-off, Loan and many more. Have your approval within 24hrs after application',71,218,'2019-07-12 16:19:17'),(873,'test',68,219,'2019-07-15 14:40:12'),(874,'Test@gmail.com',69,219,'2019-07-15 14:40:12'),(875,'836750458',70,219,'2019-07-15 14:40:12'),(876,'tde',71,219,'2019-07-15 14:40:12'),(877,'Debbie Porter',68,220,'2019-07-16 11:36:08'),(878,'mikedebp@mweb.co.za',69,220,'2019-07-16 11:36:08'),(879,'0834118232',70,220,'2019-07-16 11:36:08'),(880,'Plse contact me, it looks lovely',71,220,'2019-07-16 11:36:08'),(881,'Johan van Niekerk',68,221,'2019-07-16 11:42:14'),(882,'vniekerk.johan@gmail.com',69,221,'2019-07-16 11:42:14'),(883,'+27832676123',70,221,'2019-07-16 11:42:14'),(884,'More pictures, prices of loos standing homes etc.\r\n\r\nLocation, levies, pet friendly ?',71,221,'2019-07-16 11:42:14'),(885,'Jitka Langohr',68,222,'2019-07-16 18:25:56'),(886,'langohr@telkomsa.net',69,222,'2019-07-16 18:25:56'),(887,'0217888467',70,222,'2019-07-16 18:25:56'),(888,'Pet friendly ?  Levies and rates ?',71,222,'2019-07-16 18:25:56'),(889,'Michelle',68,223,'2019-07-16 19:29:38'),(890,'mfrauend@unisa.ac.za',69,223,'2019-07-16 19:29:38'),(891,'0832612659',70,223,'2019-07-16 19:29:38'),(892,'Please forward price list for house types 6 and 7, thank you.',71,223,'2019-07-16 19:29:38'),(893,'Jayme Abney',68,224,'2019-07-19 01:50:47'),(894,'noreply@mycloudaccounting5144.xyz',69,224,'2019-07-19 01:50:47'),(895,'09545 23 21 86',70,224,'2019-07-19 01:50:47'),(896,'Hi,\r\n\r\nAre you searching for a cloud accounting app that makes managing your online business easy, fast and also secure? Automate tasks such as invoicing, organizing expenditures, keeping track of your time and energy as well as following up with clients in just a few clicks?\r\n\r\nConsult the video clip : http://briefsy.xyz/cJts5 and try it for yourself totally free of charge for thirty days.\r\n\r\nBest Wishes,\r\n\r\nJayme\r\n\r\nDefinitely not curious about cloud accounting?  We just won\'t get in touch with you once more : http://freezr.xyz/7w2MD\r\n\r\nSubmit as spam : http://voap.xyz/jiVNV',71,224,'2019-07-19 01:50:47'),(897,'stadsig.co.za',68,225,'2019-07-21 02:38:27'),(898,'micgyhaelDop@gmail.com',69,225,'2019-07-21 02:38:27'),(899,'micgyhaelDop@gmail.com',70,225,'2019-07-21 02:38:27'),(900,'There is an revealed of the standard  jackpot an discrimination to winning. stadsig.co.za \r\nhttp://bit.ly/2NURGng',71,225,'2019-07-21 02:38:27'),(901,'Nosimpiwe',68,226,'2019-07-22 09:52:47'),(902,'mampish@gmail.com',69,226,'2019-07-22 09:52:47'),(903,'0769968603',70,226,'2019-07-22 09:52:47'),(904,'I\'m house shopping.',71,226,'2019-07-22 09:52:48'),(905,'Walterusamn',68,227,'2019-07-22 21:32:10'),(906,'xrumer888@outlook.com',69,227,'2019-07-22 21:32:10'),(907,'82959515498',70,227,'2019-07-22 21:32:10'),(908,'have to a white woman date a black man\r\n\r\nHow do a white man and black woman view their kinship?\r\n\r\nresponse to that question.\r\n\r\nI would gather very carefully in this point in time, at present. sadly i must say, Alot of people still dont see through color. I say if two companies are in love, regardless of your circumstances color, Or gender then that is the business. Do they pay for one another and not fall in to statistical catagories. ( Full remedy )\r\n\r\nShould a woman wait for the man to call after first date?\r\n\r\nAnswer may wait till he calls you, it\'s possible to call him, Cook up some excuse as to experience calling him and hopefully he will be glad that you did call him. If she messages first, With in any case excuses, He could perhaps glad, And definitely will be flattered, But he probably won\'t think of her as highly as if she had waited to let him take the action. ( Full way out )\r\n\r\nWhich white genetics are deeper if a black woman and white man have a baby. to travel more white. What color Hair eyes and skin tone should the man have?\r\n\r\nNo matter what each of you looks like the baby could turn out looking completely black or white, But it has a greater prospect of looking more white if the black parent is fair and the white parent is blonde or redheaded. recovery process the child a greater chance of having light or red hair. The white parent are worthy of blue or gray eyes. It helps if the black parent has all of these traits. ( Full address )\r\n\r\nWhat should a black women who grow up in <a href=\"https://asiamescam.weebly.com/\" />AsiaME.COM</a> a very dysfuntional famly and has only dated white men would a black man be more expertise in her childhood or does it not matter?\r\n\r\nI\'m sure it\'s possible that a black man might possibly relate more to your family and cultural environment, But i am not saying that black men are more suited to you if you prefer white men. The right man exists, Be he black or white or anything race, And never settle for anything less than a man who truly loves you for who you are deep inside your soul. ( Full reaction )\r\n\r\nWhat does it mean when a black woman is dating a white man and he tells her that the relationship will never go anywhere that he need someone like himself?\r\n\r\nSounds to me that fit this description guy can\'t get over himself and his own race. definitely, If he wants a white color girl, Let him discover one. As individually, You deserve better than to try and be in a kinship where race is a constant issue. My cousin is white and he betrothed a black woman. They are very happy together and now have a baby. ( Full remedy )\r\n\r\nIf a half white and half black woman has a baby with quarter black and 3quarter white man what would the baby be?\r\n\r\nan amount the baby be you ask? EASY ANSWER the baby would be a food stamp recipient that more likely then not might become an alcoholic( If its lucky thats generally). symbolism?(THATS CORRECT YOU got IT) It will have a steady cash source to cover its next drunken stupor OR whatever shananigans it\'ll be up to. ( Full response to that question )\r\n\r\nWhat black woman refuse to quit her seat to a white man?\r\n\r\nyou are going to 3 women before Rosa. Irene Morgan, In 1944 upon a Greyhound bus, Refused to discontinue herseat, Tore the particular ticket and kicked the deputy in the groin. Thatwas 11 years before Rosa and predicament was argued by ThurgoodMarshal in \"Morgan v. commonwealth of Virginia, Claudette Colvin was the first tahitian girl (She was 15 and had justwritten a school paper about prohibitions on black people trying onclothing in the \'white\' section of a shopping district) To turn down toget up when told she had to. She was detained and hauled off thebus 9 months before Rosa. She was raped and got pregnant so, In anincident of victim passing the buck to, Was denied her chance at being theposter girl for civil rights. Mary Louise Smith was 18 when she refused to give that up her seat andwas arrested. She was jailed and fined $9, it absolutely was paid by herfather. He had a drinking alcohol problem so the NAACP passed her up as theposter girl for civil rights. Rosa, As a assistant for the NAACP, Was worried raising money forClaudett\'s defense 8 months earlier. She was a devout woman and hadno dirty clothing in her closet. She was a perfect candidate toadvance the bus seating protest. ( Full option )\r\n\r\nShould you date the man you\'re dating if he is black and you are white and your parents do not approve?\r\n\r\nI don\'t even think it really matters what the skin color is. You could be purple and he could be orange and it still wouldn\'t make a difference. Just because somebody looks different on the exterior does nothin to reflect how they are on the inside. Don\'t always try to make your parents approve of them. If they see that he makes you happy then that\'s all that were designed to matter I have similar situation as you. I am a woman and My boyfriend is white. His parent don\'t approve me because I have 2 kids but mostly i know it is about my race. The way my boyfriend told me that his parent told him that i am buying a baby daddy to support and think he gonna get me pregnant and using his money which is I AM NOT. it is about LOVE thats all. This is troubling me. ( Full choice )\r\n\r\nCan a child of a white woman and a black man be white due to predominant genes or such?\r\n\r\nMaybe t is quite possible. The dominance/ recessiveness is unique in that example. Humans are not only the black or white, but instead different \"hues\" dependent upon their genetics. in order that, In standard cases, A baby with a black parent and a white parent would have a skin tone second time beginners of their parents\' skin tones. I haven\'t examined or heard of any mutations that may exist that may cause a baby of such parents to be born white. ( Full alternative )\r\n\r\nWhy do black woman get angry when a white woman fades with a black man?\r\n\r\nexcuse me, it happens. I am a white/European man with good standards. People in this world are sick minded and can\'t see that experts claim color is sidelined. my hubby and i, professionally, Love black woman and <a href=\"https://www.scoop.it/t/asiame-com\">AsiaME</a> African woman almost always myself. I\'ve always imaginary myself with a black woman, if they are not, Then a philippine woman. Also woman who\'re mixed too. I\'ve dated an Asian woman that was when combined native American, A Latino that was combined with Puerto Rican, black and Italian, A jewish, A japanese, A black woman that was combined with white, Korean and indigenous. in addition, I\'ve just dated vertical woman of one color. you are right, There are woman that i dated who had three color mixtures in them but i was fine start. I married 4 times in my expereince of living with 1 Caucasian lady and 3 Italian woman. Italian woman find me more inviting and decent looking. I grew up with friends that loved woman of color and that dated mixed woman too. When i announced my father, Mother and 6 siblings to my mixed race significant other they were excitably shocked and shiven and they quickly said their names and hugged her like they knew her all their life. My father grabbed me by the arm and took me to your kitchen. he explained, \"you\'re sure son, Its okay if you date or marry a woman darker. I do not have anything against that, It\'s selection but don\'t be afraid. You did not find no other girl darker and decent, I was proud that my family accepted her for her and not in addition she looked. Me and her dated for 5 years and broke up because her ex lover who is (western european) Wanted her and also forced us to brake up. I didn\'t even know she dated away from her race before. But I remind all my girlfriends them to be gorgeous, Exciting and so special in my eyes. I am 59 and hopefully I can marry Kelly (The woman that is when combined Korean, White and local) And tell her that i am sorry for ignoring her at my sister\'s wedding and yelling at her. narrow models look great we broke up, I miss her that much. Num:12:1: And Miriam and Aaron spake against Moses due to weather change Ethiopian woman whom he had married: For he had betrothed an Ethiopian woman. God never were unsatisfied with Moses\' marriage with a women of another race,utilize this type he change now? ( Full way around the problem )\r\n\r\nWhy when a biracial man is with a white woman they are viewed an interrracial couple but with a black woman they are believed to be a black couple?\r\n\r\npurely because biracial (Both black bright) Men in America largely are treated usually as black men because majority of the time they look black so their are judged as black men. of course, after being with a black woman, Nobody sees the particular, Since are both judged as black; They are thought a black couple, no interracial couple. classmates and friends, Black guys are family focused, So most black girls only likes black guys. Black older women sees white people as gold diggers, consequently all. This will be true, If you peer at famous black guys, as soon marry white girls, and turn richer later, Then women might be to court and seek divorce, Taking almost half of their wealth with each other. this does not apply to all white girls though. ( Full pick-up ).',71,227,'2019-07-22 21:32:10'),(909,'Elna',68,228,'2019-07-23 06:24:27'),(910,'elna.marais@gmail.com',69,228,'2019-07-23 06:24:27'),(911,'0829653018',70,228,'2019-07-23 06:24:28'),(912,'Sal dit moontlik wees om julle vanoggend te sien',71,228,'2019-07-23 06:24:28'),(913,'CalvinSourb',68,229,'2019-07-23 06:59:36'),(914,'xrumer888@outlook.com',69,229,'2019-07-23 06:59:36'),(915,'86523894334',70,229,'2019-07-23 06:59:36'),(916,'is definitely topographical deregulation through Peru\r\n\r\nwearing 2009, 33 guests past away in clashes around stop exploration protesters and thus criminal court. A Peruvian statute reducing eco safeguards enhance assets initiates efficiency pattern debates.\r\n\r\n\"usually lose heart, Peru\'s initial executive provider magazine anxiously editorialised four days after the us govenment passed away the right regulation stress-free environmentally friendly defends so as to boost personalised funds, most likely in mining and moreover hydrocarbons.\r\n\r\nThe anxious asking summarised the mass media advertising good when mining employers tough government is the measurement of when they believe the myteriously named \"Peruvian sensational\" A decade of all extreme macroeconomic overall performance is coming to an end.\r\n\r\nPeru\'s spate over cost effective growing muscle mass predominately resembled a person\'s world soared enzymes, distinct using taiwan. earth\'s second widest copper mineral designer, Peru holds13 percentage behind intercontinental real estate agent supplies, and simply enzymes form over fifty percent of all Peruvian exports.\r\n\r\nPeruvian mediahas held accountable government overregulation for the cost-effective slowdown (development within 5.02 for every cent with 2013 to help 2 can easily June 2014), instead of declining nutrient premiums with a growing global marketplace variety hydrocarbon.\r\n\r\nthe work high level needed declare methods to grow stock options, inclusive of green dom regularions, so they can maintain the economic success charge. merely is enviromentally friendly pour legislation adequate the time a lot of Peruvians want unlikey believed this kind of macroeconomic \"marvel, specially in the Andes wherever exploration concessions totally focus, together with general has an effect on may very well be piled up considered day to day?\r\n\r\nin authorized statistics, just about one third of the nation\'s culture lifetimes the following the poverty fishing line, moreover unceasing babe lack of nutrition all the same impacts on concerning 20 pct 30 individuals of. Lima internet marketing business then politics elites have actually reaped some great benefits of the national mining boom even as second regions of the united states particularly the farm settings expectations don\'t just native to the island lower income but environmental dings, that essential endangers localised livelihoods. recently the federal government hazards exacerbating the social separate even more using minimizing enviromentally friendly guards conserving <a href=\"https://www.bitchute.com/video/Fr4d9rkAogfb/\" />latamdate.com</a> communities from the effects of exploration.\r\n\r\nas an alternative to policies\r\n\r\nthe fresh new legal system looks optimize expense caused by constraining the ability together with six years old ministry of organic, Among new programs. because of this, the environment ministry\'s whole body because diagnosis and consequently exam (OEFA) Will struggle to penalise suppliers on breaking a bunch of external defends many years, obviously circumstances exist unique.\r\n\r\nchanges in environment zoning show that the ministry regarding earth will no longer be able to create relationship save areas and specific zones, may the particular obtains some of the permission of ministries, including the ones with legal requirement to build up extractive fields.\r\n\r\nnot surprisingly, brother Pulgar Vidal,The minister among the environmental selected against the bill. when been seen in he or she had not been entirely in complete agreement utilizing law\'s authorities prolonged ago expressing that the man\'s market \"doesn\'t necessarily believe it has damaged or lost energize\" He recognized that a small grouping institutions currently have tried to maximum the environmental principles and \"cure\" one particular OEFA, dreading its effectiveness.\r\n\r\nthroughout the last four numerous years (2010 2013), fees chosen due to OEFA maxed $70m, numerous provided to the exploration companies. The project using the letter by Peruvian establishments was likely with route protests in late June and so before time July red by human legal rights. arrest forumsand hdtv discussions was what\'s more tidy.\r\n\r\nThe united state\'s resolution concerned the critique inside global marketplace community, on the grounds that Peru is very much allowed to be organizer close to 10,000 delegates the particular 20th un norm of climate change expo of the Partiesin December. the case really should prepare joining green paperwork to master around the world pollutants to be able abate the deteriorating involving global global warming.\r\n\r\norganisations received from Peru on top of that in foreign lands questioned a new \"moral principles\" through the provider national designed for driving a contradictory enterprise to groups needed to global warming, past diminishing green defends to encourage investing, In spite that protective eco programs are acknowledged to improve the grade of investment strategies.\r\n\r\nThe government\'s sell possibly may instigate an additional step towards physical violence. Peru\'s favorite familiarity in crucial\r\n\r\nthrough 2009, from the course of mike Garcia\'s strategy, 33 women and men passed away (23 cop and even 10 home owners) as well 205 other they were wounded in your Peruvian amazon town of Bagua after a chaotic confrontation within the police native protesters. the local communities felt protesting a decree passed towards execute us states Peru free operate arrangement (TPA), makes it possible for extractive companies with the inclusion of woodland, vegetable oil, but also mining to penetrate his or area without the best deliberation allow involving local communities, good 169 ILO you can also use conference.\r\n\r\nin this way, 53 players ultimate ancient communities take trial period your protests. there are no actions to cops mixed up in assault. Economists Jeffrey Sachs and tim Warnerrevealed that a great many \"areas as well as helpful natural bio wide range show the tendency acquiring to build whole lot gradually over time in order to below average, Sociat scientist Terry. Karl usually announced \"ones paradox out of a sufficient amount, whereby shallow, light,light growing for you to oil and gas removal seriously weakens state\'s companies.\r\n\r\nIt is clear an gdp the states isn\'t really take under consideration valuable shapes of website removal, comparable to clear expertise on the other hand eco destruction. A river cleared just isn\'t covered by a exploration organisation\'s outlay, neither does it have reduced your gross domestic product. cures may become extremely more refined with regard to nations not unlike huge biodiverse Peru, as their Amazonian territories cause carbon take in the global climate change urgent.\r\n\r\nYale University\'s the environmental ability list has a high ranking Peru seeing that 110 in 175 regions. despite Peru\'s eco finance companies end up being relatively recent and still really quite fragile, is to be had considerably improved over modern times to the point where restless mining the reputable companies <a href=\"http://latamdatereview.blogspot.com/\" />latamdate.com</a> lots of associated with stress and anxiety may have been the us government put on control to involving them in.\r\n\r\nthe open note penned near Peruvian organisations conclusions calling for a \"replacement ideas\" involving governance. the device supports a \"extensive <a href=\"https://latamdatereviews.wordpress.com/\" />latamdate.com</a> and moreover see-through dispute in the region of natural website tools, consisting of determined communities and environmentally friendly operations to funds. to actually attempt however, the problem over environmentally friendly laws, governments have the duty to consider democratic, see-through not to mention technologically educated ideas, not just in prevent environment earthquakes with improve trusted business concerns, but to preclude new mismatch that would end in violent episodes.\r\n\r\nVladimir Gil Ramon really is a addict at the environment initiate core with respect to environmental resource efficiency (EICES) found on Columbia collage, plus school person in the environmental growth Master\'s platform along with the Social development team using the Catholic university or of Peru (PUCP).',71,229,'2019-07-23 06:59:37'),(917,'test',68,230,'2019-07-24 11:00:07'),(918,'Test@gmail.com',69,230,'2019-07-24 11:00:07'),(919,'836750458',70,230,'2019-07-24 11:00:07'),(920,'test',71,230,'2019-07-24 11:00:07'),(921,'stadsig.co.za',68,231,'2019-07-25 09:48:48'),(922,'micgyhaelDop@gmail.com',69,231,'2019-07-25 09:48:48'),(923,'micgyhaelDop@gmail.com',70,231,'2019-07-25 09:48:48'),(924,'There is an gripping  promoting in damaged of victory. stadsig.co.za \r\nhttp://bit.ly/2NUVVQ6',71,231,'2019-07-25 09:48:48'),(925,'nickie van zyl',68,232,'2019-07-26 16:40:09'),(926,'nickvnzl@gmail.com',69,232,'2019-07-26 16:40:10'),(927,'0827162374',70,232,'2019-07-26 16:40:10'),(928,'Property single level with garage',71,232,'2019-07-26 16:40:10'),(929,'Anna Gladys Neethling',68,233,'2019-07-29 05:50:30'),(930,'agneethling@gmail.com',69,233,'2019-07-29 05:50:30'),(931,'0829237296',70,233,'2019-07-29 05:50:30'),(932,'Soek huis vir R2.500 000 in sekiriteits kompleks.',71,233,'2019-07-29 05:50:30'),(933,'Asanda',68,234,'2019-07-30 05:31:09'),(934,'mathafeni2016@gmail.com',69,234,'2019-07-30 05:31:09'),(935,'0737795643',70,234,'2019-07-30 05:31:09'),(936,'Enquire about houses',71,234,'2019-07-30 05:31:09'),(937,'EllGomi',68,235,'2019-07-31 18:47:40'),(938,'ellEndach@daff.pw',69,235,'2019-07-31 18:47:40'),(939,'88491764816',70,235,'2019-07-31 18:47:40'),(940,'Synthroid 75 Mcg No Prescription Cialis Forum Doctissimo Order Propecia Online Australia  <a href=\"http://getpharmacyonline.com\">viagra vs cialis</a> Buy Generic Cialis From India Acheter Avec',71,235,'2019-07-31 18:47:40'),(941,'Johan Kitshoff',68,236,'2019-08-01 17:07:50'),(942,'johanki@outlook.com',69,236,'2019-08-01 17:07:50'),(943,'0618851015',70,236,'2019-08-01 17:07:50'),(944,'What is price of unit type 4 and how many is available?',71,236,'2019-08-01 17:07:50'),(945,'Kobie Botha',68,237,'2019-08-01 19:00:25'),(946,'kobienel58@gmail.com',69,237,'2019-08-01 19:00:25'),(947,'0786708417',70,237,'2019-08-01 19:00:25'),(948,'Would like to view property',71,237,'2019-08-01 19:00:25'),(949,'FrankBep',68,238,'2019-08-01 20:29:19'),(950,'xrumer888@outlook.com',69,238,'2019-08-01 20:29:19'),(951,'89214179213',70,238,'2019-08-01 20:29:19'),(952,'Women look up\r\n\r\nHappy global Women Day, Tumblr!\r\n\r\nThis global Women Day, Let take time for yourself to celebrate and appreciate all women, With an especially strong focus on those who may face more social and political hurdles than others. To our friends who ladies of color, trans, Immigrants, Refugees, Women with ailments, All sexualities see you, And we grateful you here.\r\n\r\nTo see what other community is saying about International Women Day, Head over to the investigations. It full of pleasant art, excellent GIFs, And wonderful instruction.\r\n\r\ncaused by Steven McIntosh (entertainment reporter)\r\n\r\nTo Google Images at the moment, Says photography Mihaela Noroc, Search women do as she informs me. many results come back.\r\n\r\nDo you can see? She demand. Sexualised images, legal right? much of the women in the top pictures are wearing high heels and revealing clothes, And most fit into exactly the same thing physical mould young, thin out, crazy, most excellent skin.\r\n\r\nBeauty constantly is like that, Mihaela says. woman, Treating them in a very sexualised way, Which is miserable.\r\n\r\n\"Women are not this way. we have got our stories, Our struggling, Our stamina, But we just need to be represented, Because young ladies, They see only images something like this every day, So they need to have more confidence that they can look the way they look and be considered beautiful.\r\n\r\n\"however,though, She gives increase, Is associated with, Because we are all impacting these images. Has just released her first usually book, Atlas of organic, Which features 500 of her own portraits of women.\r\n\r\nThe Romanian photographer meaning of beauty, on the flip side, Appears to be that there are no definition. The women are a number of ages, employment opportunities and backgrounds.\r\n\r\nare interested in my pictures because they portray people around us, people around the street, Mihaela puts in plain words.\r\n\r\nWhen we demonstrate beauty and women, We have this big, Unachievable way of portraying them.\r\n\r\n\"So my pictures are very natural and simple. along with is, strangely, A big surprise to anyone. Because usually we are not seen like that. Of the book 500 portraits has a caption with details about where it was taken, <a href=\"https://www.crunchbase.com/organization/charmdate\">charmdate review</a> then, oftentimes, topic.\r\n\r\nThe outlets are varied, to build it mildly. they include Nepal, Tibet, Ethiopia, malta, n,upper Korea, malaysia, mexico, china, Afghanistan, great britain, the us, And the Amazon jungle.\r\n\r\nSome destinations, on the, Proved more troublesome than others.\r\n\r\nApproach women I want to photograph on the road. I explain what my project talks about. sometimes I get yes as an answer, commonly I get no, That really depends on the actual I in, She talks about.\r\n\r\nYou go to a more conventional society, A woman is going to have a lot of pressure from society to be a certain way, And her day to day life is carefully watched by somebody else.\r\n\r\n\"So she not going to accept being photographed very easily, Maybe she have to permission from the male part of her family.\r\n\r\n\"In other parts of the world they are extremely careful because could possibly be issues concerning their safety, like in Colombia. as these had Pablo Escobar and the mafia for so many years.\r\n\r\n\"So they\'re \'OK, So you going to take my picture but I likely to be kidnapped after that because you part of the mafia and you not who you saying you are adds: Somebody were to start this project just with men, It would be more convenient, since don have to ask permission from their wives, sisters or mothers.\r\n\r\nYou take a photo, it usually raw, And that means it very blank, Like a paint, You don <a href=\"http://www.bestdatingreviews.org/datingsites/CharmDate\">charmdate review</a> have the colours you had in the certainty.\r\n\r\n\"So I try to make it as vibrant and colourful as it was in the place. But I not making anyone skinnier or anything of that ranking, didn\'t, Because that very aching.\r\n\r\n\"Because I also suffered as a woman growing up from all kinds of trouble, I wanted to be skinnier, Look a particular way, And that was also springing out of the fake images I saw in day to day life.\r\n\r\ndays, The folks, The highly successful people of our planet have set this unachievable and fake beauty standard, And it not at all easy for us as women to relate to that, she says.\r\n\r\nKardashian has 100 million admirers on her Instagram page and I have 200,000, So imagine a real difference it astonishing. But tiny, gently, I think the message of natural and <a href=\"https://about.me/charmdate\">charmdate review</a> simple beauty will be spread around the world.\r\n\r\nGood runners, She a laugh, You able to walk and explore a lot. in fact, It not an entirely new thing, But there was a different type of music associated with it, very good vibe to it, Compared to early 80s with Doro and Lita Ford and more the rock genre. More and more bands came and maybe had a bit of the same sound originally. First certainly was called gothic metal, A name I didn become more knowledgeable about Frontwomen vs \'Female Fronted Metal (jumping Highs and Brutal Lows).',71,238,'2019-08-01 20:29:19'),(953,'clarissa',68,239,'2019-08-02 16:19:02'),(954,'clarissablanche17@gmail.com',69,239,'2019-08-02 16:19:02'),(955,'0833205173',70,239,'2019-08-02 16:19:02'),(956,'please send further details on options to buy and accommodation specs in the region of between 1.8 to 2.0 many thanks',71,239,'2019-08-02 16:19:02'),(957,'Peter',68,240,'2019-08-03 07:17:21'),(958,'pbeck@mweb.co.za',69,240,'2019-08-03 07:17:21'),(959,'0824972904',70,240,'2019-08-03 07:17:21'),(960,'Please call me as soon as possible re  a 2 bedroom 2 bath and garage house',71,240,'2019-08-03 07:17:21'),(961,'EllGomi',68,241,'2019-08-06 11:40:10'),(962,'ellEndach@daff.pw',69,241,'2019-08-06 11:40:10'),(963,'82382239573',70,241,'2019-08-06 11:40:10'),(964,'Acquistare Cialis Con Postepay Is Trazodone Available In Australia Cialis Tarif  <a href=\"http://tadalaf20mg.com\">online pharmacy</a> Cialis Acquisto Farmacia Italia',71,241,'2019-08-06 11:40:10'),(965,'tobie Cilliers',68,242,'2019-08-09 04:23:30'),(966,'tobie.cilliers@gmail.com',69,242,'2019-08-09 04:23:30'),(967,'0844456976',70,242,'2019-08-09 04:23:30'),(968,'Interested.',71,242,'2019-08-09 04:23:30'),(969,'KeithEstak',68,243,'2019-08-09 08:48:54'),(970,'jarrybrown@outlook.com',69,243,'2019-08-09 08:48:54'),(971,'87748757549',70,243,'2019-08-09 08:48:54'),(972,'japanese people dating sites iphone app singapore\r\n\r\nbecause of ideas for example like real time converse, movie clip chitchat in addition,yet flirts, You will quickly consider reaching other many men also women since Singapore who want to find seriously like junctions. rustic, handcrafted lighting ms Kang could fail to show Singapore account cell numbers, states some app also has been extremely fast getting your hands on vapor with this. associated with scenario it merely requires for you to upload an instance against your pda and get together by way of your facebook or twitter narrative to get started with your handheld pursuit of appeal. do it yourself or seeing each other, Hornet is an efficient solution whether on cellular phone at the same time to a computer\'s desktop.\r\n\r\nsince LunchClick, Blindfold is credited throughout the Social creativity network on top of that reports the i. d,identity amounts of prospects to pc registry of partnerships certificates ensuring partnered people do not reach specific method to through to system. After a shorter time along with swiping deserted, i had put together completely exhaust people to ogle. It premiered doing Sseptgapore. It is no wonder that boys for instance,akin to mister goodness me have gotten converts. subsequently, not too so many different. the excitement provide you with showcases all the fresh folks you can help allowed who is completely new to the community. It unquestionably nearer to home given the fact that is actually localised. so that for the way Bumble comes even close to its very own nymphomaniac brother Tinder, decide the financial quotation marks who were from the outlines of personalized future harmonizes with were like outtakes hailing from 9GAG.\r\n\r\none of the best (together with most difficult) going out with apps lunch breakClick essentially owns involving which usually app has a tendency to grimace for the very thought of laid back flings. take great delight in must be excursion it is realize success how you not online in the domain that means something eventually.\r\n\r\ninternet dating blog will most certainly be fantastic everywhere, and Singaporeans are definitely not excluded your nonsense. We tumble and we know that many of us incorporate dating software for different motives: a couple of relating to sexual intercourse, as well as others for many something nastier. Tinder Tinder is also typical on the world increase numerous, It could be simply some of the software that particular first ignited build up to produce online dating sites. the ins and outs: exactly, Tinder teaches you decking of background in order to swipe left out as though or exactly pass to indicate the recognition. Then noted communicating for a vast time period. Tinder users go for to connect to their own personal Instagram trading accounts and also flaunt their first rate singers provided by Spotify in their profiles. most recently, The iphone app besides came across the idea of swipinsideg gangs, to provide a web church internet dating. consumption: yet still, the <a href=\"https://www.pinterest.com/datingrussiangirl/\" />russian girls dating</a> sky seeing that the limitation may not at all times be more such a neat thing because. occasional complies with Bagel seeing increasing popularity Bagel CMB is this situation among Singaporeans year. and you\'ll have 24 long periods to point your favorite desire. Then critiques discussion until the chat ends in seven days. because Tinder, which always shows you aggressive user profiles of individuals for you to pick from, cup of joe suit Bagel is those blog utilize developed to acquire you a good fit. consequently bagels this service includes typically curated accessible upon your preferences then disposition fashion. equally, The schedule most typically associated with seven days effectively places burden on drinkers in order to their precious the discussion some place else but also succeed beyond the software. it is not in which passive wallflowers! beauty of the software, even so, Is that each one of the principle details are laid out for you before it starts. ingestion: regarding you\'ll some information at Tinder, a number of feel like CMB seems to have too few kinds for everyone. the few days, that you might end up being given to any bagels during the day as well as you might eventually give up on the app issue carries on for days. in case the lady choose this is not to and / or maybe produces extended periods due date out of 24 schedule! to identical gender fits, all sides can start our talk. what\'s the deal,what it does: Happn shows that you user profiles of those who surpassed driveways to you essentially. planning to also say the number of times you will have intersected routes! As cliched as seems, Happn has produced that may looked extremely tough thirty years ago possible thus. So if you think in experience, Happn is here so that you connect unquestionably the opening in your. consumption: it sounds a bit creepy that your estimated where to put it are followed, previously used, and also exposed with the getting to know software. bigger, obviously if belongings take advantage of nasty in the one sided dialogue been put unsuitable, the operator may indeed switch many stalker alert on and hanging out through resorts your entire family normal. apart, is the main odds that that someone you\'ve was however app perfectly? relevant: throughout the name its own matters, You often will detect its iphone app often is alone for the purpose of Southeast Asians. meant for Singapore, The application may well be named as one of the vital successful those of you that want a romantic relationship. the way it operates: Paktor will advise you the amount of people who have visited and also popular those guide. you would have to discover a person\'s account to get what person, and that will require some dough. It absolutely closer to home actions lead to it is very localised. also there is a substantial number of fans around the iphone app, With quite a few striving a serious relationship.\r\n\r\nthings you must appreciate internet dating\r\n\r\nthis kind of LunchClick, Blindfold is authorized inside the Social improvement socialize in addition,yet investigations the i. d,identity numbers of pc users upon register of your marriage data guaranteeing attached people do not allow his or strategie to be able to the working platform. After quick visit involving swiping kept, i did completely deplete all of your people to ogle. It was launched across Sseptgapore. It is obvious why young men like for example mister oh yea tend to be converts. which means that, not that several. the thrill have showcases all the modern online marketers so it\'s possible to help encourage who is new to the community. It absolutely nearer to home given the fact that is incredibly local. in addition to being depending upon how Bumble comes even close to it has the nymphomaniac friend Tinder, companies quotations have got involved in the pages of excellent capabilities tournaments were like outtakes within 9GAG. online dating service personals enhance your odds Nr <a href=\"https://russiangirldating.wordpress.com/2019/06/19/to-know-if-the-russian-girl-has-a-crush-on-you-see-if-she-has-these-three-signs/\" />russian girls dating</a> krlighed gary ondt citat copulation dating in bangkok\r\n\r\nKoti sent in a discussionBest web adorning outfit In Hyderabad designed for design, web design Solutionsthe is actually how to rise users in gift idea days, you are able to put financial resources in order to diners, What is the proper marketing strategy for public customers, all online strategy is helpful for all sorts of businesses? For associated with challenges primary single pick up this is certainly research engine much better website. an internet site displays an individual\'s logo and allures potential clients. And yet one more plus point is the web page are going to attain the individuals who preferably need your product.',71,243,'2019-08-09 08:48:54'),(973,'FrankBep',68,244,'2019-08-09 09:24:42'),(974,'xrumer888@outlook.com',69,244,'2019-08-09 09:24:42'),(975,'86926523714',70,244,'2019-08-09 09:24:42'),(976,'Why online dating services Has Increased in The Last Two Decades\r\n\r\ninternational dating has increased rapidly from the last 20 years. One of the most notable trends in the world of dating is that more people are going outside their racial classes in order to find people who are really of interest to them. Online dating has become very prominent in recent years and may expanding.\r\n\r\nIt been estimated that perform properly countries has expanded in number according to Pew Research Center reports. It estimated there presently exists close to ten million couples in the country that contain people of different ancestral backgrounds. These <a href=\"https://www.foreignsinglesfinder.com/russian-ukrainian/charming-date-review/\" />charmdate review</a> include who find themselves married or those who are in relationships.\r\n\r\nin all reality, The online singles scene has expanded to include many sites that specifically cater to those who have an interest in this. Places like online dating sites have started up over the years to cater to people who want to date each other regardless of their backgrounds.\r\n\r\nMore people <a href=\"http://charmdatecom.wixsite.com/charmdate\">charmdate review</a> who are meeting each other this way are also marriage. The Census state that have been close to 100,000 couples that entailed one white person and one black person in 1990. The number has risen to a just 400,000 couples as of 2005 and will continue to increase if this trend is steady. <a href=\"https://seekbride.livejournal.com/\" />charmdate.com</a> The Pew Research Center says that this increase to 4.8 million couples when Asian and Hispanic people are added to the mix.\r\n\r\nThe biggest point about such online personals is that it fail to be a taboo topic. It was a disputed concept in the past with a large number of individuals, notably whites in the South, looking ban the practice. Today there are no more laws that outlaw uniform dating, Thus making this activity a little easier for all people to get involved with.\r\n\r\ntruthfully, online dating services estimated that conservative leaning states have been accepting of such dating. mississippi, Georgia and new york are among the site most popular states, Joining liberal places like ca and New York among places where this activity is welcome in.\r\n\r\ngenerally, It is logical as to why online love is growing in popularity. This is an activity that is becoming noteworthy as people begin to have more interest in triggered of different cultures. what\'s more, They find that by expanding their pool of dating nominees, It is often easier for certain people to find others of use than if they were restricted to just dating people within certain racial boundaries. The liberating feeling that comes with getting out of one racial limits when dating is often a reward on its own.',71,244,'2019-08-09 09:24:42'),(977,'FrankBep',68,245,'2019-08-10 11:41:40'),(978,'xrumer888@outlook.com',69,245,'2019-08-10 11:41:40'),(979,'81635967486',70,245,'2019-08-10 11:41:40'),(980,'finding the right Your Perfect Partner on a Russian Dating Site\r\n\r\nOver the last few decades many Western men have decided to search in Russian dating sites to meet Russian women that are wanting love romance and marriage. Many guys have met a <a href=\"http://www.datingwise.com/review/charmdate.com/\" />charmdate review</a> Russian women while living or working abroad, and some live abroad in Russia with a Russian women. risk usual way to meet a Russian women is through a Russian dating site. Despite all the negative stories in the news and press, Russian paid dating sites still remain a good place to meet ladies from Russia, Ukraine and other FSU states. Here are a few ideas to help you succeed in your search while using a Russian dating site.\r\n\r\nCreate a seasoned profile\r\n\r\nThe first and most important first step on a Russian dating site is to create a profile with as much regarding you as possible and to upload some recent good quality photos. As is the case with men <a href=\"https://charmdatescamreviews.wordpress.com/\" />charmdate review</a> first of all,first thing attracts a man to a lady on a dating site is her photos, It is identical for the ladies, So it\'s important to upload some good quality photos, this would mean include any photos you are unlikely to get very much response if any at all. Don upload a photo that was taken in the past or one of you in a drunken state. You don want to seem like liar or a slob. it\'s rarely good to include any photos with any form of nudity.\r\n\r\nAlways be polite and respectful\r\n\r\nSome very obvious ways to make an impression on a Russian lady is to treat her like a lady, Show respect to her from start to finish, Never tell rude or offensive jokes to a lady you have only just started chatting to, And critical do not start to talk about sex, this is basically the biggest turn off for a Russian women, She will immediately think want to her for sex alone.\r\n\r\nhistoric know your lady well.\r\n\r\nthe easiest method to keep a Russian women interested in you, <a href=\"https://www.scoop.it/t/charmdate-review-1\">charmdate review</a> Is to show you are anticipating her as a person, Show desire for her family, Country and way of life, Better still take some time out before hand to learn a little about Russia, ruskies life and culture, This will show her you really would like to her, And not just taking into consideration a quick one night\r\n\r\npace yourself don rush into anything\r\n\r\nMany new men to the Russian dating world are amazed at all the attractive women profiles, Because of what so many men have heard or read in the press they immediately presume the beautiful ladies are ready to marry the first guy that comes along, This is not the case, These Russian women have allot of attention from internationally and often are in no rush to marry, They like to take their time and be sure of the man they decide to have a relationship with. It is not a good idea to adore a women over a few weeks and be asking her to marry you before you have even met. take your time, become familiar the lady well, And let her know you are anticipating her as a person, Play it cool and soon enough usually there are your perfect partner.',71,245,'2019-08-10 11:41:40'),(981,'Neil Viljoen',68,246,'2019-08-11 16:20:51'),(982,'nrj.viljoen@telkomsa.net',69,246,'2019-08-11 16:20:51'),(983,'0825512281',70,246,'2019-08-11 16:20:52'),(984,'What facilities are in the estate. Frail care or anything else.',71,246,'2019-08-11 16:20:52'),(985,'Andries Visser',68,247,'2019-08-13 06:48:22'),(986,'sandrav@telkomsa.net',69,247,'2019-08-13 06:48:22'),(987,'0721274408',70,247,'2019-08-13 06:48:22'),(988,'Soek bietjie meer inligting oor die projek..... Stuur via email asb.',71,247,'2019-08-13 06:48:22'),(989,'ttg tam',68,248,'2019-08-13 15:59:41'),(990,'ttg125@yahoo.com',69,248,'2019-08-13 15:59:42'),(991,'0748498485',70,248,'2019-08-13 15:59:42'),(992,'get  in touch',71,248,'2019-08-13 15:59:43'),(993,'Ockie van Zyl',68,249,'2019-08-14 11:26:55'),(994,'ockertvz4@gmail.com',69,249,'2019-08-14 11:26:55'),(995,'072 373 9060',70,249,'2019-08-14 11:26:55'),(996,'wil graag weet wat die unit 4 en 3 prys',71,249,'2019-08-14 11:26:55'),(997,'latin girlszru',68,250,'2019-08-14 16:39:22'),(998,'latinwomen@mail.ru',69,250,'2019-08-14 16:39:22'),(999,'85274372826',70,250,'2019-08-14 16:39:22'),(1000,'story book ends in domestic strife morass Albuquerque Journal\r\n\r\n..................\r\n\r\nHe only agreed to be so nice.\r\n\r\nShe was smitten almost as soon as she found him on an online dating website. tall in height, Charming and rewarding in that rural, Rancher kind way, Jimmie Stuteville were the perfect man for her.\r\n\r\nHe reminded her of balance, Her late man.\r\n\r\nJudy Holcomb, 66, Says she met a man who seemed a perfect diamond necklace for her. But after 10 a long time, the marriage crumbled and, she says, It ended with an begin to kill her. No had been ever filed. (due to Judy Holcomb)\r\n\r\nWas the love of my entire life, The nicest, Kindest man globally, And I was ravaged when he died, Judy Holcomb said of the man she had loved for 25 years until his death of medical conditions in May 2003. Here comes this man who compares with him, tells you like him, Even wears an identical size clothes. And he telling me God sent him to help me with my children, And I believed him because I wanted stop crying, And I your pet in.\r\n\r\nHolcomb was a domestic violence hearing officer for the 7th Judicial District in Socorro, a co-employee professor at New Mexico Tech and a mother of seven children, which includes five children she and Bill had adopted from Vietnam. She was two weeks shy of her 53rd birthday and thinking she had just been given the best gift: someone to heal her heart, Help her raise her teenagers and run her 26 acre ranch near Magdalena.\r\n\r\nThey married in sept 2004, Six weeks as they met.\r\n\r\nhaving 2005, She underwent in vitro fertilization and gave birth to the couple son.\r\n\r\nTo her visitors in the far flung ranching communities of central New Mexico, her lifetime seemed nice. Her <a href=\"https://latamdatereviews.wordpress.com/2014/08/28/how-to-have-a-nice-first-date-with-a-latino-lady/\" />dating a latina</a> children were bright and sociable. Several of the girls were attained horsewomen and royalty in local rodeos.\r\n\r\nWere so fun and so well mannered, great friend Dawn Weaver said. assumed Judy kids. After 10 a long, the marriage was through.\r\n\r\nThe Holcomb family in happier times as the family attended the wedding ceremony of oldest son Zach in 2003. (for Judy Holcomb)\r\n\r\nHolcomb said she had noticed Stuteville secrets. He had been married frequent times, At least two of those marriages ending in annulments over allegations of fraud.\r\n\r\ncourt documents filed in 2003 by a Tucson woman to whom Stuteville had been married for eight months, as an example, Accused him of fabricating expertise and making misrepresentations and omissions concerning his financial worth and abilities.\r\n\r\nHolcomb contends he did actually go woman to woman, Mooching off these kind of. have also been what he was doing to her, She being said, Living off her income along with monthly $1,000 Social security benefits each minor child from her previous marriage received after their father death. Holcomb said she believes Stuteville also knew that she was successor of an aging aunt sizable estate.\r\n\r\nSeveral attempts to reach Stuteville by telephone for this story were not successful.\r\n\r\nexperimented with kill me Sept. 17, 2014, Things developed far darker for Holcomb.\r\n\r\nwedding, at the same time, Had probably crumbled. Holcomb said she had told Stuteville she wanted the divorce.\r\n\r\nso what happened that night changed her life forever. She suffered serious injuries have been led to permanent damage, Which she says her husband caused hoping kill her. A grand jury eventually heard the case against him but didn\'t indict. She has not seen her younger kids since that night, And a court has decided that neither parent should have custody of the children here.\r\n\r\nto be able to court, Hospital and state Police records: Holcomb replies she woke up at 4:30 that morning at her Magdalena ranch because she had intends to meet her daughter AnneMarie, Who life in Socorro, On her tactic Albuquerque.\r\n\r\nStuteville, She these, had been up and standing next to the stairwell next to one of her teenage sons.\r\n\r\nShe got word Stuteville say, fully grasp this done. She was dragged to a different one flight of stairs and thrown down again. She was dragged back up to the top of the stairs and thrown down for a third time.',71,250,'2019-08-14 16:39:23'),(1001,'BradleyKneef',68,251,'2019-08-14 22:58:09'),(1002,'raphaerenoPedgeGor@gmail.com',69,251,'2019-08-14 22:58:09'),(1003,'87245283958',70,251,'2019-08-14 22:58:09'),(1004,'Hi!  stadsig.co.za \r\n \r\nWe make offer for you \r\n \r\nSending your commercial proposal through the feedback form which can be found on the sites in the Communication section. Contact form are filled in by our program and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This method improve the odds that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com',71,251,'2019-08-14 22:58:09'),(1005,'Wanda',68,252,'2019-08-17 04:42:30'),(1006,'dupwel@law.co.za',69,252,'2019-08-17 04:42:30'),(1007,'0836337788',70,252,'2019-08-17 04:42:30'),(1008,'Ek soek eiendom om te huur',71,252,'2019-08-17 04:42:31'),(1009,'Tashwille',68,253,'2019-08-17 10:07:50'),(1010,'tashzwaan@gmail.com',69,253,'2019-08-17 10:07:50'),(1011,'0822205953',70,253,'2019-08-17 10:07:50'),(1012,'I am interested in the house',71,253,'2019-08-17 10:07:51'),(1013,'Anthony Forbes',68,254,'2019-08-18 07:03:06'),(1014,'tony.forbes1952@gmail.com',69,254,'2019-08-18 07:03:07'),(1015,'0835005276',70,254,'2019-08-18 07:03:07'),(1016,'Need more info size of plot & house',71,254,'2019-08-18 07:03:07'),(1017,'Noluvuyo',68,255,'2019-08-18 15:34:29'),(1018,'noluvuyongesiebot@gmail.com',69,255,'2019-08-18 15:34:30'),(1019,'0781758192',70,255,'2019-08-18 15:34:30'),(1020,'I would like to know where is this development. And how much should you earn to qualify',71,255,'2019-08-18 15:34:31'),(1021,'Kennethpag',68,256,'2019-08-18 16:28:06'),(1022,'mher101059@yahoo.com',69,256,'2019-08-18 16:28:07'),(1023,'81739787935',70,256,'2019-08-18 16:28:08'),(1024,'Look what we entertain in the interest you! a angeliccontribution  http://murringdebo.cf/ct3qp',71,256,'2019-08-18 16:28:08'),(1025,'Peter Louwrens',68,257,'2019-08-19 06:07:21'),(1026,'peterl@rainbownp.com',69,257,'2019-08-19 06:07:21'),(1027,'0828941006',70,257,'2019-08-19 06:07:22'),(1028,'Please email brochure',71,257,'2019-08-19 06:07:22'),(1029,'Lungiswa',68,258,'2019-08-19 14:07:37'),(1030,'lnobakada@gmail.com',69,258,'2019-08-19 14:07:38'),(1031,'076 904 8436',70,258,'2019-08-19 14:07:38'),(1032,'May I send my brother to view the house for me.How much are the houses?',71,258,'2019-08-19 14:07:38'),(1033,'RobertPAB',68,259,'2019-08-19 14:07:55'),(1034,'receiving@pgtrainings.co.za',69,259,'2019-08-19 14:07:55'),(1035,'82458733576',70,259,'2019-08-19 14:07:55'),(1036,'Be part of our 5-day interactive training seminar to be held at The Capital 20 West Hotel Sandton, South Africa \r\nAnd The Jood Hotel in Dubai, UAE. \r\nCourses to be covered: \r\nSocial Media Master class, International Diplomatic Protocol & Etiquette, Management Skills For EAs, PAs & Admin Professionals, Advanced Executive PA Masterclass, The Effective Leader Master class, Strategic Talent Management For HR Professionals, Project Management Proposal, Logistic and Supply Chain Fundamentals, Certificate in Public Relations, Ethical Marketing, Certificate in Negotiation Skills. \r\nContact us to get the full brochures on info@pgtrainingprogrammes.co.za.',71,259,'2019-08-19 14:07:55'),(1037,'george',68,260,'2019-08-19 15:07:38'),(1038,'gclochner@gmail.com',69,260,'2019-08-19 15:07:39'),(1039,'0825656775',70,260,'2019-08-19 15:07:39'),(1040,'interested in nr 6',71,260,'2019-08-19 15:07:40'),(1041,'Lorraine Blignaut',68,261,'2019-08-21 07:54:13'),(1042,'lorraine@jirehtrading.co.za',69,261,'2019-08-21 07:54:13'),(1043,'0727694453',70,261,'2019-08-21 07:54:13'),(1044,'Price of unit 2 please.occupation date etc.thx',71,261,'2019-08-21 07:54:13'),(1045,'Lorraine Blignaut',68,262,'2019-08-21 07:55:17'),(1046,'lorraine@jirehtrading.co.za',69,262,'2019-08-21 07:55:17'),(1047,'0727694453',70,262,'2019-08-21 07:55:17'),(1048,'Price of unit 2 thx',71,262,'2019-08-21 07:55:17'),(1049,'Carmen',68,263,'2019-08-21 10:16:34'),(1050,'carmenvaneck05@gmail.com',69,263,'2019-08-21 10:16:34'),(1051,'0848563128',70,263,'2019-08-21 10:16:34'),(1052,'Aan wie dit mag aangaan, ons het begin Julie die trotse eienaars van \'n pragtige huis in Stadsig geword. Al problem is die vorige eienaar se huurders het spykers in die mure gekap en ander gate toe gevul en dit nie geverf nie. Hul het buite sover effe kom verf, maar die kleur stem nie ooreen nie. En dit maak ons as nuwe huis eienaars baie ongelukkig. Ons wil baie graag weet wat die kleur is wat buite die huise gebruik is en as ook binne. Indien daar \'n paar verskillende kleure binne/buite gebruik was op die verskillende huise wat alreeds bestaan sal ons al die name waardeer om teenminste erens te kom. As ook waar jul die verf gekoop het, want hul behoort ook rekords te hê. Want om die hele huis nou oor te verf is \'n bietjie ontmoontlik. En mens wil darem ook nie \'n huis vol sement/pollifilla kolle he en gate waar spykers uitgehaal is nie. Byvoorbaat dankie.',71,263,'2019-08-21 10:16:34'),(1053,'spanishwomenlzb',68,264,'2019-08-21 15:08:00'),(1054,'spanishwomen@mail.ru',69,264,'2019-08-21 15:08:00'),(1055,'87442318954',70,264,'2019-08-21 15:08:00'),(1056,'internet dating in Dublin\r\n\r\nGone are the days when online dating services was sneered at. Now people use the internet for shopping, paying your bills and booking holidays so why not dating?\r\n\r\nSince we seem to don\'t have the cash to socialise as much as we used to, The opportunities aren\'t always there to meet up with people in the classical ways and venues. Dating web site come in every shape and form.\r\n\r\nthe advantages are obvious you can talk (And tease) With someone whenever and can choose to reveal as much, Or very little, Information as you would like. It\'s also a very good way to meet individuals from different social circles. around the, One of the finest strengths is also one of its biggest disadvantages anonymity. not everyone you deal with online is honest, Or there might be little or no chemistry when you meet a \'match\' in person.\r\n\r\nWe all know some daters feel the need to exaggerate their physical appearance (upright, Dark and fshionable can often mean short, Overweight and balding in the real world. and that\'s exactly just the women). So stay away from chancers: One female friend who tried online dating still shudders at the memory of a date <a href=\"https://medium.com/@spanishwomen/travel-to-spain-find-the-spanish-beauty-f06fc1e9f9b0\">cute spanish girls</a> with a man in his 50s who had been using his son\'s picture to attract twentysomethings.\r\n\r\nBut for each and every dodgy story, there\'s successes.\r\n\r\nhow to handle: Be straight. E dating may be initially anonymous but pretending to be something you\'re not risks problems when you meet.\r\n\r\nWHAT to get around: Don\'t give out any info too early in a correspondence and take things slowly. Try to get as much details about someone in advance of meeting them.\r\n\r\nOpposites attract, Goes the old saying. But with respect to long lasting relationships, it is sensible that those of a similar outlook usually stay together. as a consequence, as going clubbing and shouting over the din at 2am to some random stranger you\'ve just met, Why require up a new hobby? It generally book club or a language or a flower arranging class, But meeting people who have similar interests means that you\'re already increasing your chances of romance. But don\'t just join a class that you have little interest in for the necessary steps to meet singletons. many people are genuine about their subject and won\'t appreciate the fact that their class is being used as a dating ground.\r\n\r\nthings you should do: Pick something you have a real interest in and want to know more about.\r\n\r\nWHAT to stay away from: Hobbies and night classes are not short hand for dating so you should limit your expected results to learning more about your chosen subject and meeting some new, intriquing, notable and like minded people. anything else is a bonus.',71,264,'2019-08-21 15:08:00'),(1057,'Susan Vogel',68,265,'2019-08-23 06:49:57'),(1058,'susanvogelstubbs@gmail.com',69,265,'2019-08-23 06:49:58'),(1059,'+27845600905',70,265,'2019-08-23 06:49:58'),(1060,'Would like more information on pricing\r\nRegards\r\nSusan',71,265,'2019-08-23 06:49:58'),(1061,'Mahen singh',68,266,'2019-08-24 08:52:13'),(1062,'mahensingh1@gmail.com',69,266,'2019-08-24 08:52:13'),(1063,'0716751840',70,266,'2019-08-24 08:52:14'),(1064,'Please contact me to discuss options',71,266,'2019-08-24 08:52:14'),(1065,'Mike DAUBERMANN',68,267,'2019-08-27 14:08:35'),(1066,'hoags@mweb.co.za',69,267,'2019-08-27 14:08:35'),(1067,'0217125535',70,267,'2019-08-27 14:08:35'),(1068,'Good evening\r\nI have ..Het Hoegte Huis as the  address for Reginald J Cowie\r\nCan you provide any other contact details please\r\nFor confirmation you can mention  \"Ikhwezi Trust\"',71,267,'2019-08-27 14:08:35'),(1069,'Agnes Macounie',68,268,'2019-08-30 22:27:08'),(1070,'chrisagnes.junior@gmail.com',69,268,'2019-08-30 22:27:08'),(1071,'0746149010',70,268,'2019-08-30 22:27:08'),(1072,'Please send me more info on this Developemen please.\r\nThank you.',71,268,'2019-08-30 22:27:08'),(1073,'HarlandItago',68,269,'2019-08-31 07:26:45'),(1074,'noreplymonkeydigital@gmail.com',69,269,'2019-08-31 07:26:45'),(1075,'84928215214',70,269,'2019-08-31 07:26:45'),(1076,'Hi there \r\nThe Local SEO package is built to rank local keywords for your local business in the google search and in google maps. We have researched for years what local SEO activities truly work and have put all in one single local SEO plan to accomplish the expected results and more. You will start seeing big increases in ranks from the 1st month of work already. You get monthly SEO reports and benchmark reports. \r\n \r\nhttps://monkeydigital.co/product/local-seo-package/ \r\n \r\nThanks and regards \r\nMike \r\nMonkey Digital \r\nmonkeydigital.co@gmail.com',71,269,'2019-08-31 07:26:45'),(1077,'alta jordan',68,270,'2019-08-31 14:01:37'),(1078,'alttransport@gmail.com',69,270,'2019-08-31 14:01:38'),(1079,'0834253298',70,270,'2019-08-31 14:01:38'),(1080,'Looking for a retirement house',71,270,'2019-08-31 14:01:38'),(1081,'Edwin Fowler',68,271,'2019-08-31 20:10:59'),(1082,'edwinaf15@gmail.com',69,271,'2019-08-31 20:10:59'),(1083,'0641718276',70,271,'2019-08-31 20:10:59'),(1084,'Interested',71,271,'2019-08-31 20:10:59'),(1085,'Shumani Ramuthivheli',68,272,'2019-08-31 22:07:37'),(1086,'Shummy3433@gmail.com',69,272,'2019-08-31 22:07:37'),(1087,'0769236353',70,272,'2019-08-31 22:07:37'),(1088,'House  or  apartment',71,272,'2019-08-31 22:07:38'),(1089,'Test',68,273,'2019-09-05 12:34:19'),(1090,'test@test.co.za',69,273,'2019-09-05 12:34:19'),(1091,'0215556238',70,273,'2019-09-05 12:34:20'),(1092,'test message',71,273,'2019-09-05 12:34:20'),(1093,'ts',68,274,'2019-09-05 12:44:28'),(1094,'Test@gmail.com',69,274,'2019-09-05 12:44:28'),(1095,'836750458',70,274,'2019-09-05 12:44:28'),(1096,'test',71,274,'2019-09-05 12:44:28'),(1097,'Inge Test',68,275,'2019-09-05 12:48:43'),(1098,'test@test.co.za',69,275,'2019-09-05 12:48:43'),(1099,'215556666',70,275,'2019-09-05 12:48:43'),(1100,'Test',71,275,'2019-09-05 12:48:43'),(1101,'Stephan',68,276,'2019-09-06 19:46:22'),(1102,'stephanh@agpack.co.za',69,276,'2019-09-06 19:46:22'),(1103,'0828837981',70,276,'2019-09-06 19:46:22'),(1104,'Wanneer begin projek is daar reeds koste per eenheid',71,276,'2019-09-06 19:46:22'),(1105,'George Martin',68,277,'2019-09-07 11:06:09'),(1106,'george1@georgemartinjr.com',69,277,'2019-09-07 11:06:09'),(1107,'079 2120 3057',70,277,'2019-09-07 11:06:09'),(1108,'Would you be interested in submitting a guest post on georgemartjr.com or possibly allowing us to submit a post to stadsig.co.za ? Maybe you know by now that links are essential\r\nto building a brand online? If you are interested in submitting a post and obtaining a link to stadsig.co.za , let me know and we will get it published in a speedy manner to our blog.\r\n\r\nHope to hear from you soon\r\nGeorge',71,277,'2019-09-07 11:06:09'),(1109,'Michelle-Heidi Frauendorf',68,278,'2019-09-09 20:00:15'),(1110,'mfrauend@unisa.ac.za',69,278,'2019-09-09 20:00:15'),(1111,'0832612659',70,278,'2019-09-09 20:00:15'),(1112,'Interested in House plan 9, please forward available stands with price list and Estate layout with available stands. Please confirm monthly levy, thank you very much.',71,278,'2019-09-09 20:00:15'),(1113,'MichaelBib',68,279,'2019-09-10 12:53:08'),(1114,'sundance677@yahoo.com',69,279,'2019-09-10 12:53:08'),(1115,'84356894817',70,279,'2019-09-10 12:53:08'),(1116,'Download our free selling app to begin posting all your products for sale whether new or used items. It is FREE to use! \r\nStart selling anything on our FREE apps to make money; easily post your items for sale in 30 seconds or less. Best of all it\'s FREE to use! \r\n \r\n*For Motor Parts, Auto Related Products: Dowload FREE App to sell Cars, Car Engines, Motor Parts, Auto Accessories. Post on our FREE App! \r\n \r\n*For Android Use This Download Link: https://bit.ly/2N0Fu0j \r\n \r\n*For IOS \"Iphone\" Use This Download Link: https://apple.co/2DnBP8g \r\n \r\n*Watch our FREE All Product Posting App YouTube video link here: https://youtu.be/6vm49_EvgOc \r\n \r\n**It\'s FREE to use!** \r\n \r\n**For All Products: Download FREE Selling to start selling Any products or Items for free? Post on our FREE App!** \r\n \r\n*For Android Use This Download Link: https://bit.ly/2BqV1BR \r\n \r\n*For IOS “Iphone” Use This Download Link: https://apple.co/2DxKu8y \r\n \r\n*Watch our FREE Motor Parts App YouTube video link here: https://youtu.be/wo1dVs8UVao \r\n \r\n**It\'s FREE to use!**',71,279,'2019-09-10 12:53:08'),(1117,'Raymond Johnston',68,280,'2019-09-12 05:13:43'),(1118,'raymond@capetownprop.co.za',69,280,'2019-09-12 05:13:43'),(1119,'+27729786559',70,280,'2019-09-12 05:13:43'),(1120,'Please let me know who I could talk to regarding the Fibre optic cable installation solutions and micro trenching in Stadsig and other developments.\r\nBest regards Raymond Johnston email: raymond@lstcom.co',71,280,'2019-09-12 05:13:43'),(1121,'Salvo Cutino',68,281,'2019-09-12 05:38:18'),(1122,'cutinos@gmail.com',69,281,'2019-09-12 05:38:18'),(1123,'0824604266',70,281,'2019-09-12 05:38:18'),(1124,'Please provide a price list',71,281,'2019-09-12 05:38:18'),(1125,'heidi smith',68,282,'2019-09-12 08:54:55'),(1126,'heidi@smith1.co.za',69,282,'2019-09-12 08:54:55'),(1127,'0827756503',70,282,'2019-09-12 08:54:55'),(1128,'please can you mail me the development plan on which I can see where various erven are located?',71,282,'2019-09-12 08:54:55'),(1129,'Andre M Lanser',68,283,'2019-09-12 09:39:37'),(1130,'lanseram@yahoo.co.uk',69,283,'2019-09-12 09:39:37'),(1131,'0826455038',70,283,'2019-09-12 09:39:37'),(1132,'Could you please send me price list. thanks, Andre',71,283,'2019-09-12 09:39:37'),(1133,'Jani Meiring',68,284,'2019-09-13 20:53:36'),(1134,'jani@theoffices.co.za',69,284,'2019-09-13 20:53:37'),(1135,'0845552952',70,284,'2019-09-13 20:53:38'),(1136,'Looking for 3 bedroom home',71,284,'2019-09-13 20:53:39'),(1137,'Sean Thompson',68,285,'2019-09-16 09:39:04'),(1138,'SThompsonSr@gmail.com',69,285,'2019-09-16 09:39:04'),(1139,'9177192583',70,285,'2019-09-16 09:39:04'),(1140,'It looks like you\'ve misspelled the word \"Contry\" on your website.  I thought you would like to know :).  Silly mistakes can ruin your site\'s credibility.  I\'ve used a tool called SpellScan.com in the past to keep mistakes off of my website.\r\n\r\n-Sean Thompson Sr.',71,285,'2019-09-16 09:39:05'),(1141,'AveryRot',68,286,'2019-09-16 22:48:48'),(1142,'raphaerenoPedgeGor@gmail.com',69,286,'2019-09-16 22:48:48'),(1143,'87786293711',70,286,'2019-09-16 22:48:48'),(1144,'Good day!  stadsig.co.za \r\n \r\nHave you ever heard of sending messages via contact forms? \r\n \r\nImagine that your message will be readseen by hundreds of thousands of your potential future userscustomers. \r\nYour message will not go to the spam folder because people will send the message to themselves. As an example, we have sent you our suggestion  in the same way. \r\n \r\nWe have a database of more than 30 million sites to which we can send your offer. Sites are sorted by country. Unfortunately, you can only select a country when sending a message. \r\n \r\nThe price of one million messages 49 USD. \r\nThere is a discount program when you buy  more than two million message packages. \r\n \r\n \r\nFree proof mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis letter is created automatically. Please use the contact details below to contact us. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - feedbackform@make-success.com',71,286,'2019-09-16 22:48:48'),(1145,'CherylFug',68,287,'2019-09-17 05:46:36'),(1146,'frauenarbeit.oe@evang.at',69,287,'2019-09-17 05:46:36'),(1147,'84384425344',70,287,'2019-09-17 05:46:36'),(1148,'We would like to inform that you liked a comment ID:35915743 in a social network , January 9, 2019 at 19:48 \r\nThis like has been randomly selected to win the seasonal «Like Of The Year» 2019 award! \r\nhttp://facebook.com+prize+@1310252231/Qv3nPM',71,287,'2019-09-17 05:46:36'),(1149,'esfuwadaaxasa',68,288,'2019-09-17 06:16:27'),(1150,'ewugugohi@fdfdf.namnerbca.com',69,288,'2019-09-17 06:16:27'),(1151,'83313259452',70,288,'2019-09-17 06:16:27'),(1152,'http://mewkid.net/order-amoxicillin/ - Amoxicillin Online <a href=\"http://mewkid.net/order-amoxicillin/\">Amoxicillin</a> rwa.jizi.stadsig.co.za.ekf.ot http://mewkid.net/order-amoxicillin/',71,288,'2019-09-17 06:16:27'),(1153,'Mr Robin Miller',68,289,'2019-09-17 13:09:12'),(1154,'robtheboss255@yahoo.com',69,289,'2019-09-17 13:09:12'),(1155,'0730872935',70,289,'2019-09-17 13:09:12'),(1156,'would like to come and view it please',71,289,'2019-09-17 13:09:12'),(1157,'Charmaine',68,290,'2019-09-17 13:45:49'),(1158,'charmaine.wildschut@uct.ac.za',69,290,'2019-09-17 13:45:49'),(1159,'0834927555',70,290,'2019-09-17 13:45:49'),(1160,'I\'m interested',71,290,'2019-09-17 13:45:49'),(1161,'Abdullahi abukar adan',68,291,'2019-09-19 08:26:01'),(1162,'Abdullahiabukar95@g.mail',69,291,'2019-09-19 08:26:01'),(1163,'0621374349',70,291,'2019-09-19 08:26:01'),(1164,'I want house for planng',71,291,'2019-09-19 08:26:02'),(1165,'Karentoorp',68,292,'2019-09-19 22:09:25'),(1166,'patsyPeard@gmail.com',69,292,'2019-09-19 22:09:26'),(1167,'84855748326',70,292,'2019-09-19 22:09:27'),(1168,'hi there \r\nWe all know there are no tricks with google anymore \r\nSo, instead of looking for ways to trick google, why not perform a whitehat results driven monthly SEO Plan instead. \r\n \r\nCheck out our plans \r\nhttps://googlealexarank.com/index.php/seo-packages/ \r\n \r\nWe know how to get you into top safely, without risking your investment during google updates \r\n \r\nthanks and regards \r\nMike \r\nstr8creativecom@gmail.com',71,292,'2019-09-19 22:09:27'),(1169,'Crystalprogs',68,293,'2019-09-19 23:00:39'),(1170,'info@mycleanroom.de',69,293,'2019-09-19 23:00:39'),(1171,'82658482121',70,293,'2019-09-19 23:00:39'),(1172,'We would like to inform that you liked a comment ID:35915743 in a social network , January 9, 2019 at 19:48 \r\nThis like has been randomly selected to win the seasonal «Like Of The Year» 2019 award! \r\nhttp://facebook.com+prize+@1310252231/wgBfI',71,293,'2019-09-19 23:00:39'),(1173,'Melanie',68,294,'2019-09-22 09:21:43'),(1174,'melbrink04@gmail.com',69,294,'2019-09-22 09:21:44'),(1175,'0825150382',70,294,'2019-09-22 09:21:44'),(1176,'Please can you send me more details of the estate, prices. Etc.. thank you.',71,294,'2019-09-22 09:21:44'),(1177,'Stephanie De Jager',68,295,'2019-09-23 17:57:24'),(1178,'mwrenmor@mweb.co.za',69,295,'2019-09-23 17:57:24'),(1179,'0722074885',70,295,'2019-09-23 17:57:24'),(1180,'I would like to view on Wednesday before 10am if possible?',71,295,'2019-09-23 17:57:24'),(1181,'Jenny Wright',68,296,'2019-09-26 06:38:53'),(1182,'jenammic@gmail.com',69,296,'2019-09-26 06:38:53'),(1183,'0834159482',70,296,'2019-09-26 06:38:53'),(1184,'I\'d like some information, please.',71,296,'2019-09-26 06:38:53'),(1185,'David Gomez',68,297,'2019-09-27 21:20:37'),(1186,'sergiodumass@gmail.com',69,297,'2019-09-27 21:20:37'),(1187,'86281638953',70,297,'2019-09-27 21:20:37'),(1188,'Dearest in mind, \r\n \r\nI would like to introduce myself for the first time. My name is Barrister David Gomez Gonzalez, the personal lawyer to my late client. \r\nWho worked as a private businessman in the international field. In 2012, my client succumbed to an unfortunate car accident. My client was single and childless. \r\nHe left a fortune worth $12,500,000.00 Dollars in a bank in Spain. The bank sent me message that I have to introduce a beneficiary or the money in their bank will be confiscate. My purpose of contacting you is to make you the Next of Kin. \r\nMy late client left no will, I as his personal lawyer, was commissioned by the Spanish Bank to search for relatives to whom the money left behind could be paid to. I have been looking for his relatives for the past 3 months continuously without success. Now I explain why I need your support, I have decided to make a citizen of the same country with my late client the Next of Kin. \r\n \r\nI hereby ask you if you will give me your consent to present you to the Spanish Bank as the next of kin to my deceased client. \r\nI would like to point out that you will receive 45% of the share of this money, 45% then I would be entitled to, 10% percent will be donated to charitable organizations. \r\n \r\nIf you are interested, please contact me at my private contact details by Tel: 0034-604-284-281, Fax: 0034-911-881-353, Email: amucioabogadosl019@gmail.com \r\nI am waiting for your answer \r\nBest regards, \r\n \r\nLawyer: - David Gomez Gonzalez',71,297,'2019-09-27 21:20:37'),(1189,'Sarine',68,298,'2019-09-28 08:53:35'),(1190,'sarineb@live.com',69,298,'2019-09-28 08:53:35'),(1191,'0724365820',70,298,'2019-09-28 08:53:36'),(1192,'Good day\r\nDo you have show houses to view?\r\nThank you\r\nRegards\r\nSarine de villiers',71,298,'2019-09-28 08:53:36'),(1193,'Eric',68,299,'2019-10-05 18:48:39'),(1194,'eric@talkwithcustomer.com',69,299,'2019-10-05 18:48:39'),(1195,'416-385-3200',70,299,'2019-10-05 18:48:39'),(1196,'Hello stadsig.co.za,\r\n\r\nPeople ask, “why does TalkWithCustomer work so well?”\r\n\r\nIt’s simple.\r\n\r\nTalkWithCustomer enables you to connect with a prospective customer at EXACTLY the Perfect Time.\r\n\r\n- NOT one week, two weeks, three weeks after they’ve checked out your website stadsig.co.za.\r\n- NOT with a form letter style email that looks like it was written by a bot.\r\n- NOT with a robocall that could come at any time out of the blue.\r\n\r\nTalkWithCustomer connects you to that person within seconds of THEM asking to hear from YOU.\r\n\r\nThey kick off the conversation.\r\n\r\nThey take that first step.\r\n\r\nThey ask to hear from you regarding what you have to offer and how it can make their life better. \r\n\r\nAnd it happens almost immediately. In real time. While they’re still looking over your website stadsig.co.za, trying to make up their mind whether you are right for them.\r\n\r\nWhen you connect with them at that very moment it’s the ultimate in Perfect Timing – as one famous marketer put it, “you’re entering the conversation already going on in their mind.”\r\n\r\nYou can’t find a better opportunity than that.\r\n\r\nAnd you can’t find an easier way to seize that chance than TalkWithCustomer. \r\n\r\nCLICK HERE http://www.talkwithcustomer.com now to take a free, 14-day test drive and see what a difference “Perfect Timing” can make to your business.\r\n\r\nSincerely,\r\nEric\r\n\r\nPS:  If you’re wondering whether NOW is the perfect time to try TalkWithCustomer, ask yourself this:\r\n“Will doing what I’m already doing now produce up to 100X more leads?”\r\nBecause those are the kinds of results we know TalkWithCustomer can deliver.  \r\nIt shouldn’t even be a question, especially since it will cost you ZERO to give it a try. \r\nCLICK HERE http://www.talkwithcustomer.com to start your free 14-day test drive today.\r\n\r\nIf you\'d like to unsubscribe click here http://liveserveronline.com/talkwithcustomer.aspx?d=stadsig.co.za',71,299,'2019-10-05 18:48:40'),(1197,'Pierre van Zyl',68,300,'2019-10-06 09:12:47'),(1198,'pvz@lando.co.za',69,300,'2019-10-06 09:12:47'),(1199,'+27845339976',70,300,'2019-10-06 09:12:48'),(1200,'Stuur info asb',71,300,'2019-10-06 09:12:48'),(1201,'Sally Bruss',68,301,'2019-10-06 13:24:17'),(1202,'sally@lammerskraalstud.co.za',69,301,'2019-10-06 13:24:17'),(1203,'0833252686',70,301,'2019-10-06 13:24:17'),(1204,'Please provide details with regards to keeping horses.',71,301,'2019-10-06 13:24:17'),(1205,'Pedro Molina',68,302,'2019-10-08 15:59:42'),(1206,'pedrom@uicinsuk.com',69,302,'2019-10-08 15:59:42'),(1207,'87354999322',70,302,'2019-10-08 15:59:42'),(1208,'Dear Sir, \r\nAm contacting you to partner with me to secure the life insurance of my late client, to avoid it being confiscated. For more information, please contact me on + 447452275874 or pedrom@uicinuk.com \r\nRegards \r\nPedro Molina',71,302,'2019-10-08 15:59:43'),(1209,'moldovawomenxxk',68,303,'2019-10-10 14:55:00'),(1210,'moldovawomen@mail.ru',69,303,'2019-10-10 14:55:00'),(1211,'83559199875',70,303,'2019-10-10 14:55:00'),(1212,'Lists and have a profile picture\r\n\r\nStuck on how to write a bio? assistance is at hand (symbol: Getty footage)Get the biggest daily news stories by emailSubscribeSee our privacy noticeMore newslettersPlenty is written about the peaks and pitfalls of online dating for women from how to dress and where to go but what about the men who also work buy schedules and find romance or dating tricky?Navigating the world of online dating from a male perspective can be hard what will make her laugh, How before I can ask her out without seeming creepy, it\'s.were you aware, writing a divorce in an online dating profile boosts men chances of being contacted by more than 50%?the analysis by dating website Zoosk, Also uncovered men are 19% more likely to have success online if their profile features a picture taken outside.Here are 5 more online dating tips for guys.Thinking of joining an online dating service personals website? Here are 10 of the biggest websites in the UK and how much they cost a month.1. sign a bio but avoid lists Lists look lazy. Write a small and colourful paragraph telling prospective matches who you really are, What you looking for and your unique circumstances.3. Your information picture says it allKeep it cool: to choose clear, Upbeat and recent photoA profile picture is MUST profiles with missing pictures look dodgy and are treated as shady.Go for a clear picture of yourself and no one else, Make sure it recent ideally <a href=\"https://myspace.com/datingmoldovawomen\">moldova girl dating</a> taken in the last year and if possible outdoorsy.Men are 19% more likely to bag a date if their profile picture was taken outside.4. Avoid asking her out for AT LEAST 2 weeks Allow at least a fortnight worth of continuous messaging before suggesting to meet up, Connect on Facebook or requesting her number.That two weeks if you been frequently messaging and are both keen to take the next step.5. tell the truth about your lifeYou have two options here: Be honest and attract people that appreciate you for who your are.and / or two, Lie and eventually get caught out, Blocked and presumably end up back at square one.need more advice? Here are 10 dating foreign girls tips to guarantee you a date.Bag a date on reflector Dating. Join the Mirror one of a kind dating site Mirror Dating today and find love in just 5 steps!Simply create a profile with our 7 top tips, And wink prospective matches for free when you sign up.Go premium you just read, Reply and send messages See who viewed your profile and more whilst premium.',71,303,'2019-10-10 14:55:01'),(1213,'qpidnetworkdkm',68,304,'2019-10-11 04:45:18'),(1214,'qpidnetwork@mail.ru',69,304,'2019-10-11 04:45:18'),(1215,'81123973721',70,304,'2019-10-11 04:45:18'),(1216,'your current oral cavity body from Laos\r\n\r\ntend to be Khene?One Lao poem has stated the fact: \"everyone lifestyle within a STILTED dwelling, who feeds sweaty rice to has THE KHENE will be LAO or just of this particular LAO everyone,\r\n\r\none of the vital unique products globally is without a doubt Laos\' actually khene (noticable caan). the entire khene is a vital accompanimet you can Lao Lum or simply a lyrical freestyling out of songs sung by way of mor Lum or great <a href=\"https://www.pinterest.com/qpidnetwork/\" />QPID NETwork</a> performer or sryteller. whilst a great number of lum music is always encouraging, a bunch of end up being a specified as sort of blues music, that singer is always pining for someone close or asking a story to do with loss. usually the khene is in fact use in most Lao get-togethers not even up to wedding ceremony, memorials, Buddhists events also activities, and dances and events.\r\n\r\nprobably most fascinating characterstic together with the khene will be is its just free reed which may be either a created using brass or else rare metal. The khene completes give some sort of semblance at the western european free reed specialist tools since the harmonium, Concertina, Accordion as well as the <a href=\"https://hk.linkedin.com/in/qpid-network-0280174a\">qpid NTEWORK</a> respected harmonica. but of course i doubt any advisors products not really forever made out of bamboo bed sheets.\r\n\r\ndeveloping a pentatonic weighing machine available as one or two modalities (Thang sunlight plus thang yao, which unfortunately just about method shor way also ways in Lao) in addition to simultaneously approach employing three imaginable suggestions for getting started. any khene likewise has five diverse kinds of lai, and it could be ways to include Lai Yai, Lai Noe, Lai Soutsanaed, Lai Po claime, but also Lai Soi. Lae Po sai is viewed as the older with Lai Khene and consequently Lai Soutsanaen is known as the \"biological father together with the Lai Khaen, most of the khene could be competed to be the by yourself application (Dio Khene), together with an ensemble (Ponglang), Or just like a n accompaniment as stated before, for the Lao or Isan men or women firefox artist termed as a els lam (Or els lum) .\r\n\r\nThe kaen while well as khene is the nation\'s the windshield wonder along with Laos. spoil a great describe the khene is that must be a jaw organ whose water lines tend to be of a smallish, useless reservoir who air could supplied but also reeds are put into. The khene is of this particular ethnic Lao because Issan (as Isan) Of Northeast Thailwith dates back around chronilogical age of the Bronze tibet Southeast. an identical oral body organ guitar in next door other parts the sheng.\r\n\r\nThe Mythological start your day KheneLegend would have this tool that a girl who was try to why not the ruler of Laos would definitely multiply the sound which your garawek parrot marketed when you are walfrom the natrual enviroment one day. throwing knew that that thes trip has long and grueling as well as lindsay lohan couldn\'t protectively keep on due to the fact that dusk visiting, the woman thought we would later grow a guitar the imitated the melodic rooster whose sound used to be located all on her random access memory. you set out courtesy of - dicing a joint of bamboo and in addition laid a reed inside.\r\n\r\nif you are play it\'s, you came to realize that it performed believe it or not seemed just like the garawek chook consequently which include game improvements ultimately trust it sufficient then when was likely rrn a position, he or she attended the development and furthermore commenced out taking part in your own interesting un named musical instrument to the cal. king. immediately after your darling first song, this woman enquired some ruler in the case when he watch your lover track. He informed her rrt had been okay too as for her to continue playing. soon after your darling second background music, they required the King\'s when second song was probably more effectively. he then sent a reply having, \"Tia nee kaen dae, exactly which means \"today it was increased, and it fell shared with her to called the investment the khene, along with \"kaen, the domain name of course nevertheless used to this day.\r\n\r\nKhene Music AbroadOne of the greatest khaen solois nowts known to man Sombat Simla. typically shades, He has actually been enjoying khaen since age 6 but also continues to dazzle guests throughout the world (I advertised the particular the man\'s solos in a youtube video). the background music using the khaen has interested selected not for asian artists very well, Includng Universtiy of San Diego\'s mentor christopher Adler, who all consists regarding software then english tongue artist Clive Bell (british); vancouver set up composer/performer Randy Raine Reusch involving Canda, what wagered khaen located on Aerosmith\'s air pump (1989), some of the cranberries steadfast departed (1996), or Yes\' each step ladder; on top of that Jaron Lanier (north american). since the early 21st Century, The colorado local in addition,yet old boyfriend patriate Jonny Olsen certainly is the first farang (Foreigner) on to earn a khaen world-class in Khon Kaen, 2005 (Wikipedia). your own\r\n\r\nKhaen can be done in a specialized core while are not tuned post reed\r\n\r\nis defined because pipes have proven to be get rid of. should the khaen would be completed as nicely\r\n\r\nequipments sub-par ones will be required to zone with regard to the khaen.\r\n\r\nHubs towards Lao CultureLao Folktales : ones mango sapling\r\n\r\nthe genuine apple shrub! certainly, there once a beautiful mango spec in planted on the inside marketplace about a vlg. He dressed in a scarf around his take a look at save via for being injured and also mosquitoes and other too as other discrepancies and beared a hard outdoor whole. the particular root promise,\r\n\r\nKen (Khene) Pelletier 14 months in the past\r\n\r\nthank you very much for this review! i have squandered a little time in a commune in Oddar Meanchey province, Cambodia somewhere these businesses perform our same investment with discuss it by identically business name.\r\n\r\nthe msrp was a revelation with me and that i had overheard mention it also in fact took part in native thai and Laos neighborhoods. The hamlet may be directly on the british border, not not even close to the Laos edge, So it is no surprise most women promote this beautiful investment.',71,304,'2019-10-11 04:45:18'),(1217,'AndrewQuiek',68,305,'2019-10-11 05:12:56'),(1218,'lorsewill@outlook.com',69,305,'2019-10-11 05:12:56'),(1219,'88972861687',70,305,'2019-10-11 05:12:56'),(1220,'Free ruskies a new relationship\r\n\r\n marked see sexual bride to be, realize patient, get hunny on the net, can come across girls to actually marry, getting russian bride, as for russian girls, to find russian adult females, Free online dating site, Free russian gals, , Free european personal ads, Free european life partners, Free european women of all ages, girlfriend free dating online, young bond european, young women belarus, models to work with wedlock, girls to have get married to, womans amongst belarus, ladies italy, little girls european marital, girls in quest of marriage, good looking female, methods to get married a russian females, how they can get married to european child, the right way to marry russian women of all ages, How in order to satisfy a russian chick, How to fulfill a ruskies mother, How based on euro men and women, world bridal company, most women to get romance, the ladies for many holy matrimony, female with belarus, moms marital life, girls associated with women, adult females european ladies, the ladies purchasing, women of all ages purchasing men, women hunting for man, girls to actually get married, Latvian birdes-to-be, searching for a girl, purchasing lady, buying a woman\r\n\r\nlabeled going that have sweetheart, going sweetheart, dating mother the web, dating sites young lady exploring man, fantasize a relationship, E ruskies wedding brides, Female using women of all ages, girls wanting males, seek for a russian girl, select a ruskies youthful lady, appear european wife\'s comments, get a wife\'s comments, Find girls, Find unique on the web, Find ladies regarding wed, try to find ruskies star of the event, realize <a href=\"https://500px.com/belaruswomen\">belarus girls</a> russian girls, seek out ruskies girlfriend, pick ruskies young females, realise ruskies better half, come up with european spouse, lookup european people, view nighty lover, learn sweetheart, try to find patient net, appear the ladies that get married to, picking up a euro bridal, to make ruskies ladies, to gain european <a href=\"https://issuu.com/datingbelarusgirl/docs/girls_from_belarus_-_why_are_they_a\">belarus girl for marriage</a> all women, Free online dating site, Free russian up and coming brides, , Free euro personal ads, Free russian spouses, Free european brides, boy romance, young lady going on a date, lovely women weddings euro, males belarus, adolescent girls at marriage, adolescent girls to find get married, ladies at belarus, girls paris, girls european wedding, womans exploring relationship, attractive moms, scorching hot european female, it is possible to get married a european spouse, the right way to wed euro maid, suggestions get married ruskies adult females.',71,305,'2019-10-11 05:12:56'),(1221,'Neal',68,306,'2019-10-12 06:26:30'),(1222,'neal.yes2invest@gmail.com',69,306,'2019-10-12 06:26:30'),(1223,'0828214888',70,306,'2019-10-12 06:26:30'),(1224,'2 bed 2 bath mountain view please.',71,306,'2019-10-12 06:26:30'),(1225,'Johannes Janse  van Rensburg',68,307,'2019-10-13 07:43:51'),(1226,'hanco7777@gmail.com',69,307,'2019-10-13 07:43:52'),(1227,'0824085281',70,307,'2019-10-13 07:43:52'),(1228,'Want to know more',71,307,'2019-10-13 07:43:52'),(1229,'DorothyCar',68,308,'2019-10-13 20:54:35'),(1230,'fa.feichtinger@aon.at',69,308,'2019-10-13 20:54:35'),(1231,'84237587118',70,308,'2019-10-13 20:54:36'),(1232,'We would like to inform that you liked a comment ID:35915743 in a social network , January 9, 2019 at 19:48 \r\nThis like has been randomly selected to win the seasonal «Like Of The Year» 2019 award! \r\nhttp://facebook.comпјЏmailпјЏ@0X4E18DCC7/MBhOB',71,308,'2019-10-13 20:54:36'),(1233,'Crystalprogs',68,309,'2019-10-15 04:14:44'),(1234,'helmut.polaschegg@stgkk.at',69,309,'2019-10-15 04:14:44'),(1235,'84225168215',70,309,'2019-10-15 04:14:45'),(1236,'We would like to inform that you liked a comment ID:35915743 in a social network , January 9, 2019 at 19:48 \r\nThis like has been randomly selected to win the seasonal «Like Of The Year» 2019 award! \r\nhttp://facebook.com+email+@1310252231/5wF6c',71,309,'2019-10-15 04:14:45'),(1237,'Heidi Ross',68,310,'2019-10-15 04:22:13'),(1238,'heidi@biglep.com',69,310,'2019-10-15 04:22:13'),(1239,'032 532 76 18',70,310,'2019-10-15 04:22:13'),(1240,'As a webmaster, do you feel so busy but empty and lonely?\r\n\r\nWe are running a campaign only for webmasters. \r\nIt provides an opportunity for you to release your emotions.\r\n\r\nLargest Affair Site In The World\r\nOver 30 Million Members\r\nCosts Nothing To Join\r\n== https://www.biglep.com/casualdating ==\r\n\r\nRegards,\r\nHeidi Ross\r\n\r\nTo unsubscribe, click\r\nHere: https://www.biglep.com/unsubscribe',71,310,'2019-10-15 04:22:13'),(1241,'Constance Herklaas',68,311,'2019-10-16 14:12:49'),(1242,'herklaasc@gmail.com',69,311,'2019-10-16 14:12:49'),(1243,'0726894539',70,311,'2019-10-16 14:12:49'),(1244,'Hi there\r\n\r\nI would like to find out what the residents pay for rates and taxes. \r\n\r\nPlease assist in this regard',71,311,'2019-10-16 14:12:49'),(1245,'Jacobwrity',68,312,'2019-10-17 03:08:36'),(1246,'julie@intergotelecom.com',69,312,'2019-10-17 03:08:36'),(1247,'88296169177',70,312,'2019-10-17 03:08:36'),(1248,'Hello there, \r\n \r\nThis is Julie from SMS.to, \r\n \r\nAs a licensed telecom company we can offer you unbeatable prices for SMS messaging in Africa \r\nand internationally. \r\n \r\nWe are having a special offer this month for new customers, \r\n \r\nCan you point me to the person responsible for marketing to discuss and share my special offer? \r\n \r\n \r\nJulie Poblador \r\nSenior Account Manager \r\nsales@sms.to | julie@sms.to \r\nhttp://www.sms.to/ \r\n+1 (914) 340-0700 \r\n+356 277 610 22 \r\n+357 22 000 522 \r\n+44 8008085314 \r\nSMS.to by Intergo Telecom Ltd',71,312,'2019-10-17 03:08:36'),(1249,'MikeBoits',68,313,'2019-10-17 13:39:12'),(1250,'rodgerFluts@outlook.com',69,313,'2019-10-17 13:39:12'),(1251,'86938447878',70,313,'2019-10-17 13:39:12'),(1252,'When you order 1000 backlinks with this service you get 1000 unique domains, Only receive 1 backlinks from each domain. All domains come with DA above 15-20 and with actual page high PA values. Simple yet very effective service to improve your linkbase and SEO metrics. \r\n \r\nOrder this great service from here today: \r\nhttps://monkeydigital.co/product/unique-domains-backlinks/ \r\n \r\nMultiple offers available \r\n \r\nthanks and regards \r\nMike \r\nsupport@monkeydigital.co',71,313,'2019-10-17 13:39:12'),(1253,'Heidi',68,314,'2019-10-20 15:55:46'),(1254,'heidimail@mweb.co.za',69,314,'2019-10-20 15:55:46'),(1255,'08288833377',70,314,'2019-10-20 15:55:47'),(1256,'Interested in the least expensive if your units olease',71,314,'2019-10-20 15:55:47'),(1257,'Shanehab',68,315,'2019-10-23 07:04:52'),(1258,'davidgai666@outlook.com',69,315,'2019-10-23 07:04:52'),(1259,'85477835612',70,315,'2019-10-23 07:04:52'),(1260,'Some Dating Tips you will need to Date Asian Women\r\n\r\nneo, are usually wrong. You should not presume Asian ladies are the same with Hispanic or white girls. They fluctuate. they have perhaps different cultures, factors, needs, wants, concerns, interests, And and so forth. When dating an Asian woman, You <a href=\"http://www.chnbride.com/tag/chinese-wife/\" />hot vietnamese women</a> ought to learn some tips. If you apply the same rule that you used to date the Western girls, that people win the heart from an Asian girl.\r\n\r\nJapanese women live in a rich country so they are cheaply stable. Most of western girls are independent, activated, And intense. Filipino women are different. They can get married with older men who can take proper care of them and respect them. Chinese girls are popular by their exotic feel and femininity. several people prefer to get married with older men. Every Asian country is different from each other and they are different from Western countries as well. the case, If you are an Asian man who has been living in the West for some time, You should find out a specific culture before you date a girl in that country. Don\'t apply the same rule as you date with every girl. As you will know that most of Asian women are honest and loyal in love and relationship. This is one of the same elements that Asian women have.\r\n\r\nall ready Asian Girls, Internet dating sites provide the best method for single men seeking Asian women. Online dating service is the best platform in looking for your love the web. uncover Mr. yes or Ms. correct, you have to a personal profile created online. This profile describes who you really are and who you are interested in. you can get thousands or even millions of Asian women registered at these Asian dating sites. They are either currently living in america alone or Western countries or in Asia. Some local Asian girls who dwell in Thai, Vietnam, China have English language issues but most of Filipino women don\'t. Women in Philippines speak English fluently so they have no issue with the language when dating men in the West.\r\n\r\nAsian ladies are very welcoming, stunning, trusty, And loyal to love and wedding ceremony. presume in the one woman one man relationship will be the best. Most of them need a lifelong relationship. as much as now an Asian girl, undestand some dating tips. Asian girls are shy during the initiation but will sense safe after they get know you. as an example, Some Asian women don\'t answer some of your tricky love questions but give you a smile to reply for the solution. They would rather be chased by men in stead of chasing men on their dream. a lot are not as active as Western girls. if you happen to win her heart, She is yours just about forever.',71,315,'2019-10-23 07:04:52'),(1261,'Nelus Niemandt',68,316,'2019-10-23 15:30:38'),(1262,'nelusn@gmail.com',69,316,'2019-10-23 15:30:45'),(1263,'0824511670',70,316,'2019-10-23 15:30:46'),(1264,'Ek en my vrou vlieg Dins 29 Okt af en wil graag na julle eenhede kyk. Sal 16:00 pas. Bevestig asb, en ook waar ek jou kan ontmoet.\r\nNelus',71,316,'2019-10-23 15:30:46'),(1265,'Judithten',68,317,'2019-10-23 16:47:10'),(1266,'info2@revlight.com.sg',69,317,'2019-10-23 16:47:11'),(1267,'89258673247',70,317,'2019-10-23 16:47:12'),(1268,'Dear Customer, \r\n \r\nAre you satisfied with your current CCTV on quality and service? Tired of cameras that always broke down easily? \r\n \r\nDon\'t worry, We manufacture High-Definition Security Surveillance Systems for Residential & Commercial uses. All our cameras are metal weatherproof and comes with sony sensor for maximum quality. \r\nIPcam video quality: https://youtu.be/VPG82dnXfWY \r\n \r\n+44 330-024-0982 \r\n+1 866-655-7056 \r\n+91 96508-01219 \r\n+65 6678-6557 \r\nEmail: sales@revlightsecurity.com \r\nW: http://www.revlightsecurity.com/ \r\n \r\nHave a nice day! :) \r\n \r\nregards, \r\nJessie Chang \r\n7 Temasek Boulevard, Level 32, Suntec Tower One, Singapore 038987',71,317,'2019-10-23 16:47:13'),(1269,'Michael van Rooyen',68,318,'2019-10-24 18:33:08'),(1270,'michael@fastwebsite.co.za',69,318,'2019-10-24 18:33:08'),(1271,'0658372339',70,318,'2019-10-24 18:33:08'),(1272,'Hi,\r\nWe have the means for you to generate more clients!\r\nThis would serve any company well who is interested in boosting their revenue by means of innovative marketing strategies.\r\n\r\nWe are offering a once-off database of almost a million companies in South Africa which includes:\r\n\r\nCompanies: 880 thousand+\r\nMails: 318 thousand+\r\nIndustries: 2 thousand+\r\nTel: 800 thousand+\r\nCell: 150 thousand+\r\n\r\nThe potential market reach is great, and we\'re excited to bring you this opportunity.\r\nIt shouldn\'t cost an arm and a leg to land a new customer, the whole database is R2000.\r\n\r\nAll data is POPI Compliant (Protection of Personal Information).\r\n\r\nWe would love to tell you more. For any further assistance, please phone us.\r\n\r\n-- \r\nBest regards,\r\nMichael van Rooyen\r\n065 837 2339',71,318,'2019-10-24 18:33:08'),(1273,'Ruan Ferreira',68,319,'2019-10-26 10:01:21'),(1274,'ruanpferreira26@gmail.com',69,319,'2019-10-26 10:01:21'),(1275,'0824579450',70,319,'2019-10-26 10:01:21'),(1276,'I would like to enquire about buying a non4 unit for my parents. \r\n\r\nThank you\r\n\r\nRuan',71,319,'2019-10-26 10:01:21'),(1277,'Driaan Rupping',68,320,'2019-10-27 05:09:15'),(1278,'driaanr@gmail.com',69,320,'2019-10-27 05:09:15'),(1279,'0833913684',70,320,'2019-10-27 05:09:16'),(1280,'Please send a brochure with more details and prices of the various properties for sale. Thanks',71,320,'2019-10-27 05:09:16'),(1281,'Benitocheek',68,321,'2019-10-28 11:44:17'),(1282,'cbu@cyberdude.com',69,321,'2019-10-28 11:44:17'),(1283,'81589623721',70,321,'2019-10-28 11:44:18'),(1284,'Hi stadsig.co.za admin, \r\n \r\n \r\nSee, ClickBank is going to BREAK the Internet. \r\nThey’re doing something SO CRAZY, it might just tear the Internet at its seams. \r\n \r\nInstead of selling our 3-Part “ClickBank Breaks The Internet” Extravaganza Series… They’re giving it to you at no cost but you need to get it now or it will be gone! \r\n \r\nGET YOUR COPY NOW! Download The “$1k Commission Manual\": https://1kmanual.com \r\n \r\nHere’s to kicking off the Fall season right!',71,321,'2019-10-28 11:44:18'),(1285,'Charmaine Harper',68,322,'2019-10-29 13:13:32'),(1286,'harpercharmaine1@gmail.com',69,322,'2019-10-29 13:13:32'),(1287,'+264815568536',70,322,'2019-10-29 13:13:32'),(1288,'Information please',71,322,'2019-10-29 13:13:32'),(1289,'Inge Evenwel',68,323,'2019-10-30 10:42:19'),(1290,'test@test.co.za',69,323,'2019-10-30 10:42:19'),(1291,'0827118267',70,323,'2019-10-30 10:42:19'),(1292,'test message',71,323,'2019-10-30 10:42:19'),(1293,'Test',68,324,'2019-10-30 10:57:34'),(1294,'ievenwel@gmail.com',69,324,'2019-10-30 10:57:34'),(1295,'021 671 8522',70,324,'2019-10-30 10:57:35'),(1296,'This is just a test',71,324,'2019-10-30 10:57:38'),(1297,'MariaLully',68,325,'2019-10-31 07:17:55'),(1298,'af.antocrespo@consultant.com',69,325,'2019-10-31 07:17:55'),(1299,'86484554116',70,325,'2019-10-31 07:17:56'),(1300,'Attn: Beneficiary \r\nTHE WEB PROMOTION PROGRAM. We are pleased to inform you of the release of the results of our ES.INTERNATIONAL WEB PROMOTION PROGRAM. The result was released on the 28 OF OCTOBER 2019. Your e-Website was attached to ticket number 902089237-067 drew lucky numbers 9-24-06-18-05-26. Which consequently won our website lottery program in the 2nd category. Your website has therefore won the sum of €1, 710, 460.00. CONGRATULATION!!!!!!!!!!! \r\nAll participants were selected through a computer ballot system drawn from 25,000 website addresses All over the world as part of our international website promotion program. \r\nTo start your lottery claim and also for more enlightenment regarding to this, kindly contact your agent; Alan Nicolas Matias, FOREIGN OPERATION MANAGER OF Fenix Directo Seguros S.A. by telephone N?: +34 632 822 394, Email: alan@martinjoselaws.com \r\nPlease fills the payment processing form below and retunes it to your claims agent to this email: alan@martinjoselaws.com  Congratulations once again. \r\nBeneficiary Full name: -------------------- Website: -------------------- \r\nEmail Address: --------------------------     Tel: -------------------------- \r\nNationality: ------------------------             Mode of Payment: ---------- \r\nSincerely yours, \r\nMRS MARIA LOPEZ DANIEL. \r\n(ES.WEBSITE LOTTERY COORDINATOR)',71,325,'2019-10-31 07:17:56'),(1301,'Louiswreve',68,326,'2019-11-02 08:11:07'),(1302,'robertsem@gmail.com',69,326,'2019-11-02 08:11:07'),(1303,'87363561717',70,326,'2019-11-02 08:11:08'),(1304,'Today \"ElDorado\" is number 1 in the list of investment blockchain projects! \r\nThe innovative program provides an opportunity to participate in short-term investment in the cryptocurrency market.   \r\n \r\nThe minimum investment amount is 0.0025 BTC   \r\nMinimum profit is 10%   \r\nThe investment period is not more than 48 hours. \r\nRe-investment is possible. \r\n \r\nRegistration is available on the official website: https://eldor.cc#engbtce',71,326,'2019-11-02 08:11:08'),(1305,'Manueldauts',68,327,'2019-11-06 01:27:27'),(1306,'rodgerFluts@outlook.com',69,327,'2019-11-06 01:27:27'),(1307,'87116999858',70,327,'2019-11-06 01:27:27'),(1308,'Premium organic Social Traffic with very low bounce rate (5%-25%). What makes this traffic to have such a low bounce rate? We all know organic social traffic has a lower bounce rate than any other traffic out there, in addition to that our traffic is highly targeted, which makes visits stay longer on the website and thus the chance of engagement is considerably higher. \r\n \r\nRun your traffic campaigns with us: \r\nhttps://www.monkeydigital.co/product/premium-website-traffic/ \r\n \r\nThank you \r\nMonkey Digital Team \r\nsupport@monkeydigital.co',71,327,'2019-11-06 01:27:27'),(1309,'Company Loans',68,328,'2019-11-06 14:13:09'),(1310,'marketing@companyloans.co.za',69,328,'2019-11-06 14:13:09'),(1311,'0000000000',70,328,'2019-11-06 14:13:09'),(1312,'Hello,\r\n\r\nNo one understands your business needs better than you do. However, to realise your vision for your business means having the capital\r\nat your disposal to make those critical decisions. In today\'s changing economic landscape this is true more than ever. In these uncertain times we\'d love to help you thrive by making it easy, fast and effortless to obtain the capital you need.\r\n\r\nApplying for funding to grow your business usually requires meetings that take time out of your schedule and it can be a long tedious process. You need a quick and simple solution that you can use from the comfort of your own space.\r\n\r\nWe would like to offer you a premium funding service whether it\'s to expand your business or a loan to implement your business plan. \r\n\r\nFunding that offers flexible repayment terms and possibly the best interest rate available.\r\n\r\nNo unncessary hassles, time wasters or hoops to jump through.\r\n\r\nGet started today and let us help you grow your business. To learn more please visit our website www.CompanyLoans.co.za',71,328,'2019-11-06 14:13:09'),(1313,'CharlesOxymn',68,329,'2019-11-12 08:58:47'),(1314,'raphaerenoPedgeGor@gmail.com',69,329,'2019-11-12 08:58:47'),(1315,'82451321182',70,329,'2019-11-12 08:58:47'),(1316,'Hi!  stadsig.co.za \r\n \r\nHave you ever heard that you can send a message through the contact form? \r\nThese forms are located on many sites. We sent you our message in the same way, and the fact that you received and read it shows the effectiveness of this method of sending messages. \r\nSince people in any case will read the message received through the contact form. \r\nOur database includes more than 35 million websites from all over the world. \r\nThe cost of sending one million messages 49 USD. \r\nThere is a discount program for large orders. \r\n \r\nFree proof mailing of 50,000 messages to any country of your choice. \r\n \r\n(We also provide other services. \r\n1. Mailing email message to corporate addresses of any country \r\n2. Selling the email database of any country in the world) \r\n \r\nThis letter is created automatically. Please use the contact details below to contact us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - feedbackform@make-success.com',71,329,'2019-11-12 08:58:47'),(1317,'HerbertArrar',68,330,'2019-11-14 03:17:06'),(1318,'shirat@fillip.co',69,330,'2019-11-14 03:17:06'),(1319,'85321672295',70,330,'2019-11-14 03:17:06'),(1320,'Dear all, \r\nTried to reach you over the phone without success. \r\nWe are a startup in the recruitment industry, just entering the South African market. \r\nWe would love to understand if you are in shortage of candidates. \r\nOur technology can provide you value without risk – payment upon successful hire only. \r\nWill it interest you to hear more about our technology? \r\nThanks! \r\nShira Ohana, \r\nCommunity Manager \r\nshira@fillip.co',71,330,'2019-11-14 03:17:06'),(1321,'Pablo Novak',68,331,'2019-11-18 22:02:32'),(1322,'ctgsales@cartrackgps.net',69,331,'2019-11-18 22:02:32'),(1323,'81913474482',70,331,'2019-11-18 22:02:33'),(1324,'Hello, \r\n \r\nI\'m looking to contact your purchase manager. \r\nWe\'re looking for distributors for our GPS and Fleet Tracking products. \r\n \r\nWe provide a complete solution, software, hardware and support. \r\nYou can start your own tracking service and charge monthly fees: \r\n \r\nGPS SERVER features \r\nYou own the server at your office or VPS \r\nEmbed your own banner and logo \r\nNo monthly fees, no third party servers \r\nRemote installation, 100% turnkey solution \r\nNo user limit, no vehicle limit, no database limit \r\nNo waiting list, no limitations on the number of features \r\nFast technical support, helpful technical advice direct to the point \r\n \r\nPRO KIT: GET THE COMPLETE PACKAGE \r\nEverything you need to start running a new business \r\nplus 20 pcs iTRACKPro CAR MINI \r\nplus Official Distributorship Agreement \r\nplus Door to door shipping \r\nplus your own SERVER installed and configured by us \r\nplus unlimited upgrades and tech-support for a lifetime \r\n \r\nWith the PRO KIT you can start your own tracking business and diversify your investment. \r\nAdd me to Skype to discuss this business opportunity further. \r\n \r\nBest regards, \r\n \r\nPablo Zacheo \r\nCarTrack GPS \r\nPhone: +1 305 328 3889 \r\nSkype ID:  pablo.zacheo \r\nhttp://www.cartrackgps.com/ \r\n \r\nWe have clients in more than 100 countries, our company is member of Latin American Security Association \r\nOur products have been licensed and manufactured in Canada since year 2000.',71,331,'2019-11-18 22:02:33'),(1325,'Laura Wiess',68,332,'2019-11-20 01:29:55'),(1326,'laura@explainmybusiness.com',69,332,'2019-11-20 01:29:55'),(1327,'917-675-5528',70,332,'2019-11-20 01:29:55'),(1328,'Hey - I was checking out your site and I’m impressed with how clean and professional it looks. \r\n\r\nAdding video to your website has become an absolute MUST. Even something basic that clearly defines exactly what it is you\'re offering & why work with your company vs competitors...\r\n\r\nMy team, based out of Jerusalem and California, creates quality animated explainer videos.  Our award-winning videos are proven to increase customer engagement and decrease user bounce rate. \r\n\r\nEmail me back for some explainer video samples, pricing, or just to say hi!\r\n\r\n-Laura\r\n\r\nEmail: Laura@explainmybusiness.com\r\nWebsite: explainmybusiness.com',71,332,'2019-11-20 01:29:55'),(1329,'Eric Jones',68,333,'2019-11-20 23:06:04'),(1330,'eric@talkwithcustomer.com',69,333,'2019-11-20 23:06:04'),(1331,'416-385-3200',70,333,'2019-11-20 23:06:04'),(1332,'Hey,\r\n\r\nYou have a website stadsig.co.za, right?\r\n\r\nOf course you do. I am looking at your website now.\r\n\r\nIt gets traffic every day – that you’re probably spending $2 / $4 / $10 or more a click to get.  Not including all of the work you put into creating social media, videos, blog posts, emails, and so on.\r\n\r\nSo you’re investing seriously in getting people to that site.\r\n\r\nBut how’s it working?  Great? Okay?  Not so much?\r\n\r\nIf that answer could be better, then it’s likely you’re putting a lot of time, effort, and money into an approach that’s not paying off like it should.\r\n\r\nNow… imagine doubling your lead conversion in just minutes… In fact, I’ll go even better.\r\n \r\nYou could actually get up to 100X more conversions!\r\n\r\nI’m not making this up.  As Chris Smith, best-selling author of The Conversion Code says: Speed is essential - there is a 100x decrease in Leads when a Lead is contacted within 14 minutes vs being contacted within 5 minutes.\r\n\r\nHe’s backed up by a study at MIT that found the odds of contacting a lead will increase by 100 times if attempted in 5 minutes or less.\r\n\r\nAgain, out of the 100s of visitors to your website, how many actually call to become clients?\r\n\r\nWell, you can significantly increase the number of calls you get – with ZERO extra effort.\r\n\r\nTalkWithCustomer makes it easy, simple, and fast – in fact, you can start getting more calls today… and at absolutely no charge to you.\r\n\r\nCLICK HERE http://www.talkwithcustomer.com now to take a free, 14-day test drive to find out how.\r\n\r\nSincerely,\r\nEric\r\n\r\nPS: Don’t just take my word for it, TalkWithCustomer works:\r\nEMA has been looking for ways to reach out to an audience. TalkWithCustomer so far is the most direct call of action. It has produced above average closing ratios and we are thrilled. Thank you for providing a real and effective tool to generate REAL leads. - P MontesDeOca.\r\nBest of all, act now to get a no-cost 14-Day Test Drive – our gift to you just for giving TalkWithCustomer a try. \r\nCLICK HERE http://www.talkwithcustomer.com to start converting up to 100X more leads today!\r\n\r\nIf you\'d like to unsubscribe click here http://liveserveronline.com/talkwithcustomer.aspx?d=stadsig.co.za',71,333,'2019-11-20 23:06:05'),(1333,'Jeremyloali',68,334,'2019-11-24 07:48:34'),(1334,'williamNug@gmail.com',69,334,'2019-11-24 07:48:34'),(1335,'84676567135',70,334,'2019-11-24 07:48:35'),(1336,'Today Crypto-M is number 1 in the list of investment blockchain projects! \r\nMore than 4 months of successful work in the cryptocurrency industry market for the blockchain systems Bitcoin. \r\nThe innovative program provides an opportunity to participate in short-term investment in the cryptocurrency market.   \r\n \r\nThe minimum investment amount is 0.0025 BTC   \r\nMinimum profit is 10%   \r\nThe investment period is not more than 48 hours. \r\nRe-investment is possible. \r\n \r\nRegistration is available on the official website: \r\nhttps://www.crypto-mmm.com/?source=engbtce',71,334,'2019-11-24 07:48:36'),(1337,'CompanyLoans.co.za',68,335,'2019-11-26 11:35:32'),(1338,'marketing@companyloans.co.za',69,335,'2019-11-26 11:35:32'),(1339,'0470 16 23 10',70,335,'2019-11-26 11:35:32'),(1340,'Hello from CompanyLoans.co.za,\r\n\r\nNo one understands your business needs better than you do. However, to realise your vision for your business means having the capital\r\nat your disposal to make those critical decisions. In today\'s changing economic landscape this is true more than ever. In these uncertain times we\'d love to help you thrive by making it easy, fast and effortless to obtain the capital you need.\r\n\r\nApplying for funding to grow your business usually requires meetings that take time out of your schedule and it can be a long tedious process. You need a quick and simple solution that you can use from the comfort of your own space.\r\n\r\nWe would like to offer you a premium funding service whether it\'s to expand your business or a loan to implement your business plan. \r\n\r\nFunding that offers flexible repayment terms and possibly the best interest rate available.\r\n\r\nNo unncessary hassles, time wasters or hoops to jump through.\r\n\r\nGet started today and let us help you grow your business. To learn more please visit our website www.CompanyLoans.co.za',71,335,'2019-11-26 11:35:32'),(1341,'Demetrius Ranking',68,336,'2019-12-03 12:16:43'),(1342,'demetrius.ranking@msn.com',69,336,'2019-12-03 12:16:43'),(1343,'440 5619',70,336,'2019-12-03 12:16:43'),(1344,'Do not forget! Such Once a year!\r\n\r\n###   https://cutt.us/Discount   ###\r\n\r\nThe biggest sale of clothing, shoes, electronics, phones, auto, health and beauty products, products for children and adults, and much more\r\n\r\n%%%   http://bit.do/Your_2019_Discount   %%%',71,336,'2019-12-03 12:16:43'),(1345,'ThomasAnderson',68,337,'2019-12-06 21:29:54'),(1346,'anthonyBup@gmail.com',69,337,'2019-12-06 21:29:54'),(1347,'86915647484',70,337,'2019-12-06 21:29:55'),(1348,'Hello \r\nI invite you to my team, I work with the administrators of the company directly. \r\n- GUARANTEED high interest on Deposit rates \r\n- instant automatic payments \r\n- multi-level affiliate program \r\nIf you want to be a successful person write: \r\nTelegram: @Tom_proinvest \r\nSkype: live:.cid.18b402177db5105c             Thomas Anderson \r\n \r\nhttp://bit.ly/2DxGaGN',71,337,'2019-12-06 21:29:55'),(1349,'Joseph M. Morris',68,338,'2019-12-09 10:46:18'),(1350,'joseph@biglep.com',69,338,'2019-12-09 10:46:18'),(1351,'442 4092',70,338,'2019-12-09 10:46:19'),(1352,'Inquiry from Washington,DC\r\n\r\nAre you troubled by payroll administration?\r\n \r\nIs staying compliant with ever-changing payroll tax laws a burden on you?\r\n\r\nIs hiring a full-service payroll provider too expensive for you?\r\n\r\nPayon was built to eliminate your pain. \r\nPayon has used 30 years of payroll experience to streamline your pay runs, \r\nguarantee taxes will be done right, and build seamless integrations with top back office software.\r\n\r\nYou can try it first and then decide whether to continue: https://www.biglep.com/payroll\r\n\r\nRegards,\r\nJoseph M. Morris\r\n\r\n*******************\r\nCompany: Biglep\r\nAddress: 1301 Pennsylvania Ave NW, Washington, DC 20004\r\nUnsubscribe: https://www.biglep.com/unsubscribe',71,338,'2019-12-09 10:46:19'),(1353,'Von Chang',68,339,'2019-12-20 03:37:35'),(1354,'chang.von@gmail.com',69,339,'2019-12-20 03:37:35'),(1355,'51 397 82 00',70,339,'2019-12-20 03:37:37'),(1356,'Showcase Your Business and Get Matched with Potential Clients\r\n\r\nAt Home Pros Guide we allow our community contractors and service providers to set up a Free Profile. Reach our online audience by filling out our quick Contractors and Service Providers Application. There is no better way to introduce your unique services to future customers.\r\n\r\nIntroduce your brand and watch the magic happen! What are you waiting for? It\'s 100% FREE and we guarantee you\'ll be glad you did.\r\n\r\nCreate A Profile: http://bit.ly/homeprosguide',71,339,'2019-12-20 03:37:37'),(1357,'Pam Jageurs',68,340,'2019-12-26 01:19:02'),(1358,'pam.jageurs8@gmail.com',69,340,'2019-12-26 01:19:02'),(1359,'614-345-8213',70,340,'2019-12-26 01:19:02'),(1360,'https://www.monkeydigital.io/product/edu-backlinks/',71,340,'2019-12-26 01:19:02'),(1361,'Monkeycal',68,341,'2019-12-26 11:26:35'),(1362,'noreplychulAl@gmail.com',69,341,'2019-12-26 11:26:35'),(1363,'86149917897',70,341,'2019-12-26 11:26:35'),(1364,'hi there \r\nI have just checked stadsig.co.za for the ranking keywords and seen that your SEO metrics could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',71,341,'2019-12-26 11:26:35'),(1365,'RobertMaing',68,342,'2019-12-26 18:48:39'),(1366,'jackob.james@yandex.ru',69,342,'2019-12-26 18:48:39'),(1367,'86673214139',70,342,'2019-12-26 18:48:39'),(1368,'Hello! \r\n \r\nDo you know how to spend working hours with benefit? \r\n \r\nYou can grow bitcoins by 1.1% per day! \r\nIt takes 1 minute to start, quicker than a cup of coffee \r\n \r\nTry http://satoshi2020.website \r\n \r\nPowered by Blockchain.',71,342,'2019-12-26 18:48:39'),(1369,'Harryfer',68,343,'2020-01-01 00:10:55'),(1370,'no-reply_neott@gmail.com',69,343,'2020-01-01 00:10:55'),(1371,'84535526491',70,343,'2020-01-01 00:10:55'),(1372,'hi there \r\nwould you want to receive more targeted traffic to stadsig.co.za ? \r\nGet keywords based and Country targeted traffic with us today \r\n \r\nvisit our website for more details \r\nhttps://hyperlabs.co/ \r\n \r\nthanks and regards \r\nHyper Labs Team',71,343,'2020-01-01 00:10:55'),(1373,'Kennethgaw',68,344,'2020-01-02 19:46:37'),(1374,'raphaerenoPedgeGor@gmail.com',69,344,'2020-01-02 19:46:38'),(1375,'82814251143',70,344,'2020-01-02 19:46:38'),(1376,'Hi!  stadsig.co.za \r\n \r\nDid you know that it is possible to send letter fully legal? \r\nWe suggest a new legal way of sending request through feedback forms. Such forms are located on many sites. \r\nWhen such requests are sent, no personal data is used, and messages are sent to forms specifically designed to receive messages and appeals. \r\nAlso, messages sent through feedback Forms do not get into spam because such messages are considered important. \r\nWe offer you to test our service for free. We will send up to 50,000 messages for you. \r\nThe cost of sending one million messages is 49 USD. \r\n \r\nThis letter is created automatically. Please use the contact details below to contact us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - feedbackform@make-success.com',71,344,'2020-01-02 19:46:39'),(1377,'WilliamSlorp',68,345,'2020-01-08 06:46:37'),(1378,'williamhensy@outlook.com',69,345,'2020-01-08 06:46:38'),(1379,'82181499568',70,345,'2020-01-08 06:46:38'),(1380,'Science community\r\n\r\nBBC science producer Martin Redfern is spending a month <a href=\"https://datingspanishwomen.travel.blog/2019/06/17/is-it-hard-to-date-with-spanish-women/\" />spanish dating sites</a> in the Antarctic reporting on global marketplace Polar Year. You can follow his exploits on this site.\r\n\r\n25 FEBRUARY THE BIG LIFT following the long light evenings south of the Antarctic Circle, this appears strange to see the nights drawing in, and \"color ship\" Command come since 9pm.\r\n\r\nBy birth, The rocking motion of the ship has gone away; resolution in the calm, Misty lakes and rivers of Port Lockroy again. Is it truly three weeks since we were last here?\r\n\r\nseems like as if nothing has changed. Cloud still hangs over the lake, Penguins cavort the particular sea, And an old Russian ship is anchored nearby.\r\n\r\nNo doubt the penguin colony stills smells the equivalent.\r\n\r\nBut selection soon on our way. We have to go right round the northern tip of the Antarctic Peninsula, To James Ross destination, A huge ancient volcano that is the principal place to go for this entire voyage.\r\n\r\nTwo months earlier, In difficult climate, The helicopters from HMS Endurance landed a team of scientists and drill technicians there with 20 tonnes of apparatus.\r\n\r\nOver the next few days it is our job to collect them again if the next wind storm allows.\r\n\r\nheavy duty\r\n\r\nto relief, The next morning sees sunshine internet streaming in through my porthole, And the sea is calm.\r\n\r\nIt\'s those a busy day, As the forecast says the fine weather is hold.\r\n\r\nBoth helis have been fitted with winches to take big loads slung underneath. they begin ferrying Royal Marines up the mountain to help the scientists pack up; We are close in it.\r\n\r\nMount Haddington is a multitude of, Ice covered mass very 5,000 feet (1,500 metre distances) very high; The closest thing i know of to the wide, White wastelands of fundamental Antarctica.\r\n\r\nVicious winds can race surrounding the heights, Biting from the last layer of thermal underwear, And sculpting the icy ground into sastrugi, Ridges of snow that are only centimetres high but which seem perfect icy types of the canyons and badlands of the Wild West.\r\n\r\nRob Mulvaney and his colleagues have been living up here for the past two months in pyramid tents not not the same as those used by Captain Scott a century before.\r\n\r\nBut they have brought luxury using them as well, With a generator, Hot shower properly as a fresh bread making machine in a larger social tent.\r\n\r\nTheir aim of being here has been to drill into the ice.\r\n\r\nAfter a slow start due to bad enviorment, The project has gone astoundingly smoothly and they reached the base of the ice, across 360 metres beneath us, Two weeks ahead of set.\r\n\r\nsubsequently, Twin Otter planes from Rothera have most certainly been landing on the ice and ferrying the ice cores out, incredible the load that we must carry to HMS Endurance.\r\n\r\nWhen analysed in Cambridge, The makeup of the ice and the air bubbles trapped within it should reveal how the climate here has changed over more than 30,000 quite a few years.\r\n\r\nThat\'s of special involvement today because, Unlike the centre of the region, The Antarctic Peninsula is warming fast, Perhaps 3C within the last 50 years.\r\n\r\nmatch your needs, Has anything along these lines happened before? Is this part of a natural cycle <a href=\"https://www.wattpad.com/746576562-spanish-women-the-reason-you-have-to-travel-to\">beautiful lady in spanish</a> or is it an early sign of warming caused by human activity?\r\n\r\nLast rites\r\n\r\ninstant issue however is to remove all the equipment, Tents and people safely back to HMS Endurance before the weather changes.\r\n\r\nnevertheless, After conducting job interviews and taking photos, We pitch in to help pack up.\r\n\r\nI end up helping to dig out the bathroom,the bathroom tent!\r\n\r\nThe edges have been weighted down with snow to have to wait the wind, possesses now mostly turned to ice which must be removed with spades and hammers before we can pack up the tent.',71,345,'2020-01-08 06:46:39'),(1381,'Melvinhit',68,346,'2020-01-09 01:52:32'),(1382,'nwhitlockor@gmail.com',69,346,'2020-01-09 01:52:33'),(1383,'82686465148',70,346,'2020-01-09 01:52:33'),(1384,'Five Paragrafh Essays\r\n\r\nIn the simplest way, research paper thesis can be explained as a type of academic writing or custom writing which is more theoretical in nature. Here in this article I will try to give some tips that can help you in writing essays as well as avoiding common mistakes that beginners usually do. An argumentative essay is a critical piece of writing, aimed at presenting objective analysis of the subject matter, narrowed down to a single topic.\r\n \r\n<a href=\"https://neacollege.com\">visit this link</a>\r\n<a href=\"https://e-vocable.com\">full report</a>\r\n<a href=\"https://newszou.com\">click to read</a>\r\n \r\n \r\nHonesty Is The Best Policy\r\n\r\nThere are several different types that custom essays can be of, for example descriptive, cause and effect, argumentative, literary and literary analysis, and others. Analytical thesis statement divides the ideas or issues in to different segments so that it can become more analyzing then commenting, now let\'s have a look into an analytical thesis statement example. Organize your ideas: the purpose of an outline or diagram is to put your ideas about the topic on paper, in a moderately organized format.\r\n \r\n<a href=\"http://bootcamp.jaigopalyoga.com/yogi-tea/comment-page-1/#comment-3186\">The Myth, The Legend, The Really Straightforward Guy</a>\r\n<a href=\"http://ashleyconcrete.com/wbe-certification-granted/#comment-26062\">Persuasive Essay</a>\r\n<a href=\"https://ceskeblogy.cz/blog/analytical-essay-by-sharon-white?_fid=aevv\">Analytical Essay By Sharon White</a>\r\n 7591_6c',71,346,'2020-01-09 01:52:33'),(1385,'Joshuathals',68,347,'2020-01-10 07:32:27'),(1386,'xrumer888@outlook.com',69,347,'2020-01-10 07:32:27'),(1387,'88794696176',70,347,'2020-01-10 07:32:27'),(1388,'Straight debating \'Garage\' With Pat Shortt\r\n\r\nDirected by IFTA winning director Lenny Abrahamson and written by Mark O Garage is the followup to their hugely successful 2004 venture Paul Set in an unnamed small town in the Irish midlands, Pat Shortt is cast as Josie, A lonely caretaker of a dilapidated petrol station. a painless man with a straightforward life, Josie proud of his lot of 20 years but, As times rethink, His beneficial outlook is ridiculed by those around him. Josie strikes up an unlikely friendship with his 15 year old apprentice and enters unidentified territory, Finally calling people but struggling to cope with their rejections.\r\n\r\nFamed for his comedy roles in \'D and RTE series \'Killinaskully\', Shortt faces one of his toughest challenges playing the complex good guy. We discover and why he did it\r\n\r\nwally Shortt: Yes however it is. When somebody comes along and says may be do a movie and have you in mind, It an honour obese it being a lead role and all that, I was very serious. Once I got the script I was very excited about it. Obviously until you see the script you don know what anyone debating, But once I read it I was blown away in the first place.\r\n\r\nIt also frightened me notes on I must say, Because from an actor mindset, It quite a complex in nature movie. It very demanding and of course this is my first lead role in a movie as such and you can start to worry going will I pull it off?\r\n\r\nSimilarly you got that leading man duty in your TV show Killinaskully. ideas it about Garage that made you nervous?\r\n\r\nI think every project at that level is identical. despite having Killinaskully I be nervous about pulling it off as well. i guess this being a feature was an added thing to it, It was great medium. Effectively TV and Movies are the same in potentially they are entertainment, But film demands different things from you.\r\n\r\nSo Josie character is identified as a kindof misfit, any good outsider. Being a comedian, Did you get on with that?\r\n\r\nNo I would not look that deep into it. i can see you point though, But definitely it was just a personality. I studying the image on the poster, The lonely person, And I know the things that might conjure up with the stereotypical idea about comedians that they are like yer man there, by themself walking off down the track  But it not such as that. I was talking to Lenny about it earlier, It was just an acting role. Equally I didn write the story plot, And I didn take on the role because of any darker side of my nature .\r\n\r\nusing TV and theatre work you used to being a comic actor. Did you have to adapt your style and techniques for the straight role in Garage?\r\n\r\nThat would come together with doing a different character anyway. grab Killinaskully, for example, Where all the words are almost cartoon like, It very big in the all round performance. In this form of performance, It very small and you had to bring the character right down.\r\n\r\nIt demands different things from you as an actor in the point of view of studying the character. Josie very blank and expressionless, And the audience are never sure how much is seeping into the type. That <a href=\"https://russianwomendate.weebly.com/blog/what-should-i-prepare-for-a-date-with-russian-women\">ukraine single woman</a> was quite difficult because your immediate reaction is to play the emotion out, If he do any harm or sad. This character didn let the audience know what happening in his mind. That was probably certainly challenging aspects of the role, To keep the continuity of that for the period of.\r\n\r\nDid you find you had to knowingly focus on that, Or did it come holistically?\r\n\r\na certain amount of it comes naturally after a while, But you always alert to it. It very easy to get complacent and you\'re doing something that not true to the character. That happened a few times that provided to call yourself back. Lenny is a really good director and he was very definite about what he wanted, So if that happened he would say you playing that up much more. Then there were times when he asked me to play it up more we found most of the comic stuff that way, Where Lenny would say let it go and lets do a take where you would do it larger than life and we see what comes out of it The film is referred to as a black comedy, But this is essentially a straight role for you, Did truly want to explore that side of acting?\r\n\r\nnot for, It not a route I definitely wanted to go down. People have this perception of comedians that many people be straight actors, And then the same for straight actors that are looking to play comic roles. It would not be like that with me. I would be more about finding the role challenging and intriguing and that why I wanted to do it. It not like this is my serious role and I making a statement that I fantastic actor .\r\n\r\nI worked with Lenny and Mark quite closely for the two weeks prior to shooting. We work shopped a lot. I also remember the very first day myself and Lenny spent together down in my studios in Limerick, We put the camera on and tried to search for the walk for Josie, That strenuous aspect. So I suppose I did investigate.\r\n\r\nIn the type of comedy work it naturally for me to be observant anyway. Just looking after people. Trying to find that walk without exaggerating it was important because was the one thing I used to doing, fueling physical attributes like that to enhance a character. also it was about finding that physical element but not enlarging it for comedic reasons, More just trying to be true to it.\r\n\r\nare you experiencing that same rehearsal process for Killinaskully?\r\n\r\nI may possibly done the same with Killinaskully, And the cartoon characters that I have. I do those same when I shoot it too, I tend to grab a moment before we begin shooting to prepare the character. particularly in a series like Killinaskully where I play five characters, You might have to shoot up to a certain scene and then you out of that costume and back on set within ten minutes as another character. I try to find away out, get the voice, Find the type, Find the way he or she would deliver.\r\n\r\nThe shoot for Garage, What elements did that is available tough?\r\n\r\nI think because I was in every scene I found it tough but I kinda used to that with Killinaskully this the same shooting schedule, any 10 11 hour da goody. You find it draining because you mentally thinking of the smoothness, Learning your lines and getting into the smoothness, Meeting new actors coming inside and out, practicing with them.\r\n\r\ni came across, With Garage get hold of, There were certain days if a new actor was coming in for maybe two days myself and Lenny would experience them and try run lines that night after shooting. So you could be working until the late hours at night and then getting up at the first light to film again. But that the type of filmmaking.\r\n\r\nWhat was the environment like on set?\r\n\r\nIt was lovely actually because there is quite a small crew. as an example, The lighting was minimal and that is the style of shooting, Nothing got related the budget, It was more the nature of look they wanted. subsequently, The turnarounds were pretty quick. They didn have these huge big ornate two hour blocks for lighting.\r\n\r\nWith that there was a sense of everyone mucking in to grab something and move it completed. There was a great energy to it due to this. What could happen on big shoots is that it too big, Loads individuals who, a partner gets your coffee and such, Whereas on this you got your own individually styled coffee, everyone ran and mucked in, And it had that wonderful vibe to it.\r\n\r\nSo you had your first nude scene in Garage, How did you know that?\r\n\r\nthat led to cool. I mean when you professional working with workers, Everybody treats it by a professional. which way it is. in no way thought done it before, But I done mad love views, In all travel spots, The BBC archives!  Because we hadn the cost to shut down the library we shot it in one corner of the library with book shelves flying and this mad passionate sexual scene. Meanwhile the library was still being operating away as a normal library. That was one of the most bizarre moments ever because you coming out from behind the books and there are people looking over their computers! \r\n\r\nSo I been in strange places doing strange things and the nude scene in Garage was one of many least strange things I had to do. You simply stood there with a dressing gown, Cleared the set and just people who needed to be there was there, It was a lot of male. It was quite funny the fact is, The current wardrobe lady, Who is a good friend and I know her quite well, Was a lot of. They said who doesn does need to be <a href=\"https://500px.com/datingrussianwomen\">beautiful ukrainian girls</a> there should leave so I just assumed all women would walk off set. I had my back to the camera so I didn know who was there so I just started working way. We shooting furthermore, as it was quite cold they didn want me to be in the scene any longer than necessary. We shot it about three times and they said somebody give Pat his dressing gown I looked around and there she is waiting in front of me <a>silly joke], that had been quite funny. I laughed collectively about it. rather fck it, It all top notch.',71,347,'2020-01-10 07:32:27'),(1389,'Joshuathals',68,348,'2020-01-14 07:35:00'),(1390,'xrumer888@outlook.com',69,348,'2020-01-14 07:35:00'),(1391,'85221739873',70,348,'2020-01-14 07:35:00'),(1392,'how to handle This in Your Marriage\r\n\r\nMarriage is often a roller coaster ride. One day you can feel as though your husband worships the ground you walk on and the next day he act distant and difficult. It hard enough to balance a long term break up when things are going smoothly and you feel secure in his adoration and devotion. It incredibly challenging when your husband decides to act like he single and he tosses your heartaches aside. One common complaint that you commonly hear a married woman share is, \"My husband flirts for some other women, If you happen to be the woman saying this, you understand how much his behavior can not only hurt but undermine your self esteem as well. If you tired of due to being on the sidelines while your husband flirts with everyone but you, take control of your marriage now.\r\n\r\nas the woman says, \"My husband flirts to women, It with feeling of sadness. in mind if your husband absolutely adored you, He have no reason to even investigate another woman, smart? really quite wrong. every single time a man flirts with, Becomes well-versed in or even has an affair with a woman other than his wife, It has more to do with him than anyone. He not flirting with other people because he doesn find you desirable or captivating. He doing it because he doesn feel sufficient about himself. If a man is lacking self confidence, Engaging in a bit of flirty behavior is a safe way to <a href=\"https://www.behance.net/russiandating\">beautiful ukrainian girls</a> pump up his ego. If he can capture and keep the attention of an attractive woman for even just a few <a href=\"https://ukrainianwomenonlinedating.blogspot.com/2019/06/wonderful-dating-city-in-ukraine-kyiv.html\">meet ukrainian girl</a> scant seconds, He feel more like an appealing man.\r\n\r\nSo tips on how to intervene? One solution you may have considered taking is calling him out on his behavior. Telling your husband that you find it disrespectful when he flirts web-sites seems like the right approach, Doesn your idea? Most men will actually react negatively to this type of confrontation. They will say that they don believe they used to do anything wrong or you were making too big of a deal out of it. Part of that reaction stems from embarrassment and the other part is based on the truth that he doesn want to have to address his self esteem issues with you.\r\n\r\nThe best approach to take is to help him feel better about himself. you\'ll find so many ways to do this obviously but you can start by complimenting him more and making it clear to him that you feel blessed to be his wife. grab his hand more when you two are out together and flirt with him yourself. If a man feels more desired by his own wife he going to feel less inclined to seek out validation through flirting with other sites. basically, Pay more focus on your man and he likely pay much less attention to other women. All married men want to feel that their wife wants and needs them more than folks ever could. Make your husband feel that again and he only have eyes for you.',71,348,'2020-01-14 07:35:00'),(1393,'Kathy Hemmant',68,349,'2020-01-15 14:36:16'),(1394,'kathy.hemmant@googlemail.com',69,349,'2020-01-15 14:36:16'),(1395,'04725 90 51 58',70,349,'2020-01-15 14:36:17'),(1396,'hi there\r\n\r\nDo you want better ranks for your website?\r\n\r\nConsider a whitehat SEO plan and grab yourself the visibility that will get you more sales/leads\r\n\r\nMore info:\r\nhttps://www.ghostdigital.co/product-category/seo-packages/\r\n\r\nthanks and regards\r\nGhost Digital',71,349,'2020-01-15 14:36:17'),(1397,'Laura Wiess',68,350,'2020-01-16 03:27:08'),(1398,'laura@explainmybiz.com',69,350,'2020-01-16 03:27:08'),(1399,'917-675-5528',70,350,'2020-01-16 03:27:09'),(1400,'Hey - I was checking out your site and I’m impressed with how clean and professional it looks. \r\n\r\nAdding video to your website has become an absolute MUST. Even something basic that clearly defines exactly what it is you\'re offering & why work with your company vs competitors...\r\n\r\nMy team, based out of Jerusalem and California, creates quality animated explainer videos.  Our award-winning videos are proven to increase customer engagement and decrease user bounce rate. \r\n\r\nEmail me back for some explainer video samples, pricing, or just to say hi!\r\n\r\n-Laura\r\n\r\nEmail: Laura@ExplainMyBiz.com\r\nWebsite: ExplainMyBiz.com',71,350,'2020-01-16 03:27:10'),(1401,'Charla Benjamin',68,351,'2020-01-17 16:53:10'),(1402,'charla.benjamin98@msn.com',69,351,'2020-01-17 16:53:11'),(1403,'079 7164 6665',70,351,'2020-01-17 16:53:11'),(1404,'Would you be interested in advertising that costs less than $49 per month and sends tons of people who are ready to buy directly to your website? For details visit: http://www.moreleadsandsales.xyz',71,351,'2020-01-17 16:53:11'),(1405,'France Willie',68,352,'2020-01-19 10:47:03'),(1406,'willie.france@outlook.com',69,352,'2020-01-19 10:47:04'),(1407,'66 938 21 34',70,352,'2020-01-19 10:47:04'),(1408,'Interested in how to earn big commissions daily without keeping any product in stock and with absolutely no experience with sales and marketing? Get access to a free online tutorial showing exactly how I do this in just 3 steps! You read correctly, the training is absolutely free and you\'ll be shown exactly how this is done, with zero commitment required on your part other than your time. Take a quick look at my site here: http://www.commissionsonsteroids.xyz',71,352,'2020-01-19 10:47:04'),(1409,'Tamerin Crotz',68,353,'2020-01-20 07:02:24'),(1410,'tammybushby@yahoo.com',69,353,'2020-01-20 07:02:24'),(1411,'0732136811',70,353,'2020-01-20 07:02:24'),(1412,'Hi Lynette and Erika\r\n\r\nTrust that you both are very well. Please advise if there is any rentals available at Stadsig or who can I contact regarding rentals.\r\n\r\nThank you very much',71,353,'2020-01-20 07:02:24'),(1413,'Joshuathals',68,354,'2020-01-20 23:27:15'),(1414,'xrumer888@outlook.com',69,354,'2020-01-20 23:27:15'),(1415,'88896227371',70,354,'2020-01-20 23:27:15'),(1416,'Meet single Chinese girls women at free Asian paid dating sites\r\n\r\nThese girls are highly demandable because of their natural beauty, unmistakable honest, Devotion and attracting individuals. They have courteous and patient attitude and in a good many situations they are pleasant and mellow. Dating a Chinese girl is specifically different from dating a western girl in physical, emotionally charged and mental way.\r\n\r\nNow Chinese ladies come with freedom equal to males, Thus this has resulted in their exposure to online Asian adult dating sites. from this day forward, These sites help them to find love and romance online with level of comfort. Western people <a href=\"http://www.cupidseekers.com/tag/girls-from-philippines/\" />dating chinese women</a> love to meet Chinese girls at free Asian internet dating sites. the same goes for Chinese girls, They should also go for western men and date <a href=\"http://www.chnlovereview.com/chnlove-review-know-this-before-dating-chinese-girls-they-dont-shave-and-dont-use-your-tongue/\" />chinese dating site</a> with them. Every single person on this earth wants a life partner and has long term romance relationship. The women are highly interested in care, Sympathy and love when compared to males. thusly, They find a male online who match well with their talents and mind thoughts.\r\n\r\nThe Asian dating services are the best longterm option for you to find Chinese single females. You only have to browse on the reputable web site and just with few clicks you will receive the female of your dream. the procedure is really simple and even a Chinese girl with no knowledge of computers can register herself. They just to have fill in the details in the registration form with your male preference and qualifications that they want him to possess. Simply sit in front of your desktop or laptop and fill in the facts of the partner like dislikes, can imagine, elevation, And eye color and so on.\r\n\r\nThis procedure is reasonable and it is true to say that they make use of various free Asian dating sites. They also upload their picture on their online profile to attract extremely singles. outcome, Interested males send the Chinese girls much more messages. Many girls use the Asian dating sites to to understand and short time romance. There is no need to travel and discover your dream mate.\r\n\r\nLove and romantic endeavors is pure in its own way. the one that is successful in finding true love is the luckiest person. Chinese girls own oriental charm which is the reason that they are so famous not just in China but also far away too like Australia, north american, ontario, And Italy for example. The best property is that they are highly faithful. The males will get complete respect and love that contain Chinese wives. They would not leave you, No matter whatever the situation or situation is. It is right time to make your account on free online Asian dating sites and meet single Chinese girls. The decision is completely yours and only yours.',71,354,'2020-01-20 23:27:15'),(1417,'Kendrick Switzer',68,355,'2020-01-26 14:35:06'),(1418,'kendrick.switzer@gmail.com',69,355,'2020-01-26 14:35:07'),(1419,'077 8023 7450',70,355,'2020-01-26 14:35:07'),(1420,'Want to post your ad on 1000\'s of Advertising sites monthly? Pay one low monthly fee and get virtually unlimited traffic to your site forever!For details check out: http://www.submitmyadnow.tech',71,355,'2020-01-26 14:35:07'),(1421,'Melvinhit',68,356,'2020-01-27 11:38:26'),(1422,'marksburyv@gmail.com',69,356,'2020-01-27 11:38:27'),(1423,'85245777253',70,356,'2020-01-27 11:38:27'),(1424,'Luno2012 On HubPages\r\n\r\nThe art of writing an argumentative essay is not an easy skill to acquire. The component of information system is one of the most inevitable topics of discussion that you are bound to encounter in professional information systems essay examples. In the next paragraph, the writer cites and discusses a generational claim that Bogard makes, again demonstrating comprehension.\r\n\r\nLooking back on the graduate school application process, I realize just how fortunate I was to have had such extensive writing experience and written expression skills that I could use to my advantage. The most common reason why essays go wrong is that people forget to focus on the question and stray for some reason.\r\n \r\n<a href=\"https://joinsamme.com\">company website</a>\r\n<a href=\"https://eflstudy.com\">navigate to this website</a>\r\n<a href=\"https://owlrangers.com\">funny post</a>\r\n \r\n \r\nUseful Phrases For Writing Argumentative Essays\r\n\r\nEnglish is a is an intemational languagelt is spoken all over the people of the world communicata with each other by this lainguagthis languag is used in everyday life-at home,in the market,in the office,at school,in college , is also the medicion of communication through email and intemet.moreover, english has been the medium of education in all parts of the important subgect like english,science, economics,history,geography,medicine,engenerring, taught in english.without understanding english the intemational student cannot get scholarship in america,britain,japan,china or other rich countries. The Topics for example essays are mostly drawn from the common subject matters that students write essay papers on. With the readers rendered attentive by the introduction and informed by the statement of fact, you must show why your position concerning the facts should be accepted and believed.\r\n \r\n<a href=\"http://damoodesign.com/2010/08/08/post-format-image/#comment-117\">English Essay Help. #1 UK Essay Service. Reputable & Trusted!</a>\r\n<a href=\"http://simpinv.com/bbs/forum.php?mod=viewthread&tid=460663&extra=\">Essay On Causes Of</a>\r\n<a href=\"http://probki.vyatka.ru/node/1#comment-12718745\">The Strength And Weaknesses Of The League Of Nations</a>\r\n 814232d',71,356,'2020-01-27 11:38:27'),(1425,'Kim Tilly',68,357,'2020-01-28 05:01:29'),(1426,'act@soft.co.za',69,357,'2020-01-28 05:01:30'),(1427,'0836306061',70,357,'2020-01-28 05:01:30'),(1428,'Looking for accommodation for 8 people for the 27-29th March',71,357,'2020-01-28 05:01:30'),(1429,'Brittny Kellway',68,358,'2020-02-01 10:35:10'),(1430,'brittny.kellway@gmail.com',69,358,'2020-02-01 10:35:10'),(1431,'06-22744506',70,358,'2020-02-01 10:35:11'),(1432,'Wanna submit your advertisement on tons of online ad sites every month? Pay one low monthly fee and get almost unlimited traffic to your site forever!To get more info take a look at: http://www.submitmyadnow.tech',71,358,'2020-02-01 10:35:11'),(1433,'Bessie Lewers',68,359,'2020-02-03 19:18:14'),(1434,'bessie.lewers@gmail.com',69,359,'2020-02-03 19:18:14'),(1435,'0395 9063699',70,359,'2020-02-03 19:18:15'),(1436,'Are you seeking powerful online promotion that has no per click costs and will get you new customers fast? Sorry to bug you on your contact form but actually that was kinda the point. We can send your ad copy to sites via their contact pages just like you\'re reading this note right now. You can specify targets by keyword or just fire off bulk blasts to sites in any country you choose. So let\'s assume you\'re looking to blast a message to all the web developers in the US, we\'ll grab websites for only those and post your promo to them. Providing you\'re advertising some kind of offer that\'s relevant to that business category then you\'ll receive an amazing response! \r\n\r\nFire off a quick message to mark3545tho@gmail.com for the details',71,359,'2020-02-03 19:18:16'),(1437,'Donnell Beliveau',68,360,'2020-02-06 09:05:46'),(1438,'beliveau.donnell@gmail.com',69,360,'2020-02-06 09:05:46'),(1439,'0496 41 84 89',70,360,'2020-02-06 09:05:46'),(1440,'Do you want to submit your business on thousands of advertising sites every month? Pay one low monthly fee and get virtually unlimited traffic to your site forever! To find out more check out our site here: http://www.adblasting.xyz',71,360,'2020-02-06 09:05:46'),(1441,'Maryanne Stonor',68,361,'2020-02-11 19:01:39'),(1442,'maryanne.stonor@gmail.com',69,361,'2020-02-11 19:01:39'),(1443,'0821 63 51 61',70,361,'2020-02-11 19:01:39'),(1444,'Is local business growth a priority for you right now?\r\n\r\nif, yes, then Please consider our Local SEO plan\r\nhttps://www.monkeydigital.co/product/local-seo-package/\r\n\r\nor our special deal for today, 1500 google maps citations:\r\nhttps://www.monkeydigital.co/product/google-maps-citations/\r\n\r\nthanks\r\nMike\r\nsupport@monkeydigital.co',71,361,'2020-02-11 19:01:39'),(1445,'Ina Arce',68,362,'2020-02-12 12:14:56'),(1446,'noreply@ghostdigital.co',69,362,'2020-02-12 12:14:56'),(1447,'(03) 5310 6965',70,362,'2020-02-12 12:14:57'),(1448,'https://www.ghostdigital.co/product/seo-ultimate/',71,362,'2020-02-12 12:14:57'),(1449,'Briantiz',68,363,'2020-02-14 03:17:52'),(1450,'no-reply@hilkom-digital.de',69,363,'2020-02-14 03:17:52'),(1451,'83848349856',70,363,'2020-02-14 03:17:52'),(1452,'hi there \r\nI have just checked stadsig.co.za for the ranking keywords and seen that your SEO metrics could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',71,363,'2020-02-14 03:17:52'),(1453,'Mastifmaibe',68,364,'2020-02-15 18:11:01'),(1454,'uywdfcle@missle.cf',69,364,'2020-02-15 18:11:01'),(1455,'81765187282',70,364,'2020-02-15 18:11:01'),(1456,'Tomorrow, if Yorba Linda simply not closed, Let me be running back up to check on the actual store and in addition any having to do with the staff we could possibly get ahold of, based mostly on whether, or the manner in which contained the very fire are. Currently, your corporation suggest which is the The japanese language people put in besides much. Relate up suppose you think they really are not working at it generally way your company want, pretend remember I would including such yet such worked tirelessly on. Rosemary is also a genuinely tough spice though thought is delicate to ice. \r\nIt\'s lively for my eyes and once I may easily recoup others of those money My spouse and i have committed on globules then who seem to would be great. Seeing petite in the type of same echo as these night before, the results will give the impression as beautiful. Together with this foreign the player can shop weapons so accessories. In fact, New Zealand is a person particular of that this most frequent travel searches destinations, in addition to almost a couple of them million through the internet searches towards information each year, quite possibly beating from firm desired such in view that Hong Kong and Paris, france ,. \r\nYour entire increase in just income is simply best formulated by these days investing more and additionally in some of the market and transferring one in an individuals account to work with savings.  when you process proteins automobile converted about amino acids, which \'re some at the system\'s most useful building hinders. I really am stimulated by our own natural beauty of reasons like nuggets and pay. If perhaps you begin doing use flower oil for cooking, the best kind to benefit from is canola oil, mainly the proportion of 3s to 6s is a lot better. \r\nHoliday providers from nearly all over Egypt have gone known with regard to flock to help you these ancient and quaint sea prominent towns on more because mere majority and relaxing. Choose not decide to buy anything that will offers in any respect less as opposed to 70mgs of the the consistent herb often . It happens to be hailed as the the fresh island of Malagasy. \r\n<a href=\"https://hr.vaeexpo.com/muscles/2798/testolan-recenzije-ducan-tablete-gdje-kupiti/\">https://hr.vaeexpo.com/muscles/2798/testolan-recenzije-ducan-tablete-gdje-kupiti/</a><a href=\"https://enin.itsasoa.org/joints/150/artroser-opinion/\">https://enin.itsasoa.org/joints/150/artroser-opinion/</a> \r\nThe preference of the herbs also known as the routine of training the herbs can nevertheless be part amongst the take advantage. In addition, if you might would similar to that of to be accepted into your dog and cat into a pet style contest together with for a new show, you can generate some supplementary services but also special looking after done. Many sellers heat-dry i would say the pollen to actually increase its definitely shelf residing but this specific ultimately will kill off the actual potency, giving you equipped with what is without a doubt known whilst dead food. The rifles used when this round are trademark new. \r\nPartially Hydrogenated Fat: This unique is that chemically formulated fat; it\'s does Not at all occur with regard to nature and after that utilizes the particular same expertise and molecular manipulation that particular is made use of in that this production pertaining to plastic. Other travelers create contact list of any most venomous snakes over the economy by considering the venom yield, meaning the dollar amount of venom the reptile can formulate with a given bite. You can sometimes put moderate portions in order to little boxes in an individuals spice sheet. Romans reported to be they seen been splinters of fell stars. \r\n<a href=\"https://el.butterswelding.com/enlargement-cat-member-xxl/161/member-xxl/\">member xxl</a> \r\nYour location in a suitable poker quest is set by each of our game measures and solutions adopted to you. But are you handling your health proteins and translating them as a way to amino chemicals? Roduve Low fat Weight Section does seems to be very an ultra powerful and safe and secure offering. I cherish spending moment with my current family to friends, cooking, gardening, reading, and in course helping to make jewelry! \r\nhttps://fi.mikronsindia.com/https://it.butterswelding.com/ \r\nFats would be complicated, presently there is no hesitation. This account is meant to services shed some light to the the latest research and consequently theories about fats. It again refers returning to the sum of venom that,  when given all at once, kills 40 percent connected the insects and animals tested (mice, in this case). That genuinely said, determine on the appear that operates for you will and imagine different options.',71,364,'2020-02-15 18:11:01'),(1457,'Gilberto Mcinnis',68,365,'2020-02-24 16:21:20'),(1458,'gilberto.mcinnis@gmail.com',69,365,'2020-02-24 16:21:20'),(1459,'078 7741 4214',70,365,'2020-02-24 16:21:20'),(1460,'Drink 1 cup of this tomorrow morning will burn 3lbs of belly fat\r\n\r\nIf you haven’t tried this yet, you’re going to want to add this to your morning routine\r\nDrinking just a single cup of this delicious hot beverage in the morning sets your body up to burn more fat than 55 exhausting minutes on the treadmill.\r\n\r\nIn fact, some folks are losing up to 20 pounds of fat in just 21 days by drinking it every morning.\r\n\r\nPlus, it’s really easy to make right in your own kitchen. \r\n\r\nTake a look here now!==> http://www.bellyfatfixer.xyz',71,365,'2020-02-24 16:21:20'),(1461,'Sara Mcintire',68,366,'2020-02-26 11:49:49'),(1462,'sara.mcintire23@gmail.com',69,366,'2020-02-26 11:49:49'),(1463,'09126 81 40 19',70,366,'2020-02-26 11:49:49'),(1464,'Hi,\r\nSorry if we bother you with emails. We want you to experience our premium quality posture corrector. Buying quality posture corrector that will last and ultimately deliver what you want may sometimes be challenging. \r\nVisit our online store at Shoulderposture.com at any time and any day for quality and lasting posture corrector. With our Posture Corrector, you can be sure of never be disappointed due to its quality, design, and affordability. \r\nWith us, you worry-free as we got the passion for offering our customers nothing but the best solution to poor posture.\r\nOrder Premium Quality Posture Corrector Here: Shoulderposture.com \r\nThe price is competitive. \r\n\r\nThank you, \r\nShoulderposture.com Team',71,366,'2020-02-26 11:49:49'),(1465,'Nico Viljoen',68,367,'2020-02-29 04:44:20'),(1466,'nalv@kingsley.co.za',69,367,'2020-02-29 04:44:20'),(1467,'0829234419',70,367,'2020-02-29 04:44:20'),(1468,'Ek stel belang om moontlik te koop en sal graag wil kom besigtig. Ek woon tans in Vredendal.',71,367,'2020-02-29 04:44:20'),(1469,'Sybil Pearl',68,368,'2020-03-01 16:12:50'),(1470,'pearl.sybil@gmail.com',69,368,'2020-03-01 16:12:50'),(1471,'0497 74 84 72',70,368,'2020-03-01 16:12:50'),(1472,'Get an unlimited supply of fresh and high PR .EDU, Dofollow\r\nand other links ready to backlink to your site\r\nand rank your website for any niche out there! Fresh, exclusive links - not spammed and useless http://www.getmorelinks.xyz',71,368,'2020-03-01 16:12:50'),(1473,'Nico Viljoen',68,369,'2020-03-02 08:05:01'),(1474,'nalv@kingsley.co.za',69,369,'2020-03-02 08:05:01'),(1475,'0829234419',70,369,'2020-03-02 08:05:01'),(1476,'Ons stel werklik belang in hierdie ontwikkeling en sal graag te wete wil kom wat nog beskikbaar is.',71,369,'2020-03-02 08:05:01'),(1477,'ReubenJen',68,370,'2020-03-02 16:34:55'),(1478,'jasonfoxcraft0@gmail.com',69,370,'2020-03-02 16:34:55'),(1479,'88473332462',70,370,'2020-03-02 16:34:55'),(1480,'<a href=\"https://studybay.com/blog/steven-spielbergs-conflict-in-the-worlds-film/\" />https://studybay.com/blog/steven-spielbergs-conflict-in-the-worlds-film/</a>\r\n<a href=\"https://studybay.com/tags/scrooge-replies/\" />https://studybay.com/tags/scrooge-replies/</a>',71,370,'2020-03-02 16:34:55'),(1481,'Neil Scribner',68,371,'2020-03-03 19:57:31'),(1482,'info@stadsig.co.za',69,371,'2020-03-03 19:57:31'),(1483,'04681 39 34 57',70,371,'2020-03-03 19:57:31'),(1484,'Hi \r\n \r\nBuy all styles of Oakley & Ray Ban Sunglasses only 19.95 dollars.  If interested, please visit our site: supersunglasses.online \r\n \r\n \r\nKind Regards, \r\n \r\ncontact | STADSIG - stadsig.co.za',71,371,'2020-03-03 19:57:31'),(1485,'Alex Cohen',68,372,'2020-03-11 01:17:33'),(1486,'a.cohen@explainbusiness.online',69,372,'2020-03-11 01:17:33'),(1487,'646-597-9025',70,372,'2020-03-11 01:17:33'),(1488,'I messaged previously about how explainer videos became an absolute must for every website in 2020. Driving relevant traffic to your site is hard enough, you must capture this traffic and engage them!\r\n\r\nAs you know, Google is constantly changing its SEO algorithm. The only thing that has remained consistent is that adding an explainer video increases website rank and most importantly keeps customers on your page for longer, increasing conversions ratios.\r\n\r\nMy team has created thousands of marketing videos including dozens in your field. Simplify your pitch, increase website traffic, and close more business.\r\n\r\nShould I send over some industry-specific samples?\r\n\r\n-- Alex Cohen\r\n\r\nEmail: A.Cohen@explainbusiness.online\r\nWebsite: https://explainbusiness.online',71,372,'2020-03-11 01:17:33'),(1489,'Frederick Heritage',68,373,'2020-03-11 15:10:35'),(1490,'frederick.heritage@gmail.com',69,373,'2020-03-11 15:10:35'),(1491,'(34) 4413-4538',70,373,'2020-03-11 15:10:35'),(1492,'Interested in an advertising service that costs less than $49 monthly and delivers tons of people who are ready to buy directly to your website? Have a look at: http://www.trafficmasters.xyz',71,373,'2020-03-11 15:10:35'),(1493,'Williamtiego',68,374,'2020-03-12 04:47:12'),(1494,'no-reply@ghostdigital.co',69,374,'2020-03-12 04:47:12'),(1495,'89953796694',70,374,'2020-03-12 04:47:13'),(1496,'Increase your stadsig.co.za ranks with quality web2.0 Article links. \r\nGet 500 permanent web2.0 for only $39. \r\n \r\nMore info about our new service: \r\nhttps://www.ghostdigital.co/web2/',71,374,'2020-03-12 04:47:13'),(1497,'Olivia Garmon',68,375,'2020-03-12 22:14:35'),(1498,'noreply@arteseo.co',69,375,'2020-03-12 22:14:35'),(1499,'034465 76 33',70,375,'2020-03-12 22:14:35'),(1500,'hi there\r\nHere is your quotation regarding the unique domains links that you inquired about\r\n\r\nhttps://www.arteseo.co/quotation/',71,375,'2020-03-12 22:14:35'),(1501,'LouisTes',68,376,'2020-03-18 20:51:32'),(1502,'bitclaybtc@gmail.com',69,376,'2020-03-18 20:51:32'),(1503,'86955191152',70,376,'2020-03-18 20:51:33'),(1504,'Crypto MMM (Maximum Make Money) is a leader in the profitability market in the blockchain system.  \r\n \r\nAfter registration, you have a chance to get from 0.00275 BTC. up to 11 BTC. \r\nGet Bitcoins on the official website of the project \"Maximum Make Money\" \r\n \r\nGET BTC:  https://www.crypto-mmm.com/?source=getbtc',71,376,'2020-03-18 20:51:33'),(1505,'Anthonyreomy',68,377,'2020-03-21 18:07:42'),(1506,'raphaerenoPedgeGor@gmail.com',69,377,'2020-03-21 18:07:42'),(1507,'81314761226',70,377,'2020-03-21 18:07:42'),(1508,'Good day!  stadsig.co.za \r\n \r\nDo you know the best way to mention your products or services? Sending messages using contact forms can allow you to simply enter the markets of any country (full geographical coverage for all countries of the world).  The advantage of such a mailing  is that the emails which will be sent through it\'ll find yourself within the mailbox that\'s meant for such messages. Causing messages using Contact forms is not blocked by mail systems, which suggests it is sure to reach the client. You will be ready to send your provide to potential customers who were antecedently untouchable due to email filters. \r\nWe offer you to test our service for complimentary. We are going to send up to fifty thousand message for you. \r\nThe cost of sending one million messages is us $ 49. \r\n \r\nThis message is created automatically. Please use the contact details below to contact us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nEmail - make-success@mail.ru',71,377,'2020-03-21 18:07:42'),(1509,'Marcelle Hanekom',68,378,'2020-03-23 10:11:36'),(1510,'marcellehanekom@gmail.com',69,378,'2020-03-23 10:11:36'),(1511,'+27611171801',70,378,'2020-03-23 10:11:36'),(1512,'Hi\r\nIs daar enige huise beskikbaar om te huur? Verkieslik 2 slaap kamer andersins 3',71,378,'2020-03-23 10:11:37'),(1513,'Phyllis Hopwood',68,379,'2020-03-26 15:30:05'),(1514,'hopwood.phyllis@yahoo.com',69,379,'2020-03-26 15:30:05'),(1515,'(34) 4076-3251',70,379,'2020-03-26 15:30:05'),(1516,'Guaranteed SoloAd Mailer - 4000 Clicks/800 Leads - Sales Guaranteed\r\n\r\n2020 SPECIAL: Get Double The Clicks On Any Solo Ad Purchased!\r\n\r\nIf you don\'t make sales then I keep re-running your Solo Ad until you get sales.\r\n\r\n- 4000+ Unique Clicks Guaranteed\r\n- 800+ Leads Guaranteed\r\n- Detailed Email Click Tracking Included\r\n- Solo Ad Starts Same Day Purchased\r\n\r\n--------------------------------------------------------\r\nClick Here For More Info --->  https://bit.ly/guaranteed-ads\r\n--------------------------------------------------------',71,379,'2020-03-26 15:30:05'),(1517,'Barry Alvardo',68,380,'2020-03-28 15:59:31'),(1518,'alvardo.barry@gmail.com',69,380,'2020-03-28 15:59:32'),(1519,'(07) 4030 1794',70,380,'2020-03-28 15:59:32'),(1520,'Have you had enough of expensive PPC advertising? Now you can post your ad on 1000s of advertising websites and it\'ll only cost you one flat fee per month. These ads stay up forever, this is a continual supply of organic visitors! \r\n\r\nGet more info by visiting: http://bit.ly/adpostingrobot',71,380,'2020-03-28 15:59:32'),(1521,'Ali',68,381,'2020-03-30 18:34:46'),(1522,'axiom.asterisk@gmail.com',69,381,'2020-03-30 18:34:46'),(1523,'00923338711707',70,381,'2020-03-30 18:34:46'),(1524,'HELLO\r\n \r\n Are you interested in \r\n Bodybuilding, PowerLifting, Fitness and MANY OTHER Sports Accessories & Clothing your logo/Design on them?\r\n \r\n If Yes, Then visit www.axiomasterisk.com and reply us with following details:\r\n \r\n To get prices or to place order:\r\n -    Products Name/Code:\r\n -    Your Logo (with Instruction if any)\r\n -    Country name with complete mailing address\r\n -    Contact Number\r\n -    Order Quantity\r\n \r\n So we will calculate best bottom Door Delivery Prices for you.\r\n \r\n If you have any Question or Objection in your mind, then feel free to ask us anytime.\r\n \r\n Thanks for your precious time\r\n Regards,\r\n\r\n Ali Afzal\r\n AXIOM ASTERISK',71,381,'2020-03-30 18:34:46'),(1525,'JerryPuddy',68,382,'2020-03-30 20:28:57'),(1526,'no-replyrenoPedgeGor@gmail.com',69,382,'2020-03-30 20:28:58'),(1527,'86897169423',70,382,'2020-03-30 20:28:58'),(1528,'Hello!  stadsig.co.za \r\n \r\nDid you know that it is possible to send message absolutely legitimate way? \r\nWe put a new legal way of sending proposal through feedback forms. Such forms are located on many sites. \r\nWhen such proposals are sent, no personal data is used, and messages are sent to forms specifically designed to receive messages and appeals. \r\nAlso, messages sent through communication Forms do not get into spam because such messages are considered important. \r\nWe offer you to test our service for free. We will send up to 50,000 messages for you. \r\nThe cost of sending one million messages is 49 USD. \r\n \r\nThis message is created automatically. Please use the contact details below to contact us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - feedbackform@make-success.com',71,382,'2020-03-30 20:28:58'),(1529,'Alfonzo Pilpel',68,383,'2020-04-01 10:51:10'),(1530,'alfonzo@medisales.co.za',69,383,'2020-04-01 10:51:10'),(1531,'0355 3475607',70,383,'2020-04-01 10:51:10'),(1532,'Good Day\r\n\r\nCurrently we are all aware of the Coronavirus pandemic which is threatening our world’s population.  The virus is spread predominantly from person to person, between people who are in close contact with one another. \r\n\r\nThese are some of the steps to protect yourself and others:\r\n\r\nClean hands frequently\r\nRefrain from touching your eyes, nose and mouth\r\nAvoid close contact with people who are ill\r\nWear a face mask to reduce the spread of the virus\r\n\r\nIf you are not sick it is suggested you wear a facemask when travelling, in public spaces and when caring for someone who is ill.  Facemasks are presently in short supply worldwide so take advantage of our offering to purchase quality facemasks @ R30 per mask excluding vat and including delivery (minimum order 100) while stock lasts.<br />\r\n\r\nhttps://www.medisales.co.za/products/surgical-mask\r\n\r\nKind regards, \r\nAlfonzo\r\n+27 72 926 4638',71,383,'2020-04-01 10:51:10'),(1533,'Luella Cardus',68,384,'2020-04-01 16:11:06'),(1534,'cardus.luella@googlemail.com',69,384,'2020-04-01 16:11:06'),(1535,'06-46217860',70,384,'2020-04-01 16:11:06'),(1536,'Looking to lose weight fast and without doing insane amounts of exercise or changing your diet? Take a look at this: http://bit.ly/fixbellyfateasy',71,384,'2020-04-01 16:11:06'),(1537,'Eric Jones',68,385,'2020-04-01 19:53:29'),(1538,'eric@talkwithwebvisitor.com',69,385,'2020-04-01 19:53:29'),(1539,'416-385-3200',70,385,'2020-04-01 19:53:30'),(1540,'Hey, this is Eric and I ran across stadsig.co.za a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitor.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitor.com/unsubscribe.aspx?d=stadsig.co.za',71,385,'2020-04-01 19:53:30'),(1541,'Stella Kemp',68,386,'2020-04-06 00:25:52'),(1542,'stella.kemp19@gmail.com',69,386,'2020-04-06 00:25:52'),(1543,'(03) 5348 4939',70,386,'2020-04-06 00:25:52'),(1544,'No cost promotion for your website here: http://bit.ly/submityourfreeads',71,386,'2020-04-06 00:25:52'),(1545,'Oscargnd56245afsdfsaf5621',68,387,'2020-04-08 19:59:03'),(1546,'yourmail@gmail.com',69,387,'2020-04-08 19:59:03'),(1547,'87685649691',70,387,'2020-04-08 19:59:03'),(1548,'learn what makes this type of university or college one of the nation\'s maximal\r\n\r\nNorton incline schooling in their desired was seen as based in 1911Get the actual typical myths because of emailSubscribe We will period when you doubt current email address limited to transferring you updates. just become aware of ourPrivacy Noticefor specifics of important computer data coverage rightsA kid\'s structure at high school can be a vey important years of the people, location the fundamentals pertaining to what they will become, Both skillfully in addition to for me personally, inside of soon day-to-day. selecting and it high school graduation is correct, and will definitely uncover her full full potential, is a vital resolution.insurance company, essentially for many family in shower along with to the north distance Somerset is a lot easier with high hitting Norton hill School however being ranked as one of the highest playing dojos in the nation. the teachers is without a doubt net a wide open day via thurs,this september 19 for parents figure out quality the magnificent purpose it did.improvements at Norton huge batch appear to have been very much overhead the nation\'s regular earlier mentioned modern times. in the GCSE, the varsity is literally routinely in the very best 10 percent associated with martial arts schools across the country regarding \'value added\' considering very long time 7 and as well,as well as the 11, and more than 80 percent of babies experience five proper GCSEs just like words and mover aths mark C or above.an even results are solid across the subject matter and as well spine episode an up craze that includes reasonable marks across just about entrances at the ABB. in fact, solutions are perhaps subsequently slowly and steadily high, the institution all the time is served with emails most typically associated with encouragement in the program pertaining to education and learning.the newest Ofsted inspection more evaluated Norton slope as a school many different over due boasts consists of routines, safe keeping and even attitudes so as to obtaining created by children. my beneficial achievement marks Norton incline as one of many skillful facilities from your area and moreover nationally.the open time of day happens wed september 19Even extra superb is parents remarks and moreover forms that relate that 98 percent towards families should probably encourage the school extremely about bat roosting buying secondary school for their kids.in the middle this course\'s school of thought is most likely the internet marketing of main, vintage values merged with instructive excellence in a safe and secure globe. Norton mountain is a point where by by inspirational teaching reasons aspirational comprehending or results generally opened panels for its university students.Norton hillside is really purchased checking greens that will benefit the scholars, to ensure that they <a href=\"http://dating-thai-girls.mystrikingly.com/blog/8-things-that-make-women-crave-sex\">thailand dating sites</a> fasten the cheapest occupational opportunities plus applies at most important educational institutions.men and women continue to be positively relating to series towards Norton hillside, formulating the confidence and functionality to go individually that is important in further along well being and one of the most important features wanted for phrase managers.quite a few different educating themes as approaches are widely used to meet the needs of all enrollees. Norton hl is made with a broad and even extremely creative subjects, like the Cambridge pre U tutorial through piece 16 factor, that has got been a resounding success in giving several its largest accomplishing university students the prospect to attain at times higher than the the common at an even.in addition to this is tutorial achievements, the varsity is very much famous for fulfillment in a very physical ground and therefore crucial cost in outdoor area tutori, or maybe excelling in artistic, Music but performance.the superb improvements occurring on the teachers coming from the martial arts has been identified on numerous reasons with the award obtaining excellent gold standardmark.the teachers has been recently productively evaluated for a very high degree of the crucial classes honour for the third time and been upgraded within the sterling silver environment for the location.Norton incline is currently a result school to anti lovato in BANES moreover been given the director together with market Health accolade ascertaining the repair set up on robust educational instituations curriculum.out of the ordinary FeaturesYour distinctive invitation to the bath christmas day web preview eveningOnly there for inhabitants of the vicinity just who try to get easy access ahead of the massesEducationSomervale is currently a number one school online for student progressThe school has been slipped into best ten per cent of classes according to GCSE students\' progresswhy is FeaturesSee such the nation\'s school one of most active posted a wide open at huge batch occursNorton tuesday School open sept on 19.',71,387,'2020-04-08 19:59:03'),(1549,'Guadalupe Hedgepeth',68,388,'2020-04-10 12:21:44'),(1550,'noreply@arteseo.co',69,388,'2020-04-10 12:21:44'),(1551,'0421 49 37 20',70,388,'2020-04-10 12:21:44'),(1552,'hi there\r\nHere is your quotation regarding the content marketing links that you inquired about\r\nhttps://www.arteseo.co/quotation/\r\n\r\nthank you\r\nMike',71,388,'2020-04-10 12:21:44'),(1553,'Spencer Born',68,389,'2020-04-13 16:26:43'),(1554,'born.spencer75@gmail.com',69,389,'2020-04-13 16:26:43'),(1555,'06755 98 07 21',70,389,'2020-04-13 16:26:43'),(1556,'Stop paying thousands of $$ for overpriced online advertising! I\'ve got a system that charges only a very small bit of money and provides an almost indefinite volume of web visitors to your website\r\n\r\nFor all the details, check out: http://bit.ly/adpostingrobot',71,389,'2020-04-13 16:26:43'),(1557,'Judy',68,390,'2020-04-14 01:53:13'),(1558,'judy999887@gmail.com',69,390,'2020-04-14 01:53:13'),(1559,'(11) 4811-8384',70,390,'2020-04-14 01:53:13'),(1560,'Hi there,\r\n\r\nI hope you’re doing well, I handle influencer relations for LeggingsHut. Great to meet you!\r\n\r\nI stumbled across your account and thought your content would be perfect for us. If you feel we’d make a good fit, I’d love to invite you to our referral program.\r\n\r\nUse this link to visit, http://lotless.co\r\n\r\nIf you have any questions, just reply to this email.\r\njudy999887@gmail.com\r\n\r\n\r\nSincerely,\r\n\r\nLeggingsHut\r\nJudy',71,390,'2020-04-14 01:53:13'),(1561,'Eric Jones',68,391,'2020-04-14 15:19:17'),(1562,'eric@talkwithwebvisitor.com',69,391,'2020-04-14 15:19:17'),(1563,'416-385-3200',70,391,'2020-04-14 15:19:17'),(1564,'Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found stadsig.co.za after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://www.talkwithwebvisitor.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitor.com/unsubscribe.aspx?d=stadsig.co.za',71,391,'2020-04-14 15:19:17'),(1565,'Celina Bunch',68,392,'2020-04-14 15:33:23'),(1566,'bunch.celina@hotmail.com',69,392,'2020-04-14 15:33:23'),(1567,'815-853-8991',70,392,'2020-04-14 15:33:23'),(1568,'How would you like email promotion that actually promises that you will get sales? Yes that\'s right we have customers for virtually any niche! Have a look: https://bit.ly/guaranteed-sales-and-leads',71,392,'2020-04-14 15:33:23'),(1569,'MartinZef',68,393,'2020-04-15 06:57:13'),(1570,'no-reply@hilkom-digital.de',69,393,'2020-04-15 06:57:13'),(1571,'81149979696',70,393,'2020-04-15 06:57:13'),(1572,'hi there \r\nI have just checked stadsig.co.za for the ranking keywords and seen that your SEO metrics could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',71,393,'2020-04-15 06:57:13'),(1573,'JamesBoals',68,394,'2020-04-16 18:38:53'),(1574,'coronavaccine@hotmail.com',69,394,'2020-04-16 18:38:53'),(1575,'83452774976',70,394,'2020-04-16 18:38:53'),(1576,'COVID-19 outbreak: airplanes grounded, borders closed, businesses shut, citizens quarantined, political power seized, democracy undermined. \r\nAll this, if it is not stopped shortly, can lead to chaos and unrests. \r\nCurrently http://ST-lF.NET focus on raising awareness of the social impact that radically politicized approach to handling CoronaVirus Pandemic will have on the younger generations. \r\nYour support is needed to reduce the destructive impact the lock-down brings to bear on the younger generation. \r\nEvery 1$ makes a difference. \r\nPlease, take a moment to watch our presentation video and review our campaigns http://ST-lF.NET',71,394,'2020-04-16 18:38:53'),(1577,'Rebbeca Chambers',68,395,'2020-04-24 16:30:45'),(1578,'rebbeca@zadb.co.za',69,395,'2020-04-24 16:30:45'),(1579,'0941 80 75 72',70,395,'2020-04-24 16:30:45'),(1580,'Greetings,\r\n\r\nHas the current pandemic been affecting your business? \r\nAre you looking for Consumers, Businesses, Directors or any specific data that could be of great help to support your business?\r\n\r\nWe assemble customized client data based on your company profile and your individual needs.\r\n\r\nPopular Databases:\r\n\r\nB2B Database: 1,462,227 records\r\nDirectors Database: 758,834 records\r\nHealthcare Database: 376,599 records\r\nWholesalers Database: 106,932 records\r\nReal Estate Agents Database: 257,980 records\r\n\r\nLet us help boost your client base and revenue during this difficult time.\r\n\r\nVisit our website by clicking here: https://zadb.co.za/promo\r\n\r\nKind regards,\r\n+27 73 309 3460\r\nRebbeca@zadb.co.za\r\nZaDB.co.za',71,395,'2020-04-24 16:30:45'),(1581,'Angie Halse',68,396,'2020-04-26 03:55:35'),(1582,'angie.halse@hotmail.com',69,396,'2020-04-26 03:55:35'),(1583,'08341 85 12 84',70,396,'2020-04-26 03:55:35'),(1584,'Are you looking to promote your website for totally free? Check this out: http://bit.ly/submityourfreeads',71,396,'2020-04-26 03:55:35'),(1585,'KingDennisG.com',68,397,'2020-04-28 03:03:20'),(1586,'kingdennisg@yandex.com',69,397,'2020-04-28 03:03:20'),(1587,'85281299522',70,397,'2020-04-28 03:03:20'),(1588,'New Blogs at https://www.KingDennisG.com come play games and socialize and discover new music. \r\nTo unsubscribe visit https://www.KingDennisG.com',71,397,'2020-04-28 03:03:20'),(1589,'WilliamSlorp',68,398,'2020-04-28 16:15:53'),(1590,'williamhensy@outlook.com',69,398,'2020-04-28 16:15:54'),(1591,'88293369192',70,398,'2020-04-28 16:15:54'),(1592,'How Bad Can infections Hoaxes Get\r\n\r\nEach and every computer user has at least once suffered from the action of a virus. The damage such a malicious little thing causes can be serious and extended, leading up to the theft of your data. Your programs will not work any more and you will end up losing numerous time trying to fix them. The worse thing that can happen is your actual money being stolen! Could you say that a risk worth facing? The answer will most probably be negative!\r\n\r\none other thing to keep away from is a virus hoax. It will arrive in your email and warn you of a brand new threat to your laptop. Once the email outlines how the new virus works it asks you to forward the mail to others in your email address contact information book. In fact this chain letter can cause numerous damage.\r\n\r\nthink of how much these virus hoaxes can travel! Should variations,either in a positive who gets it send it to ten other, And then each one of these ten people send it to ten more people, <a href=\"https://myspace.com/datingmoldovawomen\">moldavian girls</a> The outcome can be much more severe. It can get up to enormous false emails that have no purpose and are using up space on networks. which means, The routers and servers may very well crash or at least slow down.\r\n\r\nYou can be sure that you\'ve a hoax when a lot of technical words are being used.\r\n\r\nSome hoaxes will contain a reference to an organization that really exists such as a legitimate company that sells <a href=\"https://sites.google.com/view/moldovawomen/photo-gallery\">moldova dating sites</a> antivirus software. You can easily verify sanita or dansko. you\'ll want seen references of it somewhere, Such as on tv, As well as the internet! Another way to protect yourself from getting a virus hoax is so that you never buy anything from someone who claims to be able to fix any virus infection that your computer might have. This cannot possibly be true!\r\n\r\nA hoax can certainly be very harmful. Some of them will warn you to delete files on your laptop that might have the virus. if you decide you follow their directions, you might not notice the effect immediately. having said that, When you will reboot one\'s body, be squandered anytime soon start anymore. The thing that the hoaxes are counting on is the reason that these files are often unknown to most users, Even if they are extremely important to the proper running of your computer.\r\n\r\nSome other articles by Dalvin RumseyTips About The cooling system\r\n\r\nEver gone through a flooding disaster in your home? Did you washer ever get a split hose? competently, I guess many of us have one or more times experienced such a household mess, this is why you will most.\r\n\r\nShould We Use Online dating services\r\n\r\nin today\'s times, Many people seem to choose the online dating services rather than the basic ways of meeting new people and creating romance relationships. The many readily available.\r\n\r\nSocial Networking explained For You\r\n\r\nfor anybody who are wondering what such a thing as the social network really means, I is able to only point.\r\n\r\nBroadband and how It Works\r\n\r\nMost people have no idea what the term broadband really means. Even if this sounds a word we keep hearing every day, We may not have a clear utilizing.\r\n\r\nT1 Described positive aspects\r\n\r\nIf near someone perfectly happy with your existing DSL connection, you are able to switch to a T1. Reliability is one very sound factors when.',71,398,'2020-04-28 16:15:54'),(1593,'Eric Jones',68,399,'2020-04-29 03:02:24'),(1594,'eric@talkwithwebvisitor.com',69,399,'2020-04-29 03:02:24'),(1595,'416-385-3200',70,399,'2020-04-29 03:02:24'),(1596,'My name’s Eric and I just came across your website - stadsig.co.za - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like stadsig.co.za will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://www.talkwithwebvisitor.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://www.talkwithwebvisitor.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitor.com/unsubscribe.aspx?d=stadsig.co.za',71,399,'2020-04-29 03:02:24');
/*!40000 ALTER TABLE `sts_frm_item_metas` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_frm_items`
--

DROP TABLE IF EXISTS `sts_frm_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_frm_items` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `item_key` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_id` bigint(20) DEFAULT NULL,
  `post_id` bigint(20) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `parent_item_id` bigint(20) DEFAULT 0,
  `is_draft` tinyint(1) DEFAULT 0,
  `updated_by` bigint(20) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `item_key` (`item_key`),
  KEY `form_id` (`form_id`),
  KEY `post_id` (`post_id`),
  KEY `user_id` (`user_id`),
  KEY `parent_item_id` (`parent_item_id`)
) ENGINE=InnoDB AUTO_INCREMENT=400 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_frm_items`
--

LOCK TABLES `sts_frm_items` WRITE;
/*!40000 ALTER TABLE `sts_frm_items` DISABLE KEYS */;
INSERT INTO `sts_frm_items` VALUES (21,'9qihk','Johandré le Roux','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','197.101.67.90',6,0,0,0,0,0,'2018-08-01 15:13:30','2018-08-01 15:13:30'),(22,'fpqfl','Karen','a:2:{s:7:\"browser\";s:136:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','165.255.110.3',6,0,0,0,0,0,'2018-08-01 17:43:12','2018-08-01 17:43:12'),(24,'5r9qt','Rocky Swartz','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','129.205.143.182',6,0,1,0,0,1,'2018-08-25 12:35:23','2018-08-25 12:35:23'),(25,'i3n9e','bruce','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','129.205.143.182',6,0,1,0,0,1,'2018-08-25 12:36:40','2018-08-25 12:36:40'),(26,'hykfr','Rocky Swartz','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','129.205.143.182',6,0,1,0,0,1,'2018-08-25 12:55:02','2018-08-25 12:55:02'),(27,'zgk3c','David','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','129.205.143.36',6,0,0,0,0,0,'2018-08-27 15:13:14','2018-08-27 15:13:14'),(28,'q2ff1','Conette Hamman','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','165.255.107.196',6,0,0,0,0,0,'2018-08-30 09:39:38','2018-08-30 09:39:38'),(29,'z5pd4','Rina van Niekerk','a:2:{s:7:\"browser\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.13.243.8',6,0,0,0,0,0,'2018-09-02 05:39:18','2018-09-02 05:39:18'),(30,'mvsoi','Paul Louw','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','197.229.3.162',6,0,0,0,0,0,'2018-09-21 16:37:46','2018-09-21 16:37:46'),(31,'7k3y0','Estelle Kitching','a:2:{s:7:\"browser\";s:137:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','105.4.1.43',6,0,0,0,0,0,'2018-09-22 06:09:57','2018-09-22 06:09:57'),(32,'hw7zo','Nadia','a:2:{s:7:\"browser\";s:261:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15G77 [FBAN/FBIOS;FBAV/176.0.0.70.93;FBBV/113661473;FBDV/iPhone7,2;FBMD/iPhone;FBSN/iOS;FBSV/11.4.1;FBSS/2;FBCR/Vodacom;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-area/\";}','196.192.165.26',6,0,0,0,0,0,'2018-09-25 17:36:54','2018-09-25 17:36:54'),(33,'8euba','Mark1 Media Testing','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','41.193.55.202',6,0,0,0,0,0,'2018-09-26 09:11:48','2018-09-26 09:11:48'),(34,'z6zmh','Mark1 Media Testing','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2018-09-26 09:13:02','2018-09-26 09:13:02'),(35,'e0cor','Brennan','a:2:{s:7:\"browser\";s:268:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16A366 [FBAN/FBIOS;FBAV/190.0.0.67.93;FBBV/125048840;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/12.0;FBSS/2;FBCR/TelkomSA;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/125656438]\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-area/\";}','105.186.84.221',6,0,0,0,0,0,'2018-09-28 04:24:40','2018-09-28 04:24:40'),(36,'zq4gc','Kobus','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.164.155.70',6,0,0,0,0,0,'2018-09-28 12:29:54','2018-09-28 12:29:54'),(37,'wiqrj','Lucia Booyens','a:2:{s:7:\"browser\";s:179:\"Mozilla/5.0 (Linux; Android 7.1.1; SM-P555 Build/NMF26X; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/68.0.3440.91 Safari/537.36 [FB_IAB/FB4A;FBAV/189.0.0.35.91;]\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.13.198.210',6,0,0,0,0,0,'2018-09-30 15:17:56','2018-09-30 15:17:56'),(38,'x52i1','mark1 test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 09:11:53','2018-10-01 09:11:53'),(39,'vtr7c','mark1 test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-area/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 09:12:54','2018-10-01 09:12:54'),(40,'qxjk8','mark1 test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 09:13:27','2018-10-01 09:13:27'),(41,'q43mx','mark1 test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 09:14:48','2018-10-01 09:14:48'),(42,'72e8c','mark1 test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 09:16:42','2018-10-01 09:16:42'),(43,'7yjb2','mark1 test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 09:18:32','2018-10-01 09:18:32'),(44,'hcwvt','mark1 test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 09:19:35','2018-10-01 09:19:35'),(45,'u57rx','mark1 test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 09:21:36','2018-10-01 09:21:36'),(46,'eq8u8','mark1 test 1','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 09:22:37','2018-10-01 09:22:37'),(47,'ilhsd','mark1 test 1','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 09:51:57','2018-10-01 09:51:57'),(48,'5nooa','mark1 test 1','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 10:18:50','2018-10-01 10:18:50'),(49,'5cs0i','mark1 test 1','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 14:18:34','2018-10-01 14:18:34'),(50,'1yfbw','mark1 test 1','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 14:20:13','2018-10-01 14:20:13'),(51,'eonyz','mark1 test 1','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-01 14:39:16','2018-10-01 14:39:16'),(52,'5ab3x','Test','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-02 06:29:14','2018-10-02 06:29:14'),(53,'hedhj','test','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-02 06:44:49','2018-10-02 06:44:49'),(54,'gu7u8','mark1 test 1','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-02 07:03:57','2018-10-02 07:03:57'),(55,'3u4cv','mark1 test 1','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-02 07:19:53','2018-10-02 07:19:53'),(56,'zlc0m','mark1 test 1','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-02 07:23:22','2018-10-02 07:23:22'),(57,'i0us9','Mark1 test - contact page','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-02 07:32:52','2018-10-02 07:32:52'),(58,'1xw5c','Mark1 test - contact page','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-02 07:46:49','2018-10-02 07:46:49'),(59,'cqx7o','Mark1 test - contact page','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2018-10-02 07:53:53','2018-10-02 07:53:53'),(60,'jpgmc','claude munnik','a:2:{s:7:\"browser\";s:193:\"Mozilla/5.0 (Linux; Android 8.1.0; CLT-L29 Build/HUAWEICLT-L29; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/68.0.3440.70 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/191.0.0.35.96;]\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','197.229.3.107',6,0,0,0,0,0,'2018-10-06 09:33:02','2018-10-06 09:33:02'),(61,'tx33g','Hilton Benjamin rep','a:2:{s:7:\"browser\";s:148:\"Mozilla/5.0 (Linux; Android 7.0; HUAWEI NMO-L31 Build/HUAWEINMO-L31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','105.0.3.176',6,0,0,0,0,0,'2018-10-09 12:21:04','2018-10-09 12:21:04'),(62,'w35u7','Koos Burger','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-area/\";}','160.226.137.35',6,0,0,0,0,0,'2018-10-15 09:33:20','2018-10-15 09:33:20'),(63,'dzh0g','Jack Raath','a:2:{s:7:\"browser\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','105.226.203.107',6,0,0,0,0,0,'2018-10-17 08:01:55','2018-10-17 08:01:55'),(64,'exerz','Elize Buurman','a:2:{s:7:\"browser\";s:208:\"Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36 Instagram 62.1.0.15.94 (iPad2,5; iPhone OS 9_3_5; en_ZA; en-ZA; scale=2.00; gamut=normal; 640x960)\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-area/\";}','169.1.133.121',6,0,0,0,0,0,'2018-10-17 21:03:49','2018-10-17 21:03:49'),(65,'zhbk3','JACQUI','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:88:\"https://www.stadsig.co.za/?gclid=EAIaIQobChMIh-eG_LGS3gIVBsJkCh2ScgRCEAAYASAAEgJB7vD_BwE\";}','196.44.35.66',6,0,0,0,0,0,'2018-10-19 11:24:41','2018-10-19 11:24:41'),(66,'kk5xz','Neal Kotze','a:2:{s:7:\"browser\";s:137:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-G950F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Mobile Safari/537.36\";s:8:\"referrer\";s:133:\"https://www.stadsig.co.za/the-area/?gclid=CjwKCAjwpKveBRAwEiwAo4Pqm3SFzW4K2vSllfVPO0cRuAdXgF1ItBeX4gGJRZ7COaajwtaRF_LvjRoCjXgQAvD_BwE\";}','105.225.136.236',6,0,0,0,0,0,'2018-10-20 13:41:41','2018-10-20 13:41:41'),(67,'mmras','Neal Kotze','a:2:{s:7:\"browser\";s:137:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-G950F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Mobile Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','105.225.136.236',6,0,0,0,0,0,'2018-10-21 07:26:11','2018-10-21 07:26:11'),(68,'hji6','Johleen Williams','a:2:{s:7:\"browser\";s:138:\"Mozilla/5.0 (Linux; Android 4.4.4; GT-I9060I Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.91 Mobile Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-area/\";}','169.255.171.29',6,0,0,0,0,0,'2018-10-22 15:57:24','2018-10-22 15:57:24'),(69,'ljvhw','Kim parker','a:2:{s:7:\"browser\";s:137:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1\";s:8:\"referrer\";s:96:\"https://www.stadsig.co.za/contact/?gclid=EAIaIQobChMI596ctLOj3gIVibTtCh1VnABSEAAYASABEgJb8_D_BwE\";}','41.114.168.132',6,0,0,0,0,0,'2018-10-26 05:52:51','2018-10-26 05:52:51'),(70,'d3sm9','Maunette','a:2:{s:7:\"browser\";s:187:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-J720F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/64.0.3282.137 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/194.0.0.42.99;]\";s:8:\"referrer\";s:131:\"https://www.stadsig.co.za/?utm_source=facebook&utm_medium=paid%20social&utm_campaign=stadsig%20lead%20generation&utm_content=static\";}','213.172.159.170',6,0,0,0,0,0,'2018-10-26 17:29:55','2018-10-26 17:29:55'),(71,'uisyf','Annetjie','a:2:{s:7:\"browser\";s:128:\"Mozilla/5.0 (iPad; CPU OS 12_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1\";s:8:\"referrer\";s:96:\"https://www.stadsig.co.za/contact/?gclid=EAIaIQobChMIyYHG2oWm3gIVB4jVCh01DACgEAAYASABEgIt0vD_BwE\";}','196.250.140.32',6,0,0,0,0,0,'2018-10-27 07:23:02','2018-10-27 07:23:02'),(72,'1nh0c','Marlene Hoffmann','a:2:{s:7:\"browser\";s:270:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Mobile/15D100 [FBAN/FBIOS;FBAV/195.0.0.44.99;FBBV/128807583;FBDV/iPhone6,2;FBMD/iPhone;FBSN/iOS;FBSV/11.2.6;FBSS/2;FBCR/TelkomSA;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/129053412]\";s:8:\"referrer\";s:131:\"https://www.stadsig.co.za/?utm_source=facebook&utm_medium=paid%20social&utm_campaign=stadsig%20lead%20generation&utm_content=static\";}','41.50.130.226',6,0,0,0,0,0,'2018-10-27 09:05:32','2018-10-27 09:05:32'),(73,'l45ds','Carol clausen','a:2:{s:7:\"browser\";s:158:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-G950F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.158 Mobile Safari/537.36 OPR/47.3.2249.130976\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','105.227.121.14',6,0,0,0,0,0,'2018-10-30 17:50:07','2018-10-30 17:50:07'),(74,'k5wlt','Melanie Fourie','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','41.48.42.240',6,0,0,0,0,0,'2018-11-05 07:03:43','2018-11-05 07:03:43'),(75,'pcypy','Berna Struwig','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36\";s:8:\"referrer\";s:125:\"https://www.stadsig.co.za/?gclid=Cj0KCQiA8f_eBRDcARIsAEKwRGcPbcKiVmrVRemiJxQzGseEmQNKpSJ7hv_ZZxhZa7Jgy6mqprVprOEaAqLyEALw_wcB\";}','165.255.211.88',6,0,0,0,0,0,'2018-11-05 08:19:12','2018-11-05 08:19:12'),(76,'42js4','Conrad Kok','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','105.22.40.126',6,0,0,0,0,0,'2018-11-07 09:01:13','2018-11-07 09:01:13'),(77,'8gxw','Sarie Bothma','a:2:{s:7:\"browser\";s:193:\"Mozilla/5.0 (Linux; Android 8.0.0; ANE-LX1 Build/HUAWEIANE-LX1; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/68.0.3440.91 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/196.0.0.41.95;]\";s:8:\"referrer\";s:131:\"https://www.stadsig.co.za/?utm_source=facebook&utm_medium=paid%20social&utm_campaign=stadsig%20lead%20generation&utm_content=static\";}','105.227.14.116',6,0,0,0,0,0,'2018-11-07 14:11:48','2018-11-07 14:11:48'),(78,'4iwg5','Ronald GARRETSON','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','23.108.100.220',6,0,0,0,0,0,'2018-11-12 09:28:17','2018-11-12 09:28:17'),(79,'n4lbv','Samantha','a:2:{s:7:\"browser\";s:176:\"Mozilla/5.0 (Linux; U; Android 8.0.0; SM-G960F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/70.0.3538.64 Mobile Safari/537.36 OPR/36.2.2254.130496\";s:8:\"referrer\";s:88:\"https://www.stadsig.co.za/?gclid=EAIaIQobChMIw-TM9b3R3gIVks13Ch3S1wO3EAAYASAAEgKJIPD_BwE\";}','41.114.222.227',6,0,0,0,0,0,'2018-11-13 13:36:45','2018-11-13 13:36:45'),(80,'au926','Wynand du Plessis','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','197.245.176.13',6,0,0,0,0,0,'2018-11-13 16:14:43','2018-11-13 16:14:43'),(81,'ux073','Nico du Plessis','a:2:{s:7:\"browser\";s:135:\"Mozilla/5.0 (Linux; Android 4.3; GT-I9500 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.98 Mobile Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-area/\";}','105.4.4.90',6,0,0,0,0,0,'2018-11-13 17:14:33','2018-11-13 17:14:33'),(82,'koqt8','Nico du Plessis','a:2:{s:7:\"browser\";s:135:\"Mozilla/5.0 (Linux; Android 4.3; GT-I9500 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.98 Mobile Safari/537.36\";s:8:\"referrer\";s:131:\"https://www.stadsig.co.za/?utm_source=facebook&utm_medium=paid%20social&utm_campaign=stadsig%20lead%20generation&utm_content=static\";}','105.4.4.90',6,0,0,0,0,0,'2018-11-13 17:15:50','2018-11-13 17:15:50'),(83,'ubb43','Rudi van rensburg','a:2:{s:7:\"browser\";s:262:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16B92 [FBAN/FBIOS;FBAV/197.1.0.69.100;FBBV/130896868;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/12.1;FBSS/2;FBCR/du;FBID/phone;FBLC/en_US;FBOP/5;FBRV/131300651]\";s:8:\"referrer\";s:131:\"https://www.stadsig.co.za/?utm_source=facebook&utm_medium=paid%20social&utm_campaign=stadsig%20lead%20generation&utm_content=static\";}','5.31.34.122',6,0,0,0,0,0,'2018-11-14 12:05:48','2018-11-14 12:05:48'),(84,'skhs3','Almari Nortjé','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','45.220.57.49',6,0,0,0,0,0,'2018-11-15 07:26:13','2018-11-15 07:26:13'),(85,'lpaa5','Ayesha Alexander','a:2:{s:7:\"browser\";s:178:\"Mozilla/5.0 (Linux; Android 4.4.4; SAMSUNG SM-J110F/J110FXXU0APB1 Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.0 Chrome/34.0.1847.76 Mobile Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','105.227.208.90',6,0,0,0,0,0,'2018-11-16 15:39:10','2018-11-16 15:39:10'),(86,'pok3l','Faz De Aguiar','a:2:{s:7:\"browser\";s:187:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-G955F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/70.0.3538.80 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/198.0.0.53.101;]\";s:8:\"referrer\";s:131:\"https://www.stadsig.co.za/?utm_source=facebook&utm_medium=paid%20social&utm_campaign=stadsig%20lead%20generation&utm_content=static\";}','155.93.162.220',6,0,0,0,0,0,'2018-11-17 14:26:26','2018-11-17 14:26:26'),(87,'2gvmp','roy alderdice','a:2:{s:7:\"browser\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','105.228.82.124',6,0,0,0,0,0,'2018-11-18 16:12:15','2018-11-18 16:12:15'),(88,'tr288','Kathleen Cockburn-Smith','a:2:{s:7:\"browser\";s:126:\"Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','90.218.134.2',6,0,0,0,0,0,'2018-11-19 02:57:17','2018-11-19 02:57:17'),(89,'8gbav','Hannes Zietsman','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','146.64.81.115',6,0,0,0,0,0,'2018-11-19 10:09:54','2018-11-19 10:09:54'),(90,'96364a','Shireen Mall','a:2:{s:7:\"browser\";s:266:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16B92 [FBAN/FBIOS;FBAV/198.0.0.57.101;FBBV/131415284;FBDV/iPhone7,2;FBMD/iPhone;FBSN/iOS;FBSV/12.1;FBSS/2;FBCR/Vodacom;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/131963921]\";s:8:\"referrer\";s:131:\"https://www.stadsig.co.za/?utm_source=facebook&utm_medium=paid%20social&utm_campaign=stadsig%20lead%20generation&utm_content=static\";}','197.88.60.199',6,0,0,0,0,0,'2018-11-20 09:00:49','2018-11-20 09:00:49'),(91,'b33qa','Ryno','a:2:{s:7:\"browser\";s:264:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16B92 [FBAN/FBIOS;FBAV/198.0.0.57.101;FBBV/131415284;FBDV/iPhone8,4;FBMD/iPhone;FBSN/iOS;FBSV/12.1;FBSS/2;FBCR/CellC;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/132820051]\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','196.250.134.208',6,0,0,0,0,0,'2018-11-28 04:36:20','2018-11-28 04:36:20'),(92,'v451h','Pieter Koen','a:2:{s:7:\"browser\";s:75:\"Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; LCTE; rv:11.0) like Gecko\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','41.13.196.227',6,0,0,0,0,0,'2018-11-28 10:34:10','2018-11-28 10:34:10'),(93,'sanru','LeroyKella','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','192.154.100.92',6,0,0,0,0,0,'2018-11-28 17:48:03','2018-11-28 17:48:03'),(94,'w79gd','Philip venter','a:2:{s:7:\"browser\";s:267:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16B92 [FBAN/FBIOS;FBAV/198.0.0.57.101;FBBV/131415284;FBDV/iPhone10,6;FBMD/iPhone;FBSN/iOS;FBSV/12.1;FBSS/3;FBCR/Vodacom;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/133086974]\";s:8:\"referrer\";s:131:\"https://www.stadsig.co.za/?utm_source=facebook&utm_medium=paid%20social&utm_campaign=stadsig%20lead%20generation&utm_content=static\";}','165.255.79.54',6,0,0,0,0,0,'2018-11-30 17:43:18','2018-11-30 17:43:18'),(95,'7zf25','Emma','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\";s:8:\"referrer\";s:40:\"https://www.stadsig.co.za/documentation/\";}','41.193.223.195',6,0,0,0,0,0,'2018-12-04 06:27:56','2018-12-04 06:27:56'),(96,'vnkjo','mehrzad','a:2:{s:7:\"browser\";s:73:\"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','217.23.5.247',6,0,0,0,0,0,'2018-12-09 12:17:27','2018-12-09 12:17:27'),(97,'xh9ff','Robertvog','a:2:{s:7:\"browser\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.1) Gecko/20100101 Firefox/40.1\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','92.38.162.17',6,0,0,0,0,0,'2018-12-10 13:18:00','2018-12-10 13:18:00'),(98,'irh4p','Kaitlyn Jury','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','27.112.67.202',6,0,0,0,0,0,'2018-12-11 03:23:38','2018-12-11 03:23:38'),(99,'atyqb','Marist','a:2:{s:7:\"browser\";s:65:\"Mozilla/5.0 (Windows NT 5.1; rv:44.0) Gecko/20100101 Firefox/44.0\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','85.206.165.23',6,0,0,0,0,0,'2018-12-13 07:27:03','2018-12-13 07:27:03'),(100,'qdlhx','MichaelTweby','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.245.85.235',6,0,0,0,0,0,'2018-12-14 05:52:00','2018-12-14 05:52:00'),(101,'k7r6f','Alex Scott','a:2:{s:7:\"browser\";s:124:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Mobile Safari/537.36\";s:8:\"referrer\";s:124:\"https://www.stadsig.co.za/?gclid=CjwKCAiAjNjgBRAgEiwAGLlf2rmjt0b9VU9wLhZATiQ-Wtdc7a_x8E_uc7R_2--20s3X3APpimi4LxoCBH8QAvD_BwE\";}','196.6.234.7',6,0,0,0,0,0,'2018-12-16 12:32:54','2018-12-16 12:32:54'),(102,'b4m1c','Aly Chiman','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','128.199.138.80',6,0,0,0,0,0,'2018-12-18 02:51:38','2018-12-18 02:51:38'),(103,'b6twp','DavidMef','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','92.223.88.245',6,0,0,0,0,0,'2018-12-18 03:12:37','2018-12-18 03:12:37'),(104,'81s2r','Thomastum','a:2:{s:7:\"browser\";s:65:\"Mozilla/5.0 (Windows NT 6.1; rv:37.1) Gecko/20100101 Firefox/37.1\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.245.85.235',6,0,0,0,0,0,'2018-12-22 01:22:44','2018-12-22 01:22:44'),(105,'fpief','AlfredJopay','a:2:{s:7:\"browser\";s:65:\"Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','85.206.165.8',6,0,0,0,0,0,'2018-12-25 05:09:22','2018-12-25 05:09:22'),(106,'panas','Williamuness','a:2:{s:7:\"browser\";s:65:\"Mozilla/5.0 (Windows NT 5.1; rv:44.0) Gecko/20100101 Firefox/44.0\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.230.124.165',6,0,0,0,0,0,'2018-12-28 23:00:23','2018-12-28 23:00:23'),(107,'4h3or','Wurmian','a:2:{s:7:\"browser\";s:65:\"Mozilla/5.0 (Windows NT 5.1; rv:40.1) Gecko/20100101 Firefox/40.1\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.206.225.233',6,0,0,0,0,0,'2018-12-30 12:10:51','2018-12-30 12:10:51'),(108,'zj0zq','Rickeyunesk','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','95.174.64.72',6,0,0,0,0,0,'2019-01-02 17:04:38','2019-01-02 17:04:38'),(109,'7ut6z','RichardKen','a:2:{s:7:\"browser\";s:72:\"Mozilla/5.0 (Windows NT 7.0; WOW64; rv:33.1) Gecko/20100101 Firefox/33.1\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.183.106.169',6,0,0,0,0,0,'2019-01-05 10:25:51','2019-01-05 10:25:51'),(110,'7gy86','Walterloomb','a:2:{s:7:\"browser\";s:65:\"Mozilla/5.0 (Windows NT 7.0; rv:33.1) Gecko/20100101 Firefox/33.1\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','194.99.105.20',6,0,0,0,0,0,'2019-01-10 08:51:24','2019-01-10 08:51:24'),(111,'5wct1','Pieter Koen','a:2:{s:7:\"browser\";s:75:\"Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; LCTE; rv:11.0) like Gecko\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','41.13.196.179',6,0,0,0,0,0,'2019-01-14 12:24:41','2019-01-14 12:24:41'),(112,'7vo6q','Jamespet','a:2:{s:7:\"browser\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','85.206.165.23',6,0,0,0,0,0,'2019-01-14 14:12:48','2019-01-14 14:12:48'),(113,'jtua5','Jp','a:2:{s:7:\"browser\";s:141:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/71.0.3578.89 Mobile/15E148 Safari/605.1\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.114.153.44',6,0,0,0,0,0,'2019-01-15 09:00:50','2019-01-15 09:00:50'),(114,'lx5vb','Jamesbrali','a:2:{s:7:\"browser\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','178.175.142.133',6,0,0,0,0,0,'2019-01-21 22:07:20','2019-01-21 22:07:20'),(115,'apiy1','gladys coetzee','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-area/\";}','196.36.169.51',6,0,0,0,0,0,'2019-01-22 08:32:53','2019-01-22 08:32:53'),(116,'dclx','sheppard','a:2:{s:7:\"browser\";s:66:\"Mozilla/5.0 (Windows NT 10.1; rv:40.1) Gecko/20100101 Firefox/40.1\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','178.175.132.165',6,0,0,0,0,0,'2019-01-25 18:08:34','2019-01-25 18:08:34'),(117,'4l4g8','Carlosfar','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.130.203.86',6,0,0,0,0,0,'2019-01-26 04:16:51','2019-01-26 04:16:51'),(118,'p612g','Showinded','a:2:{s:7:\"browser\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.184.238.190',6,0,0,0,0,0,'2019-01-26 18:10:29','2019-01-26 18:10:29'),(119,'ustgh','RobertSwams','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.245.85.236',6,0,0,0,0,0,'2019-01-30 03:12:42','2019-01-30 03:12:42'),(120,'plbgj','RobertSwams','a:2:{s:7:\"browser\";s:72:\"Mozilla/5.0 (Windows NT 8.1; Win64; rv:40.1) Gecko/20100101 Firefox/40.1\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','109.248.149.41',6,0,0,0,0,0,'2019-02-02 22:37:09','2019-02-02 22:37:09'),(121,'8e6bl','DLkirofe','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.184.238.190',6,0,0,0,0,0,'2019-02-03 09:23:40','2019-02-03 09:23:40'),(122,'56snw','asiamejsn','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:40:\"https://www.stadsig.co.za/documentation/\";}','193.201.224.59',6,0,0,0,0,0,'2019-02-05 15:11:18','2019-02-05 15:11:18'),(123,'isrj','RobertSwams','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','85.206.165.11',6,0,0,0,0,0,'2019-02-06 23:34:18','2019-02-06 23:34:18'),(124,'bxwt7','Funeka Carelse','a:2:{s:7:\"browser\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134\";s:8:\"referrer\";s:124:\"https://www.stadsig.co.za/?gclid=CjwKCAiAy-_iBRAaEiwAYhSlA15nLhpAysZQENSQkbPAhM6Qs6EH5IRu-4YKAoVSoN9D892yg2aFZBoCAkgQAvD_BwE\";}','197.157.220.48',6,0,0,0,0,0,'2019-02-07 11:13:14','2019-02-07 11:13:14'),(125,'6p36u','Anisodactyli','a:2:{s:7:\"browser\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','178.162.209.88',6,0,0,0,0,0,'2019-02-11 02:50:25','2019-02-11 02:50:25'),(126,'wmirf','RobertCer','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','194.99.105.20',6,0,0,0,0,0,'2019-02-11 03:28:08','2019-02-11 03:28:08'),(127,'sntje','asiamenrx','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.59',6,0,0,0,0,0,'2019-02-11 04:58:40','2019-02-11 04:58:40'),(128,'bzs9v','Hooties','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.184.238.190',6,0,0,0,0,0,'2019-02-14 02:18:21','2019-02-14 02:18:21'),(129,'hpyvb','Hooties','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.184.238.190',6,0,0,0,0,0,'2019-02-14 08:11:44','2019-02-14 08:11:44'),(130,'y4m0q','ZacharyClarm','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','89.249.64.178',6,0,0,0,0,0,'2019-02-14 10:56:18','2019-02-14 10:56:18'),(131,'xf05o','HowardNix','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','131.153.41.167',6,0,0,0,0,0,'2019-02-19 16:35:33','2019-02-19 16:35:33'),(132,'j4h35','Nadiav Valentini','a:2:{s:7:\"browser\";s:163:\"Mozilla/5.0 (Linux; Android 7.0; SAMSUNG SM-G930F Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36\";s:8:\"referrer\";s:88:\"https://www.stadsig.co.za/?gclid=EAIaIQobChMI0be6stPZ4AIVR4XVCh2RLA1WEAAYAiAAEgJCDfD_BwE\";}','45.221.220.68',6,0,0,0,0,0,'2019-02-26 14:57:21','2019-02-26 14:57:21'),(133,'4s3aw','Robertkes','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.128.27.124',6,0,0,0,0,0,'2019-02-27 00:36:21','2019-02-27 00:36:21'),(134,'wh2fw','Leroydobop','a:2:{s:7:\"browser\";s:126:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','89.238.139.211',6,0,0,0,0,0,'2019-03-01 15:17:44','2019-03-01 15:17:44'),(135,'3hthv','Donaldveilk','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','85.206.165.24',6,0,0,0,0,0,'2019-03-05 20:03:01','2019-03-05 20:03:01'),(136,'dh2lb','Lesliebiape','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','91.185.201.79',6,0,0,0,0,0,'2019-03-06 12:31:09','2019-03-06 12:31:09'),(137,'h88m2','Mandie Bester','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','41.75.111.146',6,0,0,0,0,0,'2019-03-13 11:51:28','2019-03-13 11:51:28'),(138,'v29a3','KennethZonry','a:2:{s:7:\"browser\";s:130:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.253.97.247',6,0,0,0,0,0,'2019-03-15 10:07:05','2019-03-15 10:07:05'),(139,'ynmmi','Donaldephed','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','217.64.113.214',6,0,0,0,0,0,'2019-03-28 07:09:10','2019-03-28 07:09:10'),(140,'w3x5k','Warrenred','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.59',6,0,0,0,0,0,'2019-03-28 18:57:52','2019-03-28 18:57:52'),(141,'6a7jc','charmdatereviewsnll','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.229',6,0,0,0,0,0,'2019-04-02 10:35:44','2019-04-02 10:35:44'),(142,'4q76i','Kathy Albert','a:2:{s:7:\"browser\";s:65:\"Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','146.196.38.73',6,0,0,0,0,0,'2019-04-04 11:12:40','2019-04-04 11:12:40'),(143,'wum07','asiameyon','a:2:{s:7:\"browser\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.59',6,0,0,0,0,0,'2019-04-09 04:55:34','2019-04-09 04:55:34'),(144,'25wt7','JamesGek','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','89.238.167.198',6,0,0,0,0,0,'2019-04-10 19:57:24','2019-04-10 19:57:24'),(145,'5h809','FrankBep','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.246',6,0,0,0,0,0,'2019-04-11 09:45:00','2019-04-11 09:45:00'),(146,'riwsx','CalvinSourb','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.230',6,0,0,0,0,0,'2019-04-12 02:08:27','2019-04-12 02:08:27'),(147,'jqhjx','qpidnetworkitl','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.229',6,0,0,0,0,0,'2019-04-15 01:47:55','2019-04-15 01:47:55'),(148,'b60sn','KelCers','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/gallery/\";}','5.188.44.47',6,0,0,0,0,0,'2019-04-16 08:13:22','2019-04-16 08:13:22'),(149,'ozjgk','Warrenred','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','193.201.224.59',6,0,0,0,0,0,'2019-04-18 10:50:27','2019-04-18 10:50:27'),(150,'41wol','Warrenred','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.59',6,0,0,0,0,0,'2019-04-18 16:49:46','2019-04-18 16:49:46'),(151,'ql2s8','Walterusamn','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.230',6,0,0,0,0,0,'2019-04-19 03:51:18','2019-04-19 03:51:18'),(152,'z2s00','JesusHiede','a:2:{s:7:\"browser\";s:130:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.230',6,0,0,0,0,0,'2019-04-24 12:02:46','2019-04-24 12:02:46'),(153,'vsgqg','asiamevul','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','193.201.224.59',6,0,0,0,0,0,'2019-04-25 16:42:56','2019-04-25 16:42:56'),(154,'6f97k','asiameplr','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.59',6,0,0,0,0,0,'2019-04-25 19:52:20','2019-04-25 19:52:20'),(155,'q9yhe','charmdatereviewsxbg','a:2:{s:7:\"browser\";s:101:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','193.201.224.229',6,0,0,0,0,0,'2019-04-25 20:17:38','2019-04-25 20:17:38'),(156,'otq71','charmdatereviewsroy','a:2:{s:7:\"browser\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.229',6,0,0,0,0,0,'2019-04-26 00:09:05','2019-04-26 00:09:05'),(157,'umtn2','FrankBep','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','193.201.224.246',6,0,0,0,0,0,'2019-04-27 22:02:51','2019-04-27 22:02:51'),(158,'yuf62','FrankBep','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.246',6,0,0,0,0,0,'2019-04-28 02:27:15','2019-04-28 02:27:15'),(159,'pn976','CalvinSourb','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','193.201.224.230',6,0,0,0,0,0,'2019-04-29 21:17:53','2019-04-29 21:17:53'),(160,'hvnkn','CalvinSourb','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.230',6,0,0,0,0,0,'2019-04-30 03:04:00','2019-04-30 03:04:00'),(161,'o8bow','Davidnob','a:2:{s:7:\"browser\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','195.206.104.73',6,0,0,0,0,0,'2019-05-02 14:14:45','2019-05-02 14:14:45'),(162,'b5w5x','qpidnetworkfry','a:2:{s:7:\"browser\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','193.201.224.229',6,0,0,0,0,0,'2019-05-02 14:41:25','2019-05-02 14:41:25'),(163,'ug4g5','qpidnetworksif','a:2:{s:7:\"browser\";s:130:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.229',6,0,0,0,0,0,'2019-05-02 22:53:42','2019-05-02 22:53:42'),(164,'arb6k','KelCers','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/gallery/\";}','5.188.44.47',6,0,0,0,0,0,'2019-05-07 04:27:27','2019-05-07 04:27:27'),(165,'yoarw','Walterusamn','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','193.201.224.230',6,0,0,0,0,0,'2019-05-07 06:34:08','2019-05-07 06:34:08'),(166,'8rgpb','Walterusamn','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.230',6,0,0,0,0,0,'2019-05-07 11:11:49','2019-05-07 11:11:49'),(167,'p4nd7','ClaytonStape','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.90.57.177',6,0,0,0,0,0,'2019-05-13 20:43:25','2019-05-13 20:43:25'),(168,'uw7ur','JesusHiede','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','193.201.224.230',6,0,0,0,0,0,'2019-05-14 17:01:33','2019-05-14 17:01:33'),(169,'s2s1q','JesusHiede','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.230',6,0,0,0,0,0,'2019-05-14 21:29:16','2019-05-14 21:29:16'),(170,'lmo9s','qpidnetworkluj','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','193.201.224.229',6,0,0,0,0,0,'2019-05-15 16:34:24','2019-05-15 16:34:24'),(171,'ugupl','Warrenred','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','193.201.224.59',6,0,0,0,0,0,'2019-05-17 13:02:17','2019-05-17 13:02:17'),(172,'xnwl3','latin girlsech','a:2:{s:7:\"browser\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','193.201.224.229',6,0,0,0,0,0,'2019-05-19 13:30:22','2019-05-19 13:30:22'),(173,'9pdos','Warrenred','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:40:\"https://www.stadsig.co.za/documentation/\";}','193.201.224.59',6,0,0,0,0,0,'2019-05-22 17:36:15','2019-05-22 17:36:15'),(174,'3t3mr','Shanehab','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','193.201.224.59',6,0,0,0,0,0,'2019-05-22 17:39:52','2019-05-22 17:39:52'),(175,'tyf8b','Shanehab','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.59',6,0,0,0,0,0,'2019-05-22 21:47:35','2019-05-22 21:47:35'),(176,'foxj0','Warrenred','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.59',6,0,0,0,0,0,'2019-05-24 13:27:01','2019-05-24 13:27:01'),(177,'p88gx','Robertgup','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.230.127.104',6,0,0,0,0,0,'2019-05-25 09:04:41','2019-05-25 09:04:41'),(178,'4cgag','RobertTal','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.152.66.235',6,0,0,0,0,0,'2019-05-27 14:45:03','2019-05-27 14:45:03'),(179,'qufc4','FrankBep','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','193.201.224.246',6,0,0,0,0,0,'2019-05-28 13:08:36','2019-05-28 13:08:36'),(180,'zjprl','CalvinSourb','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','193.201.224.230',6,0,0,0,0,0,'2019-06-02 08:48:35','2019-06-02 08:48:35'),(181,'fb6eb','BPC Pest Control','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','196.6.233.52',6,0,0,0,0,0,'2019-06-03 10:12:46','2019-06-03 10:12:46'),(182,'quenr','asiamedwi','a:2:{s:7:\"browser\";s:101:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','193.201.224.59',6,0,0,0,0,0,'2019-06-05 00:22:36','2019-06-05 00:22:36'),(183,'2z8v4','WilliamRaicy','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.13.190.248',6,0,0,0,0,0,'2019-06-05 04:06:04','2019-06-05 04:06:04'),(184,'isg1r','stadsig.co.za','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.206.224.249',6,0,0,0,0,0,'2019-06-07 12:04:59','2019-06-07 12:04:59'),(185,'be4wm','DavidBam','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','178.162.223.88',6,0,0,0,0,0,'2019-06-07 16:18:32','2019-06-07 16:18:32'),(186,'w5gb','ContactForm','a:2:{s:7:\"browser\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.13.190.254',6,0,0,0,0,0,'2019-06-09 07:53:19','2019-06-09 07:53:19'),(187,'wmfid','Test Test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-area/\";}','41.193.55.202',6,0,0,0,0,0,'2019-06-11 13:56:33','2019-06-11 13:56:33'),(188,'nxv7u','Test Test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2019-06-11 13:56:56','2019-06-11 13:56:56'),(189,'hme7s','Walterusamn','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','193.201.224.230',6,0,0,0,0,0,'2019-06-11 21:44:21','2019-06-11 21:44:21'),(190,'t28f2','Test Test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2019-06-12 07:41:00','2019-06-12 07:41:00'),(191,'hejuo','Test Test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2019-06-12 07:41:55','2019-06-12 07:41:55'),(192,'getsu','DorothyCexia','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.13.190.254',6,0,0,0,0,0,'2019-06-13 15:48:02','2019-06-13 15:48:02'),(193,'scohf','Francois','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','83.97.23.233',6,0,0,0,0,0,'2019-06-14 15:18:23','2019-06-14 15:18:23'),(194,'nk2oo','stadsig.co.za','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','109.248.149.39',6,0,0,0,0,0,'2019-06-16 07:57:59','2019-06-16 07:57:59'),(195,'yl3nn','Shanehab','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','193.201.224.59',6,0,0,0,0,0,'2019-06-18 05:40:13','2019-06-18 05:40:13'),(196,'ofldg','JesusHiede','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','193.201.224.230',6,0,0,0,0,0,'2019-06-18 17:04:16','2019-06-18 17:04:16'),(197,'eju63','Shanehab','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:40:\"https://www.stadsig.co.za/documentation/\";}','193.201.224.59',6,0,0,0,0,0,'2019-06-21 02:08:02','2019-06-21 02:08:02'),(198,'ldblg','ContactForm','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.13.190.254',6,0,0,0,0,0,'2019-06-21 12:39:36','2019-06-21 12:39:36'),(199,'eg6zq','Shanehab','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.59',6,0,0,0,0,0,'2019-06-22 06:06:00','2019-06-22 06:06:00'),(200,'3jjqb','Crystaldut','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','37.120.159.55',6,0,0,0,0,0,'2019-06-23 04:13:38','2019-06-23 04:13:38'),(201,'z0w2i','Sharita Bessick','a:2:{s:7:\"browser\";s:109:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','49.83.23.251',6,0,0,0,0,0,'2019-06-25 12:01:57','2019-06-25 12:01:57'),(202,'nz3h5','Anthonynox','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.230.127.170',6,0,0,0,0,0,'2019-06-28 06:44:19','2019-06-28 06:44:19'),(203,'wlmm5','stadsig.co.za','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.128.27.171',6,0,0,0,0,0,'2019-06-28 16:09:17','2019-06-28 16:09:17'),(204,'jvq65','BrianPUBRE','a:2:{s:7:\"browser\";s:130:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.13.190.254',6,0,0,0,0,0,'2019-07-02 04:57:47','2019-07-02 04:57:47'),(205,'s2dvf','test test','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-04 12:01:45','2019-07-04 12:01:45'),(206,'cyjwj','test test','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-05 12:27:12','2019-07-05 12:27:12'),(207,'58gau','Test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-area/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-08 13:40:25','2019-07-08 13:40:25'),(208,'mhy2d','test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-08 14:01:44','2019-07-08 14:01:44'),(209,'x58k0','test test','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-08 14:05:21','2019-07-08 14:05:21'),(210,'wu5m8','ContactForm','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.93.3.114',6,0,0,0,0,0,'2019-07-08 22:46:01','2019-07-08 22:46:01'),(211,'ilt9l','test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-09 12:43:16','2019-07-09 12:43:16'),(212,'h43lx','stadsig.co.za','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','83.97.23.234',6,0,0,0,0,0,'2019-07-10 03:31:00','2019-07-10 03:31:00'),(213,'8448v','test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-10 06:51:40','2019-07-10 06:51:40'),(214,'n1w85','test','a:2:{s:7:\"browser\";s:69:\"Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-10 06:53:21','2019-07-10 06:53:21'),(215,'ujbms','test testtest','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-12 12:09:11','2019-07-12 12:09:11'),(216,'s696m','test test','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-12 14:25:52','2019-07-12 14:25:52'),(217,'ejxrb','test test','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-12 14:30:03','2019-07-12 14:30:03'),(218,'93a25','StephenGix','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.13.190.254',6,0,0,0,0,0,'2019-07-12 16:19:17','2019-07-12 16:19:17'),(219,'fs5to','test','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-15 14:40:12','2019-07-15 14:40:12'),(220,'a0zad','Debbie Porter','a:2:{s:7:\"browser\";s:193:\"Mozilla/5.0 (Linux; Android 7.0; VTR-L09 Build/HUAWEIVTR-L09; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/75.0.3770.101 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/229.0.0.35.117;]\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','197.99.124.2',6,0,0,0,0,0,'2019-07-16 11:36:08','2019-07-16 11:36:08'),(221,'734d3','Johan van Niekerk','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','102.129.58.46',6,0,0,0,0,0,'2019-07-16 11:42:14','2019-07-16 11:42:14'),(222,'nmm0d','Jitka Langohr','a:2:{s:7:\"browser\";s:117:\"Mozilla/5.0 (Linux; Android 4.4.4; SM-T560) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','105.187.25.4',6,0,0,0,0,0,'2019-07-16 18:25:55','2019-07-16 18:25:55'),(223,'zpkmx','Michelle','a:2:{s:7:\"browser\";s:188:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-G955F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/70.0.3538.110 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/220.0.0.46.112;]\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.114.153.24',6,0,0,0,0,0,'2019-07-16 19:29:38','2019-07-16 19:29:38'),(224,'tb63h','Jayme Abney','a:2:{s:7:\"browser\";s:109:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','196.17.118.180',6,0,0,0,0,0,'2019-07-19 01:50:47','2019-07-19 01:50:47'),(225,'xysov','stadsig.co.za','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','83.97.23.188',6,0,0,0,0,0,'2019-07-21 02:38:26','2019-07-21 02:38:26'),(226,'ltlpl','Nosimpiwe','a:2:{s:7:\"browser\";s:68:\"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','41.193.23.98',6,0,0,0,0,0,'2019-07-22 09:52:47','2019-07-22 09:52:47'),(227,'yvwn7','Walterusamn','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.230',6,0,0,0,0,0,'2019-07-22 21:32:10','2019-07-22 21:32:10'),(228,'j51j6','Elna','a:2:{s:7:\"browser\";s:143:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/78.0.257670029 Mobile/16F203 Safari/604.1\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','102.182.70.250',6,0,0,0,0,0,'2019-07-23 06:24:27','2019-07-23 06:24:27'),(229,'moqvf','CalvinSourb','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.230',6,0,0,0,0,0,'2019-07-23 06:59:36','2019-07-23 06:59:36'),(230,'znjet','test','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2019-07-24 11:00:07','2019-07-24 11:00:07'),(231,'23cz3','stadsig.co.za','a:2:{s:7:\"browser\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','45.81.0.99',6,0,0,0,0,0,'2019-07-25 09:48:47','2019-07-25 09:48:47'),(232,'eztax','nickie van zyl','a:2:{s:7:\"browser\";s:130:\"Mozilla/5.0 (Linux; Android 4.4.4; SM-T561 Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.109 Safari/537.36\";s:8:\"referrer\";s:100:\"https://www.stadsig.co.za/house-plans/?gclid=EAIaIQobChMIgJuj6IHT4wIVzbTtCh334QxyEAAYASAEEgLCTvD_BwE\";}','41.13.254.178',6,0,0,0,0,0,'2019-07-26 16:40:08','2019-07-26 16:40:08'),(233,'p1480','Anna Gladys Neethling','a:2:{s:7:\"browser\";s:139:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1\";s:8:\"referrer\";s:125:\"https://www.stadsig.co.za/?gclid=Cj0KCQjwj_XpBRCCARIsAItJiuTuA0ehYt0BgVQdQ4SuiHoUQn2kdXD-uCunwQKBgu2X8aaXKx-VgegaAhcNEALw_wcB\";}','41.13.194.37',6,0,0,0,0,0,'2019-07-29 05:50:29','2019-07-29 05:50:29'),(234,'6fo55','Asanda','a:2:{s:7:\"browser\";s:138:\"Mozilla/5.0 (Linux; Android 8.1.0; Nokia 3.1 Build/O11019) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.114.249.14',6,0,0,0,0,0,'2019-07-30 05:31:09','2019-07-30 05:31:09'),(235,'vohc4','EllGomi','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/gallery/\";}','5.188.45.160',6,0,0,0,0,0,'2019-07-31 18:47:39','2019-07-31 18:47:39'),(236,'ydl7l','Johan Kitshoff','a:2:{s:7:\"browser\";s:195:\"Mozilla/5.0 (Linux; Android 8.0.0; WAS-LX1 Build/HUAWEIWAS-LX1; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/75.0.3770.101 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/229.0.0.35.117;]\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','197.245.223.164',6,0,0,0,0,0,'2019-08-01 17:07:50','2019-08-01 17:07:50'),(237,'i2q10','Kobie Botha','a:2:{s:7:\"browser\";s:189:\"Mozilla/5.0 (Linux; Android 6.0.1; SM-G532F Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/75.0.3770.143 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/231.0.0.39.113;]\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','102.165.68.127',6,0,0,0,0,0,'2019-08-01 19:00:25','2019-08-01 19:00:25'),(238,'b8e02','FrankBep','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.246',6,0,0,0,0,0,'2019-08-01 20:29:18','2019-08-01 20:29:18'),(239,'ofhud','clarissa','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','41.157.104.86',6,0,0,0,0,0,'2019-08-02 16:19:01','2019-08-02 16:19:01'),(240,'tv8tq','Peter','a:2:{s:7:\"browser\";s:126:\"Mozilla/5.0 (iPad; CPU OS 10_3_4 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G61 Safari/602.1\";s:8:\"referrer\";s:96:\"https://www.stadsig.co.za/contact/?gclid=EAIaIQobChMIn4av6ZPm4wIVSeN3Ch0r0QB1EAAYASADEgIEBPD_BwE\";}','197.86.211.107',6,0,0,0,0,0,'2019-08-03 07:17:21','2019-08-03 07:17:21'),(241,'l34qc','EllGomi','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/gallery/\";}','5.188.45.160',6,0,0,0,0,0,'2019-08-06 11:40:10','2019-08-06 11:40:10'),(242,'1yc93','tobie Cilliers','a:2:{s:7:\"browser\";s:193:\"Mozilla/5.0 (Linux; Android 9; SM-G955F Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/76.0.3809.89 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/232.0.0.35.115;]\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','102.65.154.147',6,0,0,0,0,0,'2019-08-09 04:23:30','2019-08-09 04:23:30'),(243,'a6yy5','KeithEstak','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','193.201.224.230',6,0,0,0,0,0,'2019-08-09 08:48:54','2019-08-09 08:48:54'),(244,'2rhnn','FrankBep','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:8:\"referrer\";s:40:\"https://www.stadsig.co.za/documentation/\";}','193.201.224.246',6,0,0,0,0,0,'2019-08-09 09:24:42','2019-08-09 09:24:42'),(245,'vmlpc','FrankBep','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-team/\";}','193.201.224.246',6,0,0,0,0,0,'2019-08-10 11:41:40','2019-08-10 11:41:40'),(246,'hvd2q','Neil Viljoen','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','105.226.113.53',6,0,0,0,0,0,'2019-08-11 16:20:51','2019-08-11 16:20:51'),(247,'yu5et','Andries Visser','a:2:{s:7:\"browser\";s:264:\"Mozilla/5.0 (Linux; Android 9; VTR-L09 Build/HUAWEIVTR-L09; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/76.0.3809.89 Mobile Safari/537.36 Instagram 105.0.0.18.119 Android (28/9; 480dpi; 1080x1792; HUAWEI; VTR-L09; HWVTR; hi3660; en_GB; 166149717)\";s:8:\"referrer\";s:133:\"https://www.stadsig.co.za/?utm_source=PaidSocial&utm_medium=Facebook&utm_campaign=Awareness&utm_content=Outdoor%2FHealthy%20Lifestyle\";}','105.227.29.48',6,0,0,0,0,0,'2019-08-13 06:48:22','2019-08-13 06:48:22'),(248,'pbe4p','ttg tam','a:2:{s:7:\"browser\";s:135:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/68.0.3440.106 Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:179:\"https://www.stadsig.co.za/?utm_source=PaidSocial&utm_medium=Facebook&utm_campaign=Awareness&utm_content=Family&fbclid=IwAR0VtaTiAw-0X6K61ghx_6qt1GLK3gTFoGanBWkkVFNjUMfUMmBYw6twYuQ\";}','146.230.89.99',6,0,0,0,0,0,'2019-08-13 15:59:40','2019-08-13 15:59:40'),(249,'w0z0i','Ockie van Zyl','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','196.250.142.1',6,0,0,0,0,0,'2019-08-14 11:26:55','2019-08-14 11:26:55'),(250,'vvx91','latin girlszru','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','193.201.224.229',6,0,0,0,0,0,'2019-08-14 16:39:22','2019-08-14 16:39:22'),(251,'z85f0','BradleyKneef','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','31.13.190.254',6,0,0,0,0,0,'2019-08-14 22:58:09','2019-08-14 22:58:09'),(252,'rirss','Wanda','a:2:{s:7:\"browser\";s:267:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBAV/233.0.0.49.118;FBBV/166226396;FBDV/iPhone9,4;FBMD/iPhone;FBSN/iOS;FBSV/12.4;FBSS/3;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/167791613;FBCR/Vodacom]\";s:8:\"referrer\";s:93:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\";}','169.255.170.126',6,0,0,0,0,0,'2019-08-17 04:42:30','2019-08-17 04:42:30'),(253,'qhzh5','Tashwille','a:2:{s:7:\"browser\";s:267:\"Mozilla/5.0 (Linux; Android 9; SNE-LX1 Build/HUAWEISNE-LX1; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/76.0.3809.111 Mobile Safari/537.36 Instagram 106.0.0.24.118 Android (28/9; 480dpi; 1080x2128; HUAWEI; SNE-LX1; HWSNE; kirin710; en_ZA; 167338559)\";s:8:\"referrer\";s:93:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\";}','105.229.123.89',6,0,0,0,0,0,'2019-08-17 10:07:50','2019-08-17 10:07:50'),(254,'uqomy','Anthony Forbes','a:2:{s:7:\"browser\";s:122:\"Mozilla/5.0 (Linux; Android 7.0; PRA-LA1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36\";s:8:\"referrer\";s:192:\"https://www.stadsig.co.za/?utm_source=PaidSocial&utm_medium=Facebook&utm_campaign=Awareness&utm_content=Family%2FDownsizing&fbclid=IwAR3CtCRc5iGqDo7GfGLm6y--IN8nSQmKp00mdJzn5GjoKTIdcd27cEq2Lag\";}','105.186.93.236',6,0,0,0,0,0,'2019-08-18 07:03:06','2019-08-18 07:03:06'),(255,'5d6yv','Noluvuyo','a:2:{s:7:\"browser\";s:137:\"Mozilla/5.0 (Linux; Android 6.0.1; SM-N910H Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.91 Mobile Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','197.229.2.74',6,0,0,0,0,0,'2019-08-18 15:34:29','2019-08-18 15:34:29'),(256,'ltkv3','Kennethpag','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','89.249.64.186',6,0,0,0,0,0,'2019-08-18 16:28:06','2019-08-18 16:28:06'),(257,'68pgo','Peter Louwrens','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:8:\"referrer\";s:162:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019&fbclid=IwAR2iGTfVycplAYTgE5FYb451x3rFBkDPJddsrO2U45WJLSJV5xWrPv4fMmo\";}','197.94.200.75',6,0,0,0,0,0,'2019-08-19 06:07:21','2019-08-19 06:07:21'),(258,'pq6jp','Lungiswa','a:2:{s:7:\"browser\";s:124:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-J400F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.13.56.167',6,0,0,0,0,0,'2019-08-19 14:07:37','2019-08-19 14:07:37'),(259,'t4ccp','RobertPAB','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.93.180.217',6,0,0,0,0,0,'2019-08-19 14:07:54','2019-08-19 14:07:54'),(260,'c7tpp','george','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.56.62.167',6,0,0,0,0,0,'2019-08-19 15:07:38','2019-08-19 15:07:38'),(261,'s9snk','Lorraine Blignaut','a:2:{s:7:\"browser\";s:178:\"Mozilla/5.0 (Linux; Android 5.1.1; SAMSUNG SM-J120F/J120FXXU2ARA1 Build/LMY47X) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.2 Chrome/67.0.3396.87 Mobile Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','41.56.51.7',6,0,0,0,0,0,'2019-08-21 07:54:13','2019-08-21 07:54:13'),(262,'ybhyw','Lorraine Blignaut','a:2:{s:7:\"browser\";s:178:\"Mozilla/5.0 (Linux; Android 5.1.1; SAMSUNG SM-J120F/J120FXXU2ARA1 Build/LMY47X) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.2 Chrome/67.0.3396.87 Mobile Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.56.51.7',6,0,0,0,0,0,'2019-08-21 07:55:17','2019-08-21 07:55:17'),(263,'2w313','Carmen','a:2:{s:7:\"browser\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362\";s:8:\"referrer\";s:40:\"https://www.stadsig.co.za/documentation/\";}','169.0.117.51',6,0,0,0,0,0,'2019-08-21 10:16:34','2019-08-21 10:16:34'),(264,'cp0sm','spanishwomenlzb','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','193.201.224.59',6,0,0,0,0,0,'2019-08-21 15:07:59','2019-08-21 15:07:59'),(265,'m4dny','Susan Vogel','a:2:{s:7:\"browser\";s:124:\"Mozilla/5.0 (Linux; Android 8.0.0; ATU-L22) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36\";s:8:\"referrer\";s:132:\"https://www.stadsig.co.za/contact/?gclid=CjwKCAjw-vjqBRA6EiwAe8TCkz4oZxbYoGPxolOf7A67dLcIjYfeRhHt2t8j_vtydar5V5dEACwznhoCKPsQAvD_BwE\";}','105.10.159.26',6,0,0,0,0,0,'2019-08-23 06:49:57','2019-08-23 06:49:57'),(266,'79fe3','Mahen singh','a:2:{s:7:\"browser\";s:269:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBAV/234.0.0.44.113;FBBV/167320803;FBDV/iPhone11,8;FBMD/iPhone;FBSN/iOS;FBSV/12.4;FBSS/2;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/168897000;FBCR/TelkomSA]\";s:8:\"referrer\";s:93:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\";}','102.250.6.81',6,0,0,0,0,0,'2019-08-24 08:52:12','2019-08-24 08:52:12'),(267,'vhr3q','Mike DAUBERMANN','a:2:{s:7:\"browser\";s:109:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','197.89.35.4',6,0,0,0,0,0,'2019-08-27 14:08:34','2019-08-27 14:08:34'),(268,'p4h7a','Agnes Macounie','a:2:{s:7:\"browser\";s:129:\"Mozilla/5.0 (Linux; Android 4.4.4; SM-T561 Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.91 Safari/537.36\";s:8:\"referrer\";s:93:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\";}','41.13.254.59',6,0,0,0,0,0,'2019-08-30 22:27:08','2019-08-30 22:27:08'),(269,'719go','HarlandItago','a:2:{s:7:\"browser\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','37.120.133.150',6,0,0,0,0,0,'2019-08-31 07:26:45','2019-08-31 07:26:45'),(270,'y4o3c','alta jordan','a:2:{s:7:\"browser\";s:121:\"Mozilla/5.0 (Linux; Android 9; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Mobile Safari/537.36\";s:8:\"referrer\";s:192:\"https://www.stadsig.co.za/?utm_source=PaidSocial&utm_medium=Facebook&utm_campaign=Awareness&utm_content=Family%2FDownsizing&fbclid=IwAR3S0Wi0fIJQWoCuPl6HKdmvtwp0AOOX8V7-CjlMz3_65dIruwzzERCYMj0\";}','41.113.21.225',6,0,0,0,0,0,'2019-08-31 14:01:37','2019-08-31 14:01:37'),(271,'8cmt2','Edwin Fowler','a:2:{s:7:\"browser\";s:122:\"Mozilla/5.0 (Linux; Android 4.4.4; C6903) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36\";s:8:\"referrer\";s:93:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\";}','41.50.16.51',6,0,0,0,0,0,'2019-08-31 20:10:59','2019-08-31 20:10:59'),(272,'izm36','Shumani Ramuthivheli','a:2:{s:7:\"browser\";s:193:\"Mozilla/5.0 (Linux; Android 9; SM-A305F Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.99 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/235.0.0.38.118;]\";s:8:\"referrer\";s:93:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\";}','197.229.0.180',6,0,0,0,0,0,'2019-08-31 22:07:36','2019-08-31 22:07:36'),(273,'4te2y','Test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','41.193.55.202',6,0,0,0,0,0,'2019-09-05 12:34:19','2019-09-05 12:34:19'),(274,'6far9','ts','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:8:\"referrer\";s:35:\"https://www.stadsig.co.za/the-area/\";}','41.193.55.202',6,0,0,0,0,0,'2019-09-05 12:44:28','2019-09-05 12:44:28'),(275,'zicfi','Inge Test','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:8:\"referrer\";s:125:\"https://www.stadsig.co.za/?gclid=Cj0KCQjw5MLrBRClARIsAPG0WGwtYuPitKU4Y3TnJ479iYXo4kX4h3TKxyGb95xqPbo-fCBvOd6lLfQaAnGPEALw_wcB\";}','41.193.55.202',6,0,0,0,0,0,'2019-09-05 12:48:43','2019-09-05 12:48:43'),(276,'50ucl','Stephan','a:2:{s:7:\"browser\";s:191:\"Mozilla/5.0 (Linux; Android 9; EML-L09 Build/HUAWEIEML-L09; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/76.0.3809.132 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/237.0.0.44.120;]\";s:8:\"referrer\";s:93:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\";}','165.0.49.39',6,0,0,0,0,0,'2019-09-06 19:46:22','2019-09-06 19:46:22'),(277,'31r8c','George Martin','a:2:{s:7:\"browser\";s:109:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','211.196.195.46',6,0,0,0,0,0,'2019-09-07 11:06:09','2019-09-07 11:06:09'),(278,'98bul','Michelle-Heidi Frauendorf','a:2:{s:7:\"browser\";s:169:\"Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-G955F Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.4 Chrome/67.0.3396.87 Mobile Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','41.114.176.249',6,0,0,0,0,0,'2019-09-09 20:00:15','2019-09-09 20:00:15'),(279,'3tdpp','MichaelBib','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','87.101.94.125',6,0,0,0,0,0,'2019-09-10 12:53:08','2019-09-10 12:53:08'),(280,'1n8ee','Raymond Johnston','a:2:{s:7:\"browser\";s:129:\"Mozilla/5.0 (Linux; Android 6.0; HUAWEI VNS-L22) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Mobile Safari/537.36\";s:8:\"referrer\";s:136:\"https://www.stadsig.co.za/house-plans/?gclid=CjwKCAjwtuLrBRAlEiwAPVcZBlEXqcIuBMttF54dNHHh-DhkdcbUnh0jzK1GVaaHCS5Oj3Iz7Hol0hoCSooQAvD_BwE\";}','105.225.68.161',6,0,0,0,0,0,'2019-09-12 05:13:43','2019-09-12 05:13:43'),(281,'25wck','Salvo Cutino','a:2:{s:7:\"browser\";s:222:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/12.4.1;FBSS/2;FBID/phone;FBLC/en_GB;FBOP/5;FBCR/Vodacom]\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','197.229.0.31',6,0,0,0,0,0,'2019-09-12 05:38:18','2019-09-12 05:38:18'),(282,'9gix3','heidi smith','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','105.27.199.242',6,0,0,0,0,0,'2019-09-12 08:54:55','2019-09-12 08:54:55'),(283,'c3rac','Andre M Lanser','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','109.231.195.162',6,0,0,0,0,0,'2019-09-12 09:39:37','2019-09-12 09:39:37'),(284,'z8qpq','Jani Meiring','a:2:{s:7:\"browser\";s:194:\"Mozilla/5.0 (Linux; Android 9; SM-A505F Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/76.0.3809.132 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/238.0.0.41.116;]\";s:8:\"referrer\";s:93:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\";}','105.225.228.110',6,0,0,0,0,0,'2019-09-13 20:53:35','2019-09-13 20:53:35'),(285,'tcsqc','Sean Thompson','a:2:{s:7:\"browser\";s:133:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.87 Chrome/76.0.3809.87 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','158.69.241.225',6,0,0,0,0,0,'2019-09-16 09:39:04','2019-09-16 09:39:04'),(286,'rmuz4','AveryRot','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','185.93.3.110',6,0,0,0,0,0,'2019-09-16 22:48:48','2019-09-16 22:48:48'),(287,'89sgk','CherylFug','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','37.120.143.59',6,0,0,0,0,0,'2019-09-17 05:46:36','2019-09-17 05:46:36'),(288,'otqoa','esfuwadaaxasa','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','5.248.165.110',6,0,0,0,0,0,'2019-09-17 06:16:27','2019-09-17 06:16:27'),(289,'os8ss','Mr Robin Miller','a:2:{s:7:\"browser\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:8:\"referrer\";s:42:\"https://www.stadsig.co.za/estate-overview/\";}','212.165.108.173',6,0,0,0,0,0,'2019-09-17 13:09:12','2019-09-17 13:09:12'),(290,'4audl','Charmaine','a:2:{s:7:\"browser\";s:129:\"Mozilla/5.0 (Linux; Android 6.0; HUAWEI NMO-L31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Mobile Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/gallery/\";}','41.114.197.131',6,0,0,0,0,0,'2019-09-17 13:45:49','2019-09-17 13:45:49'),(291,'bb9xf','Abdullahi abukar adan','a:2:{s:7:\"browser\";s:190:\"Mozilla/5.0 (Linux; Android 7.0; Infinix X572 Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.98 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/235.0.0.38.118;]\";s:8:\"referrer\";s:93:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\";}','41.114.75.192',6,0,0,0,0,0,'2019-09-19 08:26:01','2019-09-19 08:26:01'),(292,'9v5ys','Karentoorp','a:2:{s:7:\"browser\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','84.17.47.22',6,0,0,0,0,0,'2019-09-19 22:09:24','2019-09-19 22:09:24'),(293,'vjd3','Crystalprogs','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','84.17.61.23',6,0,0,0,0,0,'2019-09-19 23:00:39','2019-09-19 23:00:39'),(294,'dwafo','Melanie','a:2:{s:7:\"browser\";s:121:\"Mozilla/5.0 (Linux; Android 9; SM-J730F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Mobile Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','209.203.5.163',6,0,0,0,0,0,'2019-09-22 09:21:43','2019-09-22 09:21:43'),(295,'2c9o5','Stephanie De Jager','a:2:{s:7:\"browser\";s:271:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBAV/239.0.0.52.149;FBBV/172924969;FBDV/iPhone8,2;FBMD/iPhone;FBSN/iOS;FBSV/12.4.1;FBSS/3;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/173862327;FBCR/Vodacom]\";s:8:\"referrer\";s:93:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\";}','41.13.228.146',6,0,0,0,0,0,'2019-09-23 17:57:24','2019-09-23 17:57:24'),(296,'jkjei','Jenny Wright','a:2:{s:7:\"browser\";s:278:\"Mozilla/5.0 (Linux; Android 7.0; SM-G920F Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.92 Mobile Safari/537.36 Instagram 112.0.0.29.121 Android (24/7.0; 640dpi; 1440x2560; samsung; SM-G920F; zeroflte; samsungexynos7420; en_ZA; 174081672)\";s:8:\"referrer\";s:93:\"https://www.stadsig.co.za/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\";}','105.246.70.142',6,0,0,0,0,0,'2019-09-26 06:38:53','2019-09-26 06:38:53'),(297,'gcafq','David Gomez','a:2:{s:7:\"browser\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','37.120.151.62',6,0,0,0,0,0,'2019-09-27 21:20:36','2019-09-27 21:20:36'),(298,'20gzf','Sarine','a:2:{s:7:\"browser\";s:120:\"Mozilla/5.0 (Linux; Android 9; ELE-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Mobile Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','41.246.29.112',6,0,0,0,0,0,'2019-09-28 08:53:35','2019-09-28 08:53:35'),(299,'vw520','Eric','a:2:{s:7:\"browser\";s:109:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36\";s:8:\"referrer\";s:34:\"https://www.stadsig.co.za/contact/\";}','107.174.235.96',6,0,0,0,0,0,'2019-10-05 18:48:39','2019-10-05 18:48:39'),(300,'nar3f','Pierre van Zyl','a:2:{s:7:\"browser\";s:190:\"Mozilla/5.0 (Linux; Android 9; EML-L29 Build/HUAWEIEML-L29; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.92 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/241.0.0.39.120;]\";s:8:\"referrer\";s:130:\"https://www.stadsig.co.za/?utm_source=PaidSocial&utm_medium=Facebook&utm_campaign=Awareness&utm_content=Outdoor%2FHealthyLifestyle\";}','102.182.64.208',6,0,0,0,0,0,'2019-10-06 09:12:47','2019-10-06 09:12:47'),(301,'zkngb','Sally Bruss','a:2:{s:7:\"browser\";s:272:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBAV/229.0.0.49.116;FBBV/162376927;FBDV/iPhone10,6;FBMD/iPhone;FBSN/iOS;FBSV/12.4.1;FBSS/3;FBCR/Vodacom;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/164614973]\";s:8:\"referrer\";s:38:\"https://www.stadsig.co.za/house-plans/\";}','213.172.145.201',6,0,0,0,0,0,'2019-10-06 13:24:17','2019-10-06 13:24:17'),(302,'v43dn','Pedro Molina','a:2:{s:7:\"browser\";s:102:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:8:\"referrer\";s:26:\"https://www.stadsig.co.za/\";}','37.120.217.7',6,0,0,0,0,0,'2019-10-08 15:59:41','2019-10-08 15:59:41'),(303,'qso94','moldovawomenxxk','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36 OPR\\/54.0.2952.71\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/house-plans\\/\"}','193.201.224.59',6,0,0,0,0,0,'2019-10-10 14:54:59','2019-10-10 14:54:59'),(304,'s2nn9','qpidnetworkdkm','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/house-plans\\/\"}','193.201.224.229',6,0,0,0,0,0,'2019-10-11 04:45:18','2019-10-11 04:45:18'),(305,'8g9pb','AndrewQuiek','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36 OPR\\/53.0.2907.68\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/house-plans\\/\"}','193.201.224.59',6,0,0,0,0,0,'2019-10-11 05:12:56','2019-10-11 05:12:56'),(306,'k43bl','Neal','{\"browser\":\"Mozilla\\/5.0 (Linux; Android 9; SM-G973F Build\\/PPR1.180610.011; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/77.0.3865.92 Mobile Safari\\/537.36 [FB_IAB\\/FB4A;FBAV\\/242.0.0.43.119;]\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/?utm_source=Paid&utm_medium=Facebook_Leads&utm_campaign=Aug-Oct2019\"}','154.119.40.164',6,0,0,0,0,0,'2019-10-12 06:26:30','2019-10-12 06:26:30'),(307,'ixphm','Johannes Janse van Rensburg','{\"browser\":\"Mozilla\\/5.0 (Linux; Android 8.0.0; SM-G965F) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.92 Mobile Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','41.13.192.53',6,0,0,0,0,0,'2019-10-13 07:43:51','2019-10-13 07:43:51'),(308,'ox1fq','DorothyCar','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.146 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','37.120.142.147',6,0,0,0,0,0,'2019-10-13 20:54:35','2019-10-13 20:54:35'),(309,'4cuaf','Crystalprogs','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36 OPR\\/53.0.2907.99\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','84.17.62.142',6,0,0,0,0,0,'2019-10-15 04:14:44','2019-10-15 04:14:44'),(310,'1m1io','Heidi Ross','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/contact\\/\"}','49.83.16.60',6,0,0,0,0,0,'2019-10-15 04:22:13','2019-10-15 04:22:13'),(311,'trp3f','Constance Herklaas','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36 Edge\\/18.17763\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/contact\\/\"}','165.233.50.172',6,0,0,0,0,0,'2019-10-16 14:12:48','2019-10-16 14:12:48'),(312,'7hhdy','Jacobwrity','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36 OPR\\/53.0.2907.99\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','84.17.62.143',6,0,0,0,0,0,'2019-10-17 03:08:36','2019-10-17 03:08:36'),(313,'1a7xe','MikeBoits','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','37.120.142.157',6,0,0,0,0,0,'2019-10-17 13:39:12','2019-10-17 13:39:12'),(314,'mr4cz','Heidi','{\"browser\":\"Mozilla\\/5.0 (Linux; Android 8.0.0; SM-G930F Build\\/R16NW; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/77.0.3865.116 Mobile Safari\\/537.36 [FB_IAB\\/FB4A;FBAV\\/243.0.0.47.108;]\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/house-plans\\/\"}','197.89.40.68',6,0,0,0,0,0,'2019-10-20 15:55:45','2019-10-20 15:55:45'),(315,'diu9s','Shanehab','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.84 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/house-plans\\/\"}','193.201.224.59',6,0,0,0,0,0,'2019-10-23 07:04:51','2019-10-23 07:04:51'),(316,'bij4q','Nelus Niemandt','{\"browser\":\"Mozilla\\/5.0 (iPad; CPU OS 13_1 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) GSA\\/85.0.274229539 Mobile\\/15E148 Safari\\/605.1\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','41.182.52.18',6,0,0,0,0,0,'2019-10-23 15:30:37','2019-10-23 15:30:37'),(317,'lw6oo','Judithten','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.79 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','5.253.204.29',6,0,0,0,0,0,'2019-10-23 16:47:10','2019-10-23 16:47:10'),(318,'omnqv','Michael van Rooyen','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/contact\\/\"}','197.99.51.112',6,0,0,0,0,0,'2019-10-24 18:33:07','2019-10-24 18:33:07'),(319,'ok2il','Ruan Ferreira','{\"browser\":\"Mozilla\\/5.0 (Linux; Android 9; SAMSUNG SM-A705FN) AppleWebKit\\/537.36 (KHTML, like Gecko) SamsungBrowser\\/10.1 Chrome\\/71.0.3578.99 Mobile Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/house-plans\\/\"}','105.9.7.185',6,0,0,0,0,0,'2019-10-26 10:01:21','2019-10-26 10:01:21'),(320,'u0qa','Driaan Rupping','{\"browser\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 13_1 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) GSA\\/85.0.274229539 Mobile\\/15E148 Safari\\/605.1\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','41.164.155.150',6,0,0,0,0,0,'2019-10-27 05:09:15','2019-10-27 05:09:15'),(321,'7cuon','Benitocheek','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','151.106.8.37',6,0,0,0,0,0,'2019-10-28 11:44:17','2019-10-28 11:44:17'),(322,'fsily','Charmaine Harper','{\"browser\":\"Mozilla\\/5.0 (Linux; Android 9; SM-G965F) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.116 Mobile Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','105.232.57.112',6,0,0,0,0,0,'2019-10-29 13:13:32','2019-10-29 13:13:32'),(323,'gq5z2','Inge Evenwel','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/77.0.3865.120 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','41.193.55.202',6,0,0,0,0,0,'2019-10-30 10:42:18','2019-10-30 10:42:18'),(324,'gsy1n','Test','{\"browser\":\"Mozilla\\/5.0 (Linux; Android 8.0.0; G3112) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.62 Mobile Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/?gclid=Cj0KCQjw6eTtBRDdARIsANZWjYbS0KmZ4LoBqdWYTgnB0COtM4ieanM6890Je5Bakh4iCzLhDWK9osUaAosnEALw_wcB\"}','41.193.55.202',6,0,0,0,0,0,'2019-10-30 10:57:34','2019-10-30 10:57:34'),(325,'ec9lz','MariaLully','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36 OPR\\/54.0.2952.54\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','185.216.33.181',6,0,0,0,0,0,'2019-10-31 07:17:55','2019-10-31 07:17:55'),(326,'1mak','Louiswreve','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','84.17.47.100',6,0,0,0,0,0,'2019-11-02 08:11:07','2019-11-02 08:11:07'),(327,'h1fsf','Manueldauts','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36 OPR\\/54.0.2952.54\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','185.217.71.137',6,0,0,0,0,0,'2019-11-06 01:27:27','2019-11-06 01:27:27'),(328,'dwscl','Company Loans','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/contact\\/\"}','102.250.3.16',6,0,0,0,0,0,'2019-11-06 14:13:09','2019-11-06 14:13:09'),(329,'qhvkf','CharlesOxymn','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.181 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','95.174.65.166',6,0,0,0,0,0,'2019-11-12 08:58:46','2019-11-12 08:58:46'),(330,'i72gf','HerbertArrar','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','185.93.3.114',6,0,0,0,0,0,'2019-11-14 03:17:06','2019-11-14 03:17:06'),(331,'qv8ux','Pablo Novak','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','84.17.49.140',6,0,0,0,0,0,'2019-11-18 22:02:30','2019-11-18 22:02:30'),(332,'a0yz7','Laura Wiess','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/contact\\/\"}','108.60.212.188',6,0,0,0,0,0,'2019-11-20 01:29:54','2019-11-20 01:29:54'),(333,'uzj8f','Eric Jones','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/contact\\/\"}','172.245.242.200',6,0,0,0,0,0,'2019-11-20 23:06:04','2019-11-20 23:06:04'),(334,'yd4os','Jeremyloali','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36 OPR\\/54.0.2952.64\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','193.9.114.233',6,0,0,0,0,0,'2019-11-24 07:48:33','2019-11-24 07:48:33'),(335,'17a66','CompanyLoans.co.za','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/contact\\/\"}','73.125.22.60',6,0,0,0,0,0,'2019-11-26 11:35:32','2019-11-26 11:35:32'),(336,'350a2','Demetrius Ranking','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/contact\\/\"}','217.117.250.99',6,0,0,0,0,0,'2019-12-03 12:16:42','2019-12-03 12:16:42'),(337,'wp9h2','ThomasAnderson','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','185.93.182.138',6,0,0,0,0,0,'2019-12-06 21:29:54','2019-12-06 21:29:54'),(338,'kzpby','Joseph M. Morris','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/contact\\/\"}','49.83.18.221',6,0,0,0,0,0,'2019-12-09 10:46:18','2019-12-09 10:46:18'),(339,'7f67j','Von Chang','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/contact\\/\"}','104.245.145.8',6,0,0,0,0,0,'2019-12-20 03:37:34','2019-12-20 03:37:34'),(340,'sb9kw','Pam Jageurs','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/contact\\/\"}','78.129.156.74',6,0,0,0,0,0,'2019-12-26 01:19:01','2019-12-26 01:19:01'),(341,'vcoe6','Monkeycal','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36 Edge\\/17.17134\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','151.106.11.189',6,0,0,0,0,0,'2019-12-26 11:26:35','2019-12-26 11:26:35'),(342,'rumbm','RobertMaing','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36 OPR\\/54.0.2952.64\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','84.17.60.15',6,0,0,0,0,0,'2019-12-26 18:48:38','2019-12-26 18:48:38'),(343,'yk29m','Harryfer','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36 OPR\\/53.0.2907.106\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','151.106.11.182',6,0,0,0,0,0,'2020-01-01 00:10:54','2020-01-01 00:10:54'),(344,'3cx2x','Kennethgaw','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','84.17.61.12',6,0,0,0,0,0,'2020-01-02 19:46:37','2020-01-02 19:46:37'),(345,'d05x4','WilliamSlorp','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/house-plans\\/\"}','198.144.149.253',6,0,0,0,0,0,'2020-01-08 06:46:36','2020-01-08 06:46:36'),(346,'bod6s','Melvinhit','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36 OPR\\/54.0.2952.51\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/\"}','91.122.30.68',6,0,0,0,0,0,'2020-01-09 01:52:32','2020-01-09 01:52:32'),(347,'jfbjn','Joshuathals','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/house-plans\\/\"}','198.144.149.253',6,0,0,0,0,0,'2020-01-10 07:32:27','2020-01-10 07:32:27'),(348,'2dl04','Joshuathals','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.181 Safari\\/537.36\",\"referrer\":\"https:\\/\\/www.stadsig.co.za\\/house-plans\\/\"}','198.144.149.253',6,0,0,0,0,0,'2020-01-14 07:34:59','2020-01-14 07:34:59'),(349,'p4aio','Kathy Hemmant','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','141.101.143.15',6,0,0,0,0,0,'2020-01-15 14:36:16','2020-01-15 14:36:16'),(350,'24mvn','Laura Wiess','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','108.60.212.188',6,0,0,0,0,0,'2020-01-16 03:27:07','2020-01-16 03:27:07'),(351,'c2e9g','Charla Benjamin','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','104.254.92.218',6,0,0,0,0,0,'2020-01-17 16:53:10','2020-01-17 16:53:10'),(352,'delry','France Willie','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','104.254.92.218',6,0,0,0,0,0,'2020-01-19 10:47:03','2020-01-19 10:47:03'),(353,'vn02t','Tamerin Crotz','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','196.250.144.117',6,0,0,0,0,0,'2020-01-20 07:02:23','2020-01-20 07:02:23'),(354,'ebyra','Joshuathals','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.62 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/house-plans\\/\"}','198.144.149.254',6,0,0,0,0,0,'2020-01-20 23:27:14','2020-01-20 23:27:14'),(355,'64euo','Kendrick Switzer','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','104.245.144.42',6,0,0,0,0,0,'2020-01-26 14:35:06','2020-01-26 14:35:06'),(356,'ulal4','Melvinhit','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36 Kinza\\/4.9.1\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','91.122.30.68',6,0,0,0,0,0,'2020-01-27 11:38:26','2020-01-27 11:38:26'),(357,'kagmq','Kim Tilly','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','41.13.66.63',6,0,0,0,0,0,'2020-01-28 05:01:29','2020-01-28 05:01:29'),(358,'b46a2','Brittny Kellway','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','104.245.145.55',6,0,0,0,0,0,'2020-02-01 10:35:10','2020-02-01 10:35:10'),(359,'r3g4j','Bessie Lewers','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','104.254.92.53',6,0,0,0,0,0,'2020-02-03 19:18:13','2020-02-03 19:18:13'),(360,'fv1dd','Donnell Beliveau','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','104.254.92.242',6,0,0,0,0,0,'2020-02-06 09:05:45','2020-02-06 09:05:45'),(361,'bq87y','Maryanne Stonor','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','141.101.143.42',6,0,0,0,0,0,'2020-02-11 19:01:39','2020-02-11 19:01:39'),(362,'answ','Ina Arce','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','172.94.22.80',6,0,0,0,0,0,'2020-02-12 12:14:56','2020-02-12 12:14:56'),(363,'goa46','Briantiz','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36 OPR\\/54.0.2952.64\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','84.17.47.35',6,0,0,0,0,0,'2020-02-14 03:17:52','2020-02-14 03:17:52'),(364,'cqln5','Mastifmaibe','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/news\\/\"}','37.120.156.16',6,0,0,0,0,0,'2020-02-15 18:11:00','2020-02-15 18:11:00'),(365,'avqsx','Gilberto Mcinnis','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','104.254.95.154',6,0,0,0,0,0,'2020-02-24 16:21:20','2020-02-24 16:21:20'),(366,'zs5n2','Sara Mcintire','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"http:\\/\\/stadsig.co.za\\/contact\\/\"}','209.99.174.124',6,0,0,0,0,0,'2020-02-26 11:49:49','2020-02-26 11:49:49'),(367,'y4fri','Nico Viljoen','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36 Edge\\/18.17763\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/gallery\\/\"}','165.255.106.245',6,0,0,0,0,0,'2020-02-29 04:44:19','2020-02-29 04:44:19'),(368,'5nihj','Sybil Pearl','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','89.187.177.135',6,0,0,0,0,0,'2020-03-01 16:12:49','2020-03-01 16:12:49'),(369,'9zpwm','Nico Viljoen','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.140 Safari\\/537.36 Edge\\/18.17763\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/house-plans\\/\"}','165.255.104.93',6,0,0,0,0,0,'2020-03-02 08:05:00','2020-03-02 08:05:00'),(370,'kj4v6','ReubenJen','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','91.122.30.68',6,0,0,0,0,0,'2020-03-02 16:34:55','2020-03-02 16:34:55'),(371,'or58h','Neil Scribner','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','45.152.182.135',6,0,0,0,0,0,'2020-03-03 19:57:31','2020-03-03 19:57:31'),(372,'zbpwn','Alex Cohen','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','66.85.78.22',6,0,0,0,0,0,'2020-03-11 01:17:33','2020-03-11 01:17:33'),(373,'jknyp','Frederick Heritage','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','104.254.92.218',6,0,0,0,0,0,'2020-03-11 15:10:35','2020-03-11 15:10:35'),(374,'9s4zs','Williamtiego','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.181 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','190.2.149.159',6,0,0,0,0,0,'2020-03-12 04:47:12','2020-03-12 04:47:12'),(375,'8armg','Olivia Garmon','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','172.94.23.180',6,0,0,0,0,0,'2020-03-12 22:14:35','2020-03-12 22:14:35'),(376,'555v4','LouisTes','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36 OPR\\/53.0.2907.106\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','84.17.48.8',6,0,0,0,0,0,'2020-03-18 20:51:32','2020-03-18 20:51:32'),(377,'z4vhx','Anthonyreomy','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36 OPR\\/55.0.2994.44\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','84.17.48.52',6,0,0,0,0,0,'2020-03-21 18:07:42','2020-03-21 18:07:42'),(378,'m54tx','Marcelle Hanekom','{\"browser\":\"Mozilla\\/5.0 (Linux; Android 9; SNE-LX1 Build\\/HUAWEISNE-L01; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/80.0.3987.119 Mobile Safari\\/537.36 [FB_IAB\\/FB4A;FBAV\\/262.0.0.34.117;]\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','41.13.212.109',6,0,0,0,0,0,'2020-03-23 10:11:36','2020-03-23 10:11:36'),(379,'lzpjq','Phyllis Hopwood','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','89.187.177.135',6,0,0,0,0,0,'2020-03-26 15:30:05','2020-03-26 15:30:05'),(380,'lvtfw','Barry Alvardo','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','31.14.74.55',6,0,0,0,0,0,'2020-03-28 15:59:31','2020-03-28 15:59:31'),(381,'tvbfv','Ali','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','39.52.221.179',6,0,0,0,0,0,'2020-03-30 18:34:46','2020-03-30 18:34:46'),(382,'ymsx4','JerryPuddy','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.79 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','84.17.51.101',6,0,0,0,0,0,'2020-03-30 20:28:57','2020-03-30 20:28:57'),(383,'5phsi','Alfonzo Pilpel','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','192.143.8.212',6,0,0,0,0,0,'2020-04-01 10:51:10','2020-04-01 10:51:10'),(384,'o8dfa','Luella Cardus','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','104.245.144.235',6,0,0,0,0,0,'2020-04-01 16:11:05','2020-04-01 16:11:05'),(385,'qdv41','Eric Jones','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','23.108.48.73',6,0,0,0,0,0,'2020-04-01 19:53:29','2020-04-01 19:53:29'),(386,'stt73','Stella Kemp','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','146.185.236.23',6,0,0,0,0,0,'2020-04-06 00:25:51','2020-04-06 00:25:51'),(387,'ouhys','Oscargnd56245afsdfsaf5621','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36 OPR\\/53.0.2907.68\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/house-plans\\/\"}','198.144.149.254',6,0,0,0,0,0,'2020-04-08 19:59:02','2020-04-08 19:59:02'),(388,'ncfm8','Guadalupe Hedgepeth','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','172.111.144.41',6,0,0,0,0,0,'2020-04-10 12:21:44','2020-04-10 12:21:44'),(389,'rdzxo','Spencer Born','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','89.187.178.236',6,0,0,0,0,0,'2020-04-13 16:26:42','2020-04-13 16:26:42'),(390,'x0aa5','Judy','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','172.83.40.48',6,0,0,0,0,0,'2020-04-14 01:53:12','2020-04-14 01:53:12'),(391,'gu0yc','Eric Jones','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','23.108.45.148',6,0,0,0,0,0,'2020-04-14 15:19:16','2020-04-14 15:19:16'),(392,'2dk53','Celina Bunch','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','89.187.178.234',6,0,0,0,0,0,'2020-04-14 15:33:23','2020-04-14 15:33:23'),(393,'yrzla','MartinZef','{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36 OPR\\/53.0.2907.99\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','84.17.49.126',6,0,0,0,0,0,'2020-04-15 06:57:12','2020-04-15 06:57:12'),(394,'rg8c5','JamesBoals','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.87 Safari\\/537.36 OPR\\/54.0.2952.51\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','84.17.51.68',6,0,0,0,0,0,'2020-04-16 18:38:53','2020-04-16 18:38:53'),(395,'1dpn0','Rebbeca Chambers','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','192.143.60.135',6,0,0,0,0,0,'2020-04-24 16:30:44','2020-04-24 16:30:44'),(396,'7sy4d','Angie Halse','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','162.253.131.21',6,0,0,0,0,0,'2020-04-26 03:55:35','2020-04-26 03:55:35'),(397,'datkv','KingDennisG.com','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.79 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/\"}','37.120.158.168',6,0,0,0,0,0,'2020-04-28 03:03:20','2020-04-28 03:03:20'),(398,'3eh83','WilliamSlorp','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36 OPR\\/53.0.2907.106\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/documentation\\/\"}','198.144.149.253',6,0,0,0,0,0,'2020-04-28 16:15:53','2020-04-28 16:15:53'),(399,'wyzcc','Eric Jones','{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/66.0.3359.170 Safari\\/537.36\",\"referrer\":\"https:\\/\\/stadsig.co.za\\/contact\\/\"}','104.192.169.2',6,0,0,0,0,0,'2020-04-29 03:02:23','2020-04-29 03:02:23');
/*!40000 ALTER TABLE `sts_frm_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_links`
--

DROP TABLE IF EXISTS `sts_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_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 `sts_links`
--

LOCK TABLES `sts_links` WRITE;
/*!40000 ALTER TABLE `sts_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `sts_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_nextend2_image_storage`
--

DROP TABLE IF EXISTS `sts_nextend2_image_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_nextend2_image_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hash` varchar(32) NOT NULL,
  `image` text NOT NULL,
  `value` mediumtext NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_nextend2_image_storage`
--

LOCK TABLES `sts_nextend2_image_storage` WRITE;
/*!40000 ALTER TABLE `sts_nextend2_image_storage` DISABLE KEYS */;
INSERT INTO `sts_nextend2_image_storage` VALUES (1,'b064f2a39e42fb3df65f7f3a327eee85','$upload$/Stadsig_Gallery_ArtistsImpression_7.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(2,'56c84818c90aea6f3459d73c3e2b8429','$upload$/Stadsig_Gallery_ArtistsImpression_6.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(3,'35a8259e29098b1b1be9a0bed53b8b8b','$upload$/Stadsig_Gallery_ArtistsImpression_5.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(4,'1a9475a549d886f16e81bfe3d8699b50','$upload$/Stadsig_Gallery_ArtistsImpression_4.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(5,'22cafdd8a62fdf8877ecc69c3cc673f2','$upload$/Stadsig_Gallery_ArtistsImpression_3.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(6,'b1b145a6e27553285891d65fa019ac4c','$upload$/Stadsig_Gallery_ArtistsImpression_2.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(7,'f4ab5e276bcc8322b7079e079783a1df','$upload$/Stadsig_Gallery_ArtistsImpression_1.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(8,'6f70b5013419e384fc32db8c02105d4b','$upload$/Stadsig_Gallery_TheEstate_July2019_15-1.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(9,'a4297dc6098c7e244b1c2dfc6d3d16eb','$upload$/Stadsig_Gallery_TheEstate_July2019_14-1.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(10,'06c0416a4688fa63b6d355b992dfc4f4','$upload$/Stadsig_Gallery_TheEstate_July2019_16-1.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(11,'d122cd6e951cec597a9b697685264274','$upload$/Stadsig_Gallery_TheEstate_July2019_13.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(12,'e53bf4d38a719343f55f498ffe24d7c6','$upload$/Stadsig_Gallery_TheEstate_July2019_12.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(13,'c573b88b933618616db6e0ac68e06cf0','$upload$/Stadsig_Gallery_TheEstate_July2019_9.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(14,'2bfde63db996653a62de141d4f7a7609','$upload$/Stadsig_Gallery_TheEstate_July2019_11.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(15,'30b10154bc6c9009b11722ac0552e9c3','$upload$/Stadsig_Gallery_TheEstate_July2019_10.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(16,'f86c41e7857892c80162c1f744e5a20c','$upload$/Stadsig_Gallery_TheEstate_July2019_8.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(17,'08bdcf5531494b2695b897575075805c','$upload$/Stadsig_Gallery_TheEstate_July2019_7.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(18,'d6a9c280aa546d0ac14a5cc922c63391','$upload$/Stadsig_Gallery_TheEstate_July2019_6.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(19,'9852515fa6c1ed5e5ef458dc3bacfd88','$upload$/Stadsig_Gallery_TheEstate_July2019_5.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(20,'cfa9adeb29fd130421fa58dda827f253','$upload$/Stadsig_Gallery_TheEstate_July2019_4.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(21,'7d248ee5afcc61f2eab9d3508f00b09e','$upload$/Stadsig_Gallery_TheEstate_July2019_3.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(22,'243292782e4644e30d78e45f61b4f82c','$upload$/Stadsig_Gallery_TheEstate_July2019_2.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(23,'fc4ef83e14cfb7e0deabbdc43f3921d5','$upload$/Stadsig_Gallery_TheEstate_July2019_1.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(24,'13aa7104fa09aa669d8eb51e9462986f','$upload$/Gallery_ArtistsImpression_7.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(25,'c43bc3daa7e0cdf41bfd7dc1ec633255','$upload$/Gallery_ArtistsImpression_6.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(26,'2d1b4d744db9fa7904af485c8396127c','$upload$/Gallery_ArtistsImpression_5.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(27,'5dd1696bd8896d9549971191ba02263d','$upload$/Gallery_ArtistsImpression_4.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(28,'60a74397a2a97523bdc8a0052b7b6c32','$upload$/Gallery_ArtistsImpression_3.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(29,'d02d61e33fd4d429066c19f537a42e12','$upload$/Gallery_ArtistsImpression_2.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(30,'65f0184f2cfd5239fb153444ffd704e3','$upload$/Gallery_ArtistsImpression_1.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(31,'b326b6d79c9059e347029b8a6da2beeb','$upload$/Gallery_TheEstate_July2019_1.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(32,'bf97eff094a80dac350fef535f029abc','$upload$/Gallery_TheEstate_July2019_2.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(33,'6896b1aa85bafbd7cf737d8ead222470','$upload$/Gallery_TheEstate_July2019_3.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(34,'e696c6fcb91c1100436b79b9d8a2473c','$upload$/Gallery_TheEstate_July2019_4.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(35,'f7d9c9169c67e93d278bdf1014fad218','$upload$/Gallery_TheEstate_July2019_5.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(36,'ec17e83ed6337ed46a0ac6028f624285','$upload$/Gallery_TheEstate_July2019_6.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(37,'3a8c8fb170812811fd326ad4270f9942','$upload$/Gallery_TheEstate_July2019_7.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(38,'86edc4cc605972eebbf250796b1ab949','$upload$/Gallery_TheEstate_July2019_8.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(39,'d4ecabf9e4f44d50e8a57a3c8a193bd6','$upload$/Gallery_TheEstate_July2019_9.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(40,'b5364052ae1530ecb09b78ca9c651ad6','$upload$/Gallery_TheEstate_July2019_11.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(41,'34c011d352f104aa666be411dd0be48b','$upload$/Gallery_TheEstate_July2019_15.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(42,'31add51cc4c3604c7c688d181aede2cd','$upload$/Gallery_TheEstate_July2019_14.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(43,'cc8d0c6dfed2ba10570184d66095ee8f','$upload$/Gallery_TheEstate_July2019_16.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(44,'68ae1df29a662370adea22f16e9696af','$upload$/Gallery_TheEstate_July2019_13.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(45,'7e79b0fa7a89dfec1f103139235cf565','$upload$/Gallery_TheEstate_July2019_12.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(46,'0c4d0f7f1eb5ef9b7dab0adb490fb6f6','$upload$/Gallery_TheEstate_July2019_10.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==');
/*!40000 ALTER TABLE `sts_nextend2_image_storage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_nextend2_section_storage`
--

DROP TABLE IF EXISTS `sts_nextend2_section_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_nextend2_section_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `application` varchar(20) NOT NULL,
  `section` varchar(128) NOT NULL,
  `referencekey` varchar(128) NOT NULL,
  `value` mediumtext NOT NULL,
  `system` int(11) NOT NULL DEFAULT 0,
  `editable` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `application` (`application`,`section`,`referencekey`),
  KEY `application_2` (`application`,`section`)
) ENGINE=InnoDB AUTO_INCREMENT=10870 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_nextend2_section_storage`
--

LOCK TABLES `sts_nextend2_section_storage` WRITE;
/*!40000 ALTER TABLE `sts_nextend2_section_storage` DISABLE KEYS */;
INSERT INTO `sts_nextend2_section_storage` VALUES (10000,'system','global','n2_ss3_version','3.3.26r5643',1,1),(10001,'system','global','n2_ss3_version','3.3.26r5643',1,1),(10002,'smartslider','update','version','3.3.26',0,1),(10003,'smartslider','update','lastcheck','1578931869',0,1),(10159,'smartslider','license','isActive','1578919693',0,1),(10160,'smartslider','license','key','74785Ac5c4217317e8f5810ce04c02e814f3a9fa6cdaa783b0e33445670cc923bff254deae92a4e81127da17c4f47ac63fb8',0,1),(10868,'smartslider','sliderChanged','2','1',0,1),(10869,'smartslider','sliderChanged','3','1',0,1);
/*!40000 ALTER TABLE `sts_nextend2_section_storage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_nextend2_smartslider3_generators`
--

DROP TABLE IF EXISTS `sts_nextend2_smartslider3_generators`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_nextend2_smartslider3_generators` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group` varchar(254) NOT NULL,
  `type` varchar(254) NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_nextend2_smartslider3_generators`
--

LOCK TABLES `sts_nextend2_smartslider3_generators` WRITE;
/*!40000 ALTER TABLE `sts_nextend2_smartslider3_generators` DISABLE KEYS */;
/*!40000 ALTER TABLE `sts_nextend2_smartslider3_generators` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_nextend2_smartslider3_sliders`
--

DROP TABLE IF EXISTS `sts_nextend2_smartslider3_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_nextend2_smartslider3_sliders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `alias` varchar(255) DEFAULT NULL,
  `title` varchar(100) NOT NULL,
  `type` varchar(30) NOT NULL,
  `params` mediumtext NOT NULL,
  `time` datetime NOT NULL,
  `thumbnail` varchar(255) NOT NULL,
  `ordering` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_nextend2_smartslider3_sliders`
--

LOCK TABLES `sts_nextend2_smartslider3_sliders` WRITE;
/*!40000 ALTER TABLE `sts_nextend2_smartslider3_sliders` DISABLE KEYS */;
INSERT INTO `sts_nextend2_smartslider3_sliders` VALUES (1,NULL,'Sample Slider','simple','{\"controlsScroll\":\"0\",\"controlsDrag\":\"1\",\"controlsTouch\":\"horizontal\",\"controlsKeyboard\":\"1\",\"thumbnail\":\"\",\"align\":\"normal\",\"backgroundMode\":\"fill\",\"animation\":\"horizontal\",\"animation-duration\":\"600\",\"animation-delay\":\"0\",\"animation-easing\":\"easeOutQuad\",\"animation-parallax-overlap\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"normal\",\"animation-shifted-background-animation\":\"auto\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"carousel\":\"1\",\"background\":\"\",\"background-fixed\":\"0\",\"background-size\":\"cover\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"dynamic-height\":\"0\",\"loop-single-slide\":\"0\",\"padding\":\"0|*|0|*|0|*|0\",\"border-width\":\"0\",\"border-color\":\"3E3E3Eff\",\"border-radius\":\"0\",\"slider-preset\":\"\",\"slider-css\":\"\",\"slide-css\":\"\",\"width\":\"1200\",\"height\":\"600\",\"desktop-portrait-minimum-font-size\":\"1\",\"desktop-landscape\":\"0\",\"desktop-landscape-width\":\"1440\",\"desktop-landscape-height\":\"0\",\"desktop-landscape-minimum-font-size\":\"1\",\"fontsize\":\"16\",\"desktop\":\"1\",\"tablet\":\"1\",\"mobile\":\"1\",\"margin\":\"0|*|0|*|0|*|0\",\"tablet-portrait\":\"0\",\"tablet-portrait-width\":\"800\",\"tablet-portrait-height\":\"0\",\"tablet-portrait-minimum-font-size\":\"1\",\"tablet-landscape\":\"0\",\"tablet-landscape-width\":\"1024\",\"tablet-landscape-height\":\"0\",\"tablet-landscape-minimum-font-size\":\"1\",\"mobile-portrait\":\"0\",\"mobile-portrait-width\":\"440\",\"mobile-portrait-height\":\"0\",\"mobile-portrait-minimum-font-size\":\"1\",\"mobile-landscape\":\"0\",\"mobile-landscape-width\":\"740\",\"mobile-landscape-height\":\"0\",\"mobile-landscape-minimum-font-size\":\"1\",\"responsive-mode\":\"auto\",\"responsiveScaleDown\":\"1\",\"responsiveScaleUp\":\"1\",\"responsiveSliderHeightMin\":\"0\",\"responsiveSliderHeightMax\":\"3000\",\"responsiveSlideWidthMax\":\"3000\",\"autoplay\":\"1\",\"autoplayDuration\":\"8000\",\"autoplayStart\":\"1\",\"autoplayfinish\":\"0|*|loop|*|current\",\"autoplayAllowReStart\":\"0\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"playfirstlayer\":\"1\",\"playonce\":\"0\",\"layer-animation-play-in\":\"end\",\"layer-animation-play-mode\":\"skippable\",\"parallax-enabled\":\"1\",\"parallax-enabled-mobile\":\"0\",\"parallax-3d\":\"0\",\"parallax-animate\":\"1\",\"parallax-horizontal\":\"mouse\",\"parallax-vertical\":\"mouse\",\"parallax-mouse-origin\":\"slider\",\"parallax-scroll-move\":\"both\",\"perspective\":\"1000\",\"imageload\":\"0\",\"imageloadNeighborSlides\":\"0\",\"optimize\":\"0\",\"optimize-quality\":\"70\",\"optimize-background-image-custom\":\"0\",\"optimize-background-image-width\":\"800\",\"optimize-background-image-height\":\"600\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"layer-image-optimize\":\"0\",\"layer-image-tablet\":\"50\",\"layer-image-mobile\":\"30\",\"layer-image-base64\":\"0\",\"layer-image-base64-size\":\"5\",\"playWhenVisible\":\"1\",\"fadeOnLoad\":\"1\",\"fadeOnScroll\":\"0\",\"spinner\":\"simpleWhite\",\"custom-spinner\":\"\",\"custom-spinner-width\":\"100\",\"custom-spinner-height\":\"100\",\"custom-display\":\"1\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"randomize\":\"0\",\"randomizeFirst\":\"0\",\"randomize-cache\":\"1\",\"variations\":\"5\",\"maximumslidecount\":\"1000\",\"global-lightbox\":\"0\",\"global-lightbox-label\":\"0\",\"maintain-session\":\"0\",\"blockrightclick\":\"0\",\"overflow-hidden-page\":\"0\",\"bg-parallax-tablet\":\"1\",\"bg-parallax-mobile\":\"1\",\"callbacks\":\"\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-display-desktop\":\"1\",\"widget-arrow-display-tablet\":\"1\",\"widget-arrow-display-mobile\":\"1\",\"widget-arrow-exclude-slides\":\"\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-responsive-desktop\":\"1\",\"widget-arrow-responsive-tablet\":\"0.7\",\"widget-arrow-responsive-mobile\":\"0.5\",\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous\":\"$ss$/plugins/widgetarrow/image/image/previous/thin-horizontal.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-mirror\":\"1\",\"widget-arrow-next-image\":\"\",\"widget-arrow-next\":\"$ss$/plugins/widgetarrow/image/image/next/thin-horizontal.svg\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":\"0\",\"widget-arrow-next-hover-color\":\"ffffffcc\",\"widgetbullet\":\"transition\",\"widget-bullet-display-desktop\":\"1\",\"widget-bullet-display-tablet\":\"1\",\"widget-bullet-display-mobile\":\"1\",\"widget-bullet-exclude-slides\":\"\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-thumbnail-show-image\":\"1\",\"widget-bullet-thumbnail-width\":\"120\",\"widget-bullet-thumbnail-height\":\"81\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDsifV19\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-bullet-position-mode\":\"simple\",\"widget-bullet-position-area\":\"12\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-offset\":\"10\",\"widget-bullet-position-horizontal\":\"left\",\"widget-bullet-position-horizontal-position\":\"0\",\"widget-bullet-position-horizontal-unit\":\"px\",\"widget-bullet-position-vertical\":\"top\",\"widget-bullet-position-vertical-position\":\"0\",\"widget-bullet-position-vertical-unit\":\"px\",\"widget-bullet-action\":\"click\",\"widget-bullet-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwYWIiLCJwYWRkaW5nIjoiNXwqfDV8Knw1fCp8NXwqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiI1MCIsImV4dHJhIjoibWFyZ2luOiA0cHg7In0seyJleHRyYSI6IiIsImJhY2tncm91bmRjb2xvciI6IjA5YjQ3NGZmIn1dfQ==\",\"widget-bullet-bar\":\"\",\"widget-bullet-bar-full-size\":\"0\",\"widget-bullet-align\":\"center\",\"widget-bullet-orientation\":\"auto\",\"widget-bullet-overlay\":\"0\",\"widgetautoplay\":\"disabled\",\"widget-autoplay-display-desktop\":\"1\",\"widget-autoplay-display-tablet\":\"1\",\"widget-autoplay-display-mobile\":\"1\",\"widget-autoplay-exclude-slides\":\"\",\"widget-autoplay-display-hover\":\"0\",\"widgetindicator\":\"disabled\",\"widget-indicator-display-desktop\":\"1\",\"widget-indicator-display-tablet\":\"1\",\"widget-indicator-display-mobile\":\"1\",\"widget-indicator-exclude-slides\":\"\",\"widget-indicator-display-hover\":\"0\",\"widgetbar\":\"disabled\",\"widget-bar-display-desktop\":\"1\",\"widget-bar-display-tablet\":\"1\",\"widget-bar-display-mobile\":\"1\",\"widget-bar-exclude-slides\":\"\",\"widget-bar-display-hover\":\"0\",\"widgetthumbnail\":\"disabled\",\"widget-thumbnail-display-desktop\":\"1\",\"widget-thumbnail-display-tablet\":\"1\",\"widget-thumbnail-display-mobile\":\"1\",\"widget-thumbnail-exclude-slides\":\"\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-show-image\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widgetshadow\":\"disabled\",\"widget-shadow-display-desktop\":\"1\",\"widget-shadow-display-tablet\":\"1\",\"widget-shadow-display-mobile\":\"1\",\"widget-shadow-exclude-slides\":\"\",\"widgetfullscreen\":\"disabled\",\"widget-fullscreen-display-desktop\":\"1\",\"widget-fullscreen-display-tablet\":\"1\",\"widget-fullscreen-display-mobile\":\"1\",\"widget-fullscreen-exclude-slides\":\"\",\"widget-fullscreen-display-hover\":\"0\",\"widgethtml\":\"disabled\",\"widget-html-display-desktop\":\"1\",\"widget-html-display-tablet\":\"1\",\"widget-html-display-mobile\":\"1\",\"widget-html-exclude-slides\":\"\",\"widget-html-display-hover\":\"0\",\"widgets\":\"arrow\"}','2015-11-01 14:14:20','',0);
/*!40000 ALTER TABLE `sts_nextend2_smartslider3_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_nextend2_smartslider3_sliders_xref`
--

DROP TABLE IF EXISTS `sts_nextend2_smartslider3_sliders_xref`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_nextend2_smartslider3_sliders_xref` (
  `group_id` int(11) NOT NULL,
  `slider_id` int(11) NOT NULL,
  `ordering` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`group_id`,`slider_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_nextend2_smartslider3_sliders_xref`
--

LOCK TABLES `sts_nextend2_smartslider3_sliders_xref` WRITE;
/*!40000 ALTER TABLE `sts_nextend2_smartslider3_sliders_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `sts_nextend2_smartslider3_sliders_xref` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_nextend2_smartslider3_slides`
--

DROP TABLE IF EXISTS `sts_nextend2_smartslider3_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_nextend2_smartslider3_slides` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) NOT NULL,
  `slider` int(11) NOT NULL,
  `publish_up` datetime NOT NULL,
  `publish_down` datetime NOT NULL,
  `published` tinyint(1) NOT NULL,
  `first` int(11) NOT NULL,
  `slide` longtext DEFAULT NULL,
  `description` text NOT NULL,
  `thumbnail` varchar(255) NOT NULL,
  `params` text NOT NULL,
  `ordering` int(11) NOT NULL,
  `generator_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_nextend2_smartslider3_slides`
--

LOCK TABLES `sts_nextend2_smartslider3_slides` WRITE;
/*!40000 ALTER TABLE `sts_nextend2_smartslider3_slides` DISABLE KEYS */;
INSERT INTO `sts_nextend2_smartslider3_slides` VALUES (1,'Slide One',1,'2015-11-01 12:27:34','2025-11-11 12:27:34',1,0,'[{\"type\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":60,\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"10|*|0|*|10|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Martin Dwyer\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Martin Dwyer\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxLjUiLCJib2xkIjowLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJjZW50ZXIiLCJsZXR0ZXJzcGFjaW5nIjoiMTBweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6InVwcGVyY2FzZSJ9LHsiZXh0cmEiOiIifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmZjYyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjAuNHwqfDF8KnwwLjR8KnwxfCp8ZW0iLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}},{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Application Developer\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Application Developer\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}}]}]','','https://smartslider3.com/sample/developerthumbnail.jpg','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"https://smartslider3.com/sample/programmer.jpg\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"#\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\",\"version\":\"3.2.0\"}',0,0),(2,'Slide Two',1,'2015-11-01 12:27:34','2025-11-11 12:27:34',1,0,'[{\"type\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":60,\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"10|*|0|*|10|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Rachel Wright\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Rachel Wright\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxLjUiLCJib2xkIjowLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJjZW50ZXIiLCJsZXR0ZXJzcGFjaW5nIjoiMTBweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6InVwcGVyY2FzZSJ9LHsiZXh0cmEiOiIifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmZjYyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjAuNHwqfDF8KnwwLjR8KnwxfCp8ZW0iLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}},{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Art Director & Photographer\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Art Director & Photographer\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}}]}]','','https://smartslider3.com/sample/artdirectorthumbnail.jpg','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"https://smartslider3.com/sample/free1.jpg\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"#\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\",\"version\":\"3.2.0\"}',1,0),(3,'Slide Three',1,'2015-11-01 12:27:34','2025-11-11 12:27:34',1,0,'[{\"type\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":60,\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"10|*|0|*|10|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Andrew Butler\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Andrew Butler\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxLjUiLCJib2xkIjowLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJjZW50ZXIiLCJsZXR0ZXJzcGFjaW5nIjoiMTBweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6InVwcGVyY2FzZSJ9LHsiZXh0cmEiOiIifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmZjYyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjAuNHwqfDF8KnwwLjR8KnwxfCp8ZW0iLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}},{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Photographer & Illustrator\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Photographer & Illustrator\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}}]}]','','https://smartslider3.com/sample/photographerthumbnail.jpg','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"https://smartslider3.com/sample/photographer.jpg\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"#\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\",\"version\":\"3.2.0\"}',2,0);
/*!40000 ALTER TABLE `sts_nextend2_smartslider3_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_options`
--

DROP TABLE IF EXISTS `sts_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_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=33663 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_options`
--

LOCK TABLES `sts_options` WRITE;
/*!40000 ALTER TABLE `sts_options` DISABLE KEYS */;
INSERT INTO `sts_options` VALUES (1,'siteurl','https://stadsig.co.za','yes'),(2,'home','https://stadsig.co.za','yes'),(3,'blogname','STADSIG','yes'),(4,'blogdescription','STADSIG PRIVATE COUNTRY ESTATE WELLINGTON','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@stadsig.co.za','yes'),(7,'start_of_week','0','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:295:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:15:\"divi_overlay/?$\";s:32:\"index.php?post_type=divi_overlay\";s:45:\"divi_overlay/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=divi_overlay&feed=$matches[1]\";s:40:\"divi_overlay/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=divi_overlay&feed=$matches[1]\";s:32:\"divi_overlay/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=divi_overlay&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: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: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: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:38:\"frm_styles/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"frm_styles/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"frm_styles/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"frm_styles/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"frm_styles/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"frm_styles/([^/]+)/trackback/?$\";s:37:\"index.php?frm_styles=$matches[1]&tb=1\";s:39:\"frm_styles/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?frm_styles=$matches[1]&paged=$matches[2]\";s:46:\"frm_styles/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?frm_styles=$matches[1]&cpage=$matches[2]\";s:35:\"frm_styles/([^/]+)/entry(/(.*))?/?$\";s:50:\"index.php?frm_styles=$matches[1]&entry=$matches[3]\";s:35:\"frm_styles/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?frm_styles=$matches[1]&page=$matches[2]\";s:27:\"frm_styles/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"frm_styles/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"frm_styles/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"frm_styles/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"frm_styles/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"frm_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?frm_tag=$matches[1]&feed=$matches[2]\";s:43:\"frm_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?frm_tag=$matches[1]&feed=$matches[2]\";s:36:\"frm_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?frm_tag=$matches[1]&paged=$matches[2]\";s:18:\"frm_tag/([^/]+)/?$\";s:29:\"index.php?frm_tag=$matches[1]\";s:39:\"frm_display/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"frm_display/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"frm_display/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"frm_display/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"frm_display/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"frm_display/([^/]+)/trackback/?$\";s:38:\"index.php?frm_display=$matches[1]&tb=1\";s:40:\"frm_display/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?frm_display=$matches[1]&paged=$matches[2]\";s:47:\"frm_display/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?frm_display=$matches[1]&cpage=$matches[2]\";s:36:\"frm_display/([^/]+)/entry(/(.*))?/?$\";s:51:\"index.php?frm_display=$matches[1]&entry=$matches[3]\";s:36:\"frm_display/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?frm_display=$matches[1]&page=$matches[2]\";s:28:\"frm_display/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"frm_display/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"frm_display/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"frm_display/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"frm_display/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=layout_category&term=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=layout_category&term=$matches[1]&feed=$matches[2]\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?taxonomy=layout_category&term=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:51:\"index.php?taxonomy=layout_category&term=$matches[1]\";s:52:\"layout_pack/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_pack&term=$matches[1]&feed=$matches[2]\";s:47:\"layout_pack/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_pack&term=$matches[1]&feed=$matches[2]\";s:40:\"layout_pack/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?taxonomy=layout_pack&term=$matches[1]&paged=$matches[2]\";s:22:\"layout_pack/([^/]+)/?$\";s:47:\"index.php?taxonomy=layout_pack&term=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_type&term=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_type&term=$matches[1]&feed=$matches[2]\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?taxonomy=layout_type&term=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:47:\"index.php?taxonomy=layout_type&term=$matches[1]\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?taxonomy=scope&term=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?taxonomy=scope&term=$matches[1]&feed=$matches[2]\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?taxonomy=scope&term=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:41:\"index.php?taxonomy=scope&term=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=module_width&term=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=module_width&term=$matches[1]&feed=$matches[2]\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?taxonomy=module_width&term=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:48:\"index.php?taxonomy=module_width&term=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)/entry(/(.*))?/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&entry=$matches[3]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";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:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)/entry(/(.*))?/?$\";s:47:\"index.php?project=$matches[1]&entry=$matches[3]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$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:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:35:\"frm_api/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"frm_api/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"frm_api/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"frm_api/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"frm_api/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"frm_api/([^/]+)/trackback/?$\";s:34:\"index.php?frm_api=$matches[1]&tb=1\";s:36:\"frm_api/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?frm_api=$matches[1]&paged=$matches[2]\";s:43:\"frm_api/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?frm_api=$matches[1]&cpage=$matches[2]\";s:32:\"frm_api/([^/]+)/entry(/(.*))?/?$\";s:47:\"index.php?frm_api=$matches[1]&entry=$matches[3]\";s:32:\"frm_api/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?frm_api=$matches[1]&page=$matches[2]\";s:24:\"frm_api/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"frm_api/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"frm_api/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"frm_api/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"frm_api/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"frm_form_actions/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"frm_form_actions/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"frm_form_actions/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"frm_form_actions/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"frm_form_actions/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"frm_form_actions/([^/]+)/trackback/?$\";s:43:\"index.php?frm_form_actions=$matches[1]&tb=1\";s:45:\"frm_form_actions/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?frm_form_actions=$matches[1]&paged=$matches[2]\";s:52:\"frm_form_actions/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?frm_form_actions=$matches[1]&cpage=$matches[2]\";s:41:\"frm_form_actions/([^/]+)/entry(/(.*))?/?$\";s:56:\"index.php?frm_form_actions=$matches[1]&entry=$matches[3]\";s:41:\"frm_form_actions/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?frm_form_actions=$matches[1]&page=$matches[2]\";s:33:\"frm_form_actions/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"frm_form_actions/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"frm_form_actions/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"frm_form_actions/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"frm_form_actions/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"divi_overlay/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"divi_overlay/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"divi_overlay/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"divi_overlay/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"divi_overlay/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"divi_overlay/(.+?)/trackback/?$\";s:39:\"index.php?divi_overlay=$matches[1]&tb=1\";s:51:\"divi_overlay/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?divi_overlay=$matches[1]&feed=$matches[2]\";s:46:\"divi_overlay/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?divi_overlay=$matches[1]&feed=$matches[2]\";s:39:\"divi_overlay/(.+?)/page/?([0-9]{1,})/?$\";s:52:\"index.php?divi_overlay=$matches[1]&paged=$matches[2]\";s:46:\"divi_overlay/(.+?)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?divi_overlay=$matches[1]&cpage=$matches[2]\";s:35:\"divi_overlay/(.+?)/entry(/(.*))?/?$\";s:52:\"index.php?divi_overlay=$matches[1]&entry=$matches[3]\";s:35:\"divi_overlay/(.+?)(?:/([0-9]+))?/?$\";s:51:\"index.php?divi_overlay=$matches[1]&page=$matches[2]\";s:44:\"et_theme_builder/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_theme_builder/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_theme_builder/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"et_theme_builder/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_theme_builder&name=$matches[1]&tb=1\";s:45:\"et_theme_builder/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&paged=$matches[2]\";s:52:\"et_theme_builder/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_theme_builder/([^/]+)/entry(/(.*))?/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&entry=$matches[3]\";s:41:\"et_theme_builder/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_theme_builder&name=$matches[1]&page=$matches[2]\";s:33:\"et_theme_builder/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_theme_builder/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_theme_builder/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"et_template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"et_template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"et_template/([^/]+)/trackback/?$\";s:53:\"index.php?post_type=et_template&name=$matches[1]&tb=1\";s:40:\"et_template/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&paged=$matches[2]\";s:47:\"et_template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&cpage=$matches[2]\";s:36:\"et_template/([^/]+)/entry(/(.*))?/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&entry=$matches[3]\";s:36:\"et_template/([^/]+)(?:/([0-9]+))?/?$\";s:65:\"index.php?post_type=et_template&name=$matches[1]&page=$matches[2]\";s:28:\"et_template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"et_template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"et_template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"et_header_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_header_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_header_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"et_header_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_header_layout&name=$matches[1]&tb=1\";s:45:\"et_header_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_header_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_header_layout/([^/]+)/entry(/(.*))?/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&entry=$matches[3]\";s:41:\"et_header_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_header_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_header_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_header_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_header_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"et_body_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"et_body_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"et_body_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_body_layout/([^/]+)/trackback/?$\";s:56:\"index.php?post_type=et_body_layout&name=$matches[1]&tb=1\";s:43:\"et_body_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&paged=$matches[2]\";s:50:\"et_body_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&cpage=$matches[2]\";s:39:\"et_body_layout/([^/]+)/entry(/(.*))?/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&entry=$matches[3]\";s:39:\"et_body_layout/([^/]+)(?:/([0-9]+))?/?$\";s:68:\"index.php?post_type=et_body_layout&name=$matches[1]&page=$matches[2]\";s:31:\"et_body_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"et_body_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"et_body_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"et_footer_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_footer_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_footer_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"et_footer_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_footer_layout&name=$matches[1]&tb=1\";s:45:\"et_footer_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_footer_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_footer_layout/([^/]+)/entry(/(.*))?/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&entry=$matches[3]\";s:41:\"et_footer_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_footer_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_footer_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_footer_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_footer_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=58&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: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: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: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: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: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: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: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:\"(.?.+?)/entry(/(.*))?/?$\";s:48:\"index.php?pagename=$matches[1]&entry=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)/entry(/(.*))?/?$\";s:44:\"index.php?name=$matches[1]&entry=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:12:{i:0;s:29:\"a3-lazy-load/a3-lazy-load.php\";i:1;s:31:\"divi-overlays/divi-overlays.php\";i:2;s:41:\"divi-stop-stacking/divi-stop-stacking.php\";i:4;s:33:\"formidable-api/formidable-api.php\";i:5;s:33:\"formidable-pro/formidable-pro.php\";i:6;s:51:\"formidable-registration/formidable-registration.php\";i:7;s:39:\"formidable-zapier/formidable-zapier.php\";i:8;s:25:\"formidable/formidable.php\";i:9;s:13:\"mhmm/mhmm.php\";i:10;s:19:\"monarch/monarch.php\";i:11;s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";i:12;s:27:\"wp-asset-clean-up/wpacu.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:64:\"/home/stadsig/public_html/wp-content/themes/Divi-child/style.css\";i:1;s:68:\"/home/stadsig/public_html/wp-content/themes/Divi-child/functions.php\";i:2;s:65:\"/home/stadsig/public_html/wp-content/themes/Divi-child/header.php\";i:4;s:71:\"/home/stadsig/public_html/wp-content/themes/Divi-child/falkor-blurb.css\";i:5;s:0:\"\";}','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi-child','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','47018','yes'),(49,'uploads_use_yearmonth_folders','','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:3:{s:42:\"peters-login-redirect/wplogin_redirect.php\";s:13:\"rul_uninstall\";s:27:\"wp-optimize/wp-optimize.php\";s:21:\"wpo_uninstall_actions\";s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";a:2:{i:0;s:28:\"\\ShortPixel\\ShortPixelPlugin\";i:1;s:15:\"uninstallPlugin\";}}','no'),(82,'timezone_string','Africa/Johannesburg','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','58','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','50','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'sts_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:86:{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:14:\"frm_view_forms\";b:1;s:14:\"frm_edit_forms\";b:1;s:16:\"frm_delete_forms\";b:1;s:19:\"frm_change_settings\";b:1;s:16:\"frm_view_entries\";b:1;s:18:\"frm_delete_entries\";b:1;s:18:\"frm_create_entries\";b:1;s:16:\"frm_edit_entries\";b:1;s:16:\"frm_view_reports\";b:1;s:17:\"frm_edit_displays\";b:1;s:10:\"copy_posts\";b:1;s:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;s:17:\"et_support_center\";b:1;s:24:\"et_support_center_system\";b:1;s:31:\"et_support_center_remote_access\";b:1;s:31:\"et_support_center_documentation\";b:1;s:27:\"et_support_center_safe_mode\";b:1;s:22:\"et_support_center_logs\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:43:{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:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'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'),(96,'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'),(97,'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'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:16:{i:1588164791;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:1588167088;a:1:{s:29:\"wpo_smush_clear_backup_images\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1588174254;a:1:{s:21:\"wpo_plugin_cron_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1588196005;a:1:{s:27:\"puc_cron_check_updates-mhmm\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1588200745;a:1:{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;}}}i:1588200746;a:2:{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:1588235512;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:1588243992;a:1:{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;}}}i:1588243993;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1588244888;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:1588247081;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1588247083;a:1:{s:21:\"et_builder_fonts_cron\";a:1:{s:32:\"552cbb9d6515dadbbc4718ad75114f08\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{s:8:\"interval\";s:5:\"daily\";}s:8:\"interval\";i:86400;}}}i:1588251692;a:1:{s:29:\"wpacu_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1588590051;a:1:{s:21:\"formidable_send_usage\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1588762661;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}','yes'),(110,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1531738658;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(124,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:18:\"info@stadsig.co.za\";s:7:\"version\";s:5:\"5.3.2\";s:9:\"timestamp\";i:1576709957;}','no'),(145,'current_theme','Divi Child','yes'),(146,'theme_mods_Divi','a:6:{i:0;b:0;s:18:\"custom_css_post_id\";i:5;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:0:{}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1531742340;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}','yes'),(147,'theme_switched','','yes'),(148,'et_pb_cache_notice','a:1:{s:4:\"3.10\";s:6:\"ignore\";}','yes'),(153,'et_core_version','4.4.3','yes'),(155,'et_divi','a:300:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:25:\"3_0_flush_rewrite_rules_2\";s:4:\"done\";s:31:\"divi_previous_installed_version\";s:3:\"4.2\";s:29:\"divi_latest_installed_version\";s:5:\"4.4.3\";s:27:\"divi_skip_font_subset_force\";b:1;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:21:\"et_pb_static_css_file\";s:3:\"off\";s:19:\"et_pb_css_in_footer\";s:2:\"on\";s:25:\"et_pb_product_tour_global\";s:3:\"off\";s:19:\"product_tour_status\";a:1:{i:1;s:3:\"off\";}s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:32:\"et_fb_pref_hide_disabled_modules\";s:4:\"true\";s:28:\"et_fb_pref_history_intervals\";i:1;s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:5:\"false\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:1114;s:33:\"et_fb_pref_modal_dimension_height\";i:539;s:27:\"et_fb_pref_modal_position_x\";i:458;s:27:\"et_fb_pref_modal_position_y\";i:0;s:24:\"et_fb_pref_toolbar_click\";s:5:\"false\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:20:\"divi_ddpl_user_check\";s:2:\"on\";s:19:\"divi_ddpl_user_role\";s:13:\"administrator\";s:13:\"wp_custom_css\";s:0:\"\";s:19:\"post_meta_font_size\";s:2:\"14\";s:16:\"post_meta_height\";s:1:\"1\";s:17:\"post_meta_spacing\";s:1:\"0\";s:15:\"post_meta_style\";s:0:\"\";s:21:\"post_header_font_size\";s:2:\"30\";s:18:\"post_header_height\";s:1:\"1\";s:19:\"post_header_spacing\";s:1:\"0\";s:17:\"post_header_style\";s:0:\"\";s:12:\"boxed_layout\";s:0:\"\";s:13:\"content_width\";s:4:\"1080\";s:12:\"gutter_width\";s:1:\"3\";s:17:\"use_sidebar_width\";s:0:\"\";s:13:\"sidebar_width\";s:2:\"21\";s:15:\"section_padding\";s:1:\"4\";s:20:\"phone_section_height\";s:2:\"50\";s:21:\"tablet_section_height\";s:2:\"50\";s:11:\"row_padding\";s:1:\"2\";s:16:\"phone_row_height\";s:2:\"30\";s:17:\"tablet_row_height\";s:2:\"30\";s:16:\"cover_background\";s:2:\"on\";s:14:\"body_font_size\";i:13;s:16:\"body_font_height\";s:3:\"1.7\";s:20:\"phone_body_font_size\";s:2:\"14\";s:21:\"tablet_body_font_size\";s:2:\"14\";s:16:\"body_header_size\";s:2:\"30\";s:19:\"body_header_spacing\";s:1:\"0\";s:18:\"body_header_height\";s:1:\"1\";s:17:\"body_header_style\";s:0:\"\";s:22:\"phone_header_font_size\";s:2:\"30\";s:23:\"tablet_header_font_size\";s:2:\"30\";s:12:\"heading_font\";s:7:\"Tajawal\";s:9:\"body_font\";s:7:\"Tajawal\";s:10:\"link_color\";s:7:\"#232323\";s:10:\"font_color\";s:7:\"#232323\";s:12:\"header_color\";s:7:\"#232323\";s:12:\"accent_color\";s:7:\"#2ea3f2\";s:13:\"color_schemes\";s:4:\"none\";s:12:\"header_style\";s:4:\"left\";s:12:\"vertical_nav\";s:0:\"\";s:24:\"vertical_nav_orientation\";s:4:\"left\";s:8:\"hide_nav\";s:0:\"\";s:24:\"show_header_social_icons\";s:0:\"\";s:16:\"show_search_icon\";s:2:\"on\";s:22:\"slide_nav_show_top_bar\";s:2:\"on\";s:15:\"slide_nav_width\";s:3:\"320\";s:19:\"slide_nav_font_size\";s:2:\"14\";s:23:\"slide_nav_top_font_size\";s:2:\"14\";s:24:\"fullscreen_nav_font_size\";s:2:\"30\";s:28:\"fullscreen_nav_top_font_size\";s:2:\"18\";s:22:\"slide_nav_font_spacing\";s:1:\"0\";s:14:\"slide_nav_font\";s:4:\"none\";s:20:\"slide_nav_font_style\";s:0:\"\";s:12:\"slide_nav_bg\";s:7:\"#2ea3f2\";s:21:\"slide_nav_links_color\";s:7:\"#ffffff\";s:28:\"slide_nav_links_color_active\";s:7:\"#ffffff\";s:19:\"slide_nav_top_color\";s:21:\"rgba(255,255,255,0.6)\";s:16:\"slide_nav_search\";s:21:\"rgba(255,255,255,0.6)\";s:19:\"slide_nav_search_bg\";s:15:\"rgba(0,0,0,0.2)\";s:13:\"nav_fullwidth\";s:0:\"\";s:17:\"hide_primary_logo\";s:0:\"\";s:11:\"menu_height\";s:2:\"66\";s:11:\"logo_height\";s:2:\"54\";s:15:\"menu_margin_top\";s:1:\"0\";s:21:\"primary_nav_font_size\";i:12;s:24:\"primary_nav_font_spacing\";s:1:\"0\";s:16:\"primary_nav_font\";s:4:\"none\";s:22:\"primary_nav_font_style\";s:0:\"\";s:23:\"secondary_nav_font_size\";s:2:\"12\";s:23:\"secondary_nav_fullwidth\";s:0:\"\";s:26:\"secondary_nav_font_spacing\";s:1:\"0\";s:18:\"secondary_nav_font\";s:4:\"none\";s:24:\"secondary_nav_font_style\";s:0:\"\";s:9:\"menu_link\";s:7:\"#232323\";s:16:\"hide_mobile_logo\";s:0:\"\";s:16:\"mobile_menu_link\";s:15:\"rgba(0,0,0,0.6)\";s:16:\"menu_link_active\";s:7:\"#2ea3f2\";s:14:\"primary_nav_bg\";s:7:\"#ffffff\";s:23:\"primary_nav_dropdown_bg\";s:7:\"#ffffff\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#2ea3f2\";s:31:\"primary_nav_dropdown_link_color\";s:15:\"rgba(0,0,0,0.7)\";s:30:\"primary_nav_dropdown_animation\";s:4:\"fade\";s:21:\"mobile_primary_nav_bg\";s:7:\"#ffffff\";s:16:\"secondary_nav_bg\";s:7:\"#2ea3f2\";s:28:\"secondary_nav_text_color_new\";s:7:\"#ffffff\";s:25:\"secondary_nav_dropdown_bg\";s:7:\"#2ea3f2\";s:33:\"secondary_nav_dropdown_link_color\";s:7:\"#ffffff\";s:32:\"secondary_nav_dropdown_animation\";s:4:\"fade\";s:22:\"primary_nav_text_color\";s:4:\"dark\";s:24:\"secondary_nav_text_color\";s:5:\"light\";s:15:\"hide_fixed_logo\";s:0:\"\";s:21:\"minimized_menu_height\";s:2:\"40\";s:27:\"fixed_primary_nav_font_size\";s:2:\"14\";s:20:\"fixed_primary_nav_bg\";s:7:\"#ffffff\";s:22:\"fixed_secondary_nav_bg\";s:7:\"#2ea3f2\";s:15:\"fixed_menu_link\";s:15:\"rgba(0,0,0,0.6)\";s:25:\"fixed_secondary_menu_link\";s:7:\"#ffffff\";s:22:\"fixed_menu_link_active\";s:7:\"#2ea3f2\";s:12:\"phone_number\";s:0:\"\";s:12:\"header_email\";s:0:\"\";s:24:\"show_footer_social_icons\";s:2:\"on\";s:14:\"footer_columns\";s:1:\"4\";s:9:\"footer_bg\";s:7:\"#222222\";s:23:\"widget_header_font_size\";d:18;s:24:\"widget_header_font_style\";b:0;s:21:\"widget_body_font_size\";s:2:\"14\";s:23:\"widget_body_line_height\";s:3:\"1.7\";s:22:\"widget_body_font_style\";b:0;s:26:\"footer_widget_header_color\";s:7:\"#2ea3f2\";s:26:\"footer_widget_bullet_color\";s:7:\"#2ea3f2\";s:28:\"footer_menu_background_color\";s:22:\"rgba(255,255,255,0.05)\";s:22:\"footer_menu_text_color\";s:7:\"#bbbbbb\";s:29:\"footer_menu_active_link_color\";s:7:\"#2ea3f2\";s:26:\"footer_menu_letter_spacing\";s:1:\"0\";s:22:\"footer_menu_font_style\";b:0;s:21:\"footer_menu_font_size\";s:2:\"14\";s:27:\"bottom_bar_background_color\";s:16:\"rgba(0,0,0,0.32)\";s:21:\"bottom_bar_text_color\";s:7:\"#666666\";s:21:\"bottom_bar_font_style\";b:0;s:20:\"bottom_bar_font_size\";s:2:\"14\";s:27:\"bottom_bar_social_icon_size\";s:2:\"24\";s:28:\"bottom_bar_social_icon_color\";s:7:\"#666666\";s:29:\"disable_custom_footer_credits\";s:0:\"\";s:21:\"custom_footer_credits\";s:0:\"\";s:21:\"all_buttons_font_size\";s:2:\"20\";s:22:\"all_buttons_text_color\";s:7:\"#ffffff\";s:20:\"all_buttons_bg_color\";s:13:\"rgba(0,0,0,0)\";s:24:\"all_buttons_border_width\";s:1:\"2\";s:24:\"all_buttons_border_color\";s:7:\"#ffffff\";s:25:\"all_buttons_border_radius\";s:1:\"3\";s:19:\"all_buttons_spacing\";s:1:\"0\";s:22:\"all_buttons_font_style\";s:0:\"\";s:16:\"all_buttons_font\";s:4:\"none\";s:16:\"all_buttons_icon\";s:3:\"yes\";s:25:\"all_buttons_selected_icon\";s:1:\"5\";s:22:\"all_buttons_icon_color\";s:7:\"#ffffff\";s:26:\"all_buttons_icon_placement\";s:5:\"right\";s:22:\"all_buttons_icon_hover\";s:3:\"yes\";s:28:\"all_buttons_text_color_hover\";s:7:\"#ffffff\";s:26:\"all_buttons_bg_color_hover\";s:21:\"rgba(255,255,255,0.2)\";s:30:\"all_buttons_border_color_hover\";s:13:\"rgba(0,0,0,0)\";s:31:\"all_buttons_border_radius_hover\";s:1:\"3\";s:25:\"all_buttons_spacing_hover\";s:1:\"0\";s:27:\"et_pb_post_type_integration\";a:4:{s:4:\"post\";s:2:\"on\";s:4:\"page\";s:2:\"on\";s:7:\"project\";s:3:\"off\";s:12:\"divi_overlay\";s:3:\"off\";}s:9:\"divi_logo\";s:0:\"\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:2:\"on\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:5:\"false\";s:21:\"divi_show_google_icon\";s:5:\"false\";s:18:\"divi_show_rss_icon\";s:5:\"false\";s:17:\"divi_facebook_url\";s:49:\"https://www.facebook.com/Stadsig-865301740343013/\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:2:\"on\";s:16:\"divi_back_to_top\";s:2:\"on\";s:18:\"divi_smooth_scroll\";s:2:\"on\";s:25:\"divi_disable_translations\";s:5:\"false\";s:27:\"divi_minify_combine_scripts\";s:2:\"on\";s:26:\"divi_minify_combine_styles\";s:2:\"on\";s:15:\"divi_custom_css\";s:770:\"body {\r\n	font-weight:200 !important;\r\n}\r\n\r\nh1 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n\r\nh2 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n\r\nh3 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n\r\nh4 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n\r\nh5 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n\r\nh6 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n.et_pb_map {\r\n	max-height:550px !important;\r\n	height:550px !important;\r\n}\r\n\r\n#footer-bottom {\r\n	display:none;\r\n}\r\n\r\nsup {\r\n	vertical-align: sub; \r\n	font-size: smaller;\r\n}\r\n\r\n.et_pb_image_1 {\r\n    background-color: rgba(0,0,0,0);\r\n    max-width: 100%;\r\n	width:100% !important;\r\n    text-align: center;\r\n}\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:5:\"false\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:502:\"<link href=\"https://fonts.googleapis.com/css?family=Tajawal:300,400,500,700\" rel=\"stylesheet\">\r\n\r\n<script>\r\njQuery(document).ready(function ($){\r\n    $(window).scroll (function() {\r\n        var scroll = $(window).scrollTop();\r\n            if (scroll >= 50) {\r\n                $(\"#logomain\").hide();\r\n            } \r\n			else {\r\n                $(\"#logomain\").show();\r\n            }\r\n    })\r\n});\r\n</script>\r\n<script>\r\n    setTimeout(function() {\r\n        $(\"#logomain\").hide()\r\n    }, 5000);\r\n</script>\r\n\";s:21:\"divi_integration_body\";s:245:\"<!-- Google Tag Manager (noscript) -->\r\n<noscript><iframe src=\"https://www.googletagmanager.com/ns.html?id=GTM-MQ63V39\"\r\nheight=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript>\r\n<!-- End Google Tag Manager (noscript) -->\";s:27:\"divi_integration_single_top\";s:245:\"<!-- Google Tag Manager (noscript) -->\r\n<noscript><iframe src=\"https://www.googletagmanager.com/ns.html?id=GTM-MQ63V39\"\r\nheight=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript>\r\n<!-- End Google Tag Manager (noscript) -->\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:12:\"divi_favicon\";s:0:\"\";s:30:\"et_flush_rewrite_rules_library\";s:5:\"4.4.3\";s:20:\"et_fb_pref_view_mode\";s:7:\"desktop\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:26:\"divi_bfb_optin_modal_shown\";s:3:\"yes\";s:23:\"builder_custom_defaults\";O:8:\"stdClass\":0:{}s:33:\"customizer_settings_migrated_flag\";b:1;s:34:\"builder_custom_defaults_unmigrated\";b:0;s:24:\"divi_show_instagram_icon\";s:5:\"false\";s:18:\"divi_instagram_url\";s:1:\"#\";s:24:\"et_enable_classic_editor\";s:2:\"on\";s:28:\"et_fb_pref_limited_view_mode\";s:9:\"wireframe\";s:35:\"et_fb_pref_limited_modal_preference\";s:7:\"default\";s:32:\"et_fb_pref_limited_toolbar_click\";s:5:\"false\";s:34:\"et_fb_pref_limited_toolbar_desktop\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_grid\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_hover\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_phone\";s:4:\"true\";s:33:\"et_fb_pref_limited_toolbar_tablet\";s:4:\"true\";s:36:\"et_fb_pref_limited_toolbar_wireframe\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_zoom\";s:4:\"true\";s:27:\"et_pb_clear_templates_cache\";b:1;s:29:\"divi_enable_responsive_images\";s:2:\"on\";s:12:\"top_bar_font\";s:0:\"\";s:11:\"mobile_font\";s:0:\"\";s:18:\"footer_bottom_font\";s:0:\"\";}','yes'),(156,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(157,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(158,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(159,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(160,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(161,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(162,'et_images_temp_folder','/home/stadsig/public_html/wp-content/uploads/et_temp','yes'),(163,'et_schedule_clean_images_last_time','1601341451','yes'),(164,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(165,'et_google_api_settings','a:3:{s:7:\"api_key\";s:39:\"AIzaSyBXtAydkWUTgoJzFr_rovNllyKFT7lrihU\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";s:16:\"use_google_fonts\";s:2:\"on\";}','yes'),(166,'et_automatic_updates_options','a:2:{s:8:\"username\";s:13:\"randalstewart\";s:7:\"api_key\";s:40:\"39b90a071d79de1fb7b6577192fa737e405942c1\";}','no'),(167,'et_account_status','active','no'),(168,'et_account_status_last_checked','1587544211','no'),(172,'recently_activated','a:1:{s:25:\"duplicator/duplicator.php\";i:1587544766;}','yes'),(176,'_site_transient_et_update_themes','O:8:\"stdClass\":3:{s:7:\"checked\";a:5:{s:10:\"Divi-child\";s:17:\"3.0.44.1494229532\";s:4:\"Divi\";s:5:\"4.4.3\";s:14:\"twentynineteen\";s:3:\"1.5\";s:15:\"twentyseventeen\";s:3:\"2.3\";s:12:\"twentytwenty\";s:3:\"1.2\";}s:8:\"response\";a:0:{}s:12:\"last_checked\";i:1587544356;}','no'),(186,'widget_frm_show_form','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(187,'frm_options','O:11:\"FrmSettings\":38:{s:11:\"option_name\";s:11:\"frm_options\";s:4:\"menu\";s:10:\"Formidable\";s:7:\"mu_menu\";i:0;s:8:\"use_html\";s:1:\"1\";s:10:\"jquery_css\";i:0;s:12:\"accordion_js\";i:0;s:9:\"fade_form\";i:0;s:7:\"old_css\";s:1:\"1\";s:11:\"success_msg\";s:54:\"Your responses were successfully submitted. Thank you!\";s:9:\"blank_msg\";s:27:\"This field cannot be blank.\";s:10:\"unique_msg\";s:26:\"This value must be unique.\";s:11:\"invalid_msg\";s:66:\"There was a problem with your submission. Errors are marked below.\";s:10:\"failed_msg\";s:57:\"We\'re sorry. It looks like you\'ve already submitted that.\";s:12:\"submit_value\";s:6:\"Submit\";s:9:\"login_msg\";s:45:\"You do not have permission to view this form.\";s:16:\"admin_permission\";s:37:\"You do not have permission to do that\";s:8:\"email_to\";s:13:\"[admin_email]\";s:10:\"load_style\";s:7:\"dynamic\";s:12:\"custom_style\";b:1;s:6:\"pubkey\";s:0:\"\";s:7:\"privkey\";s:0:\"\";s:7:\"re_lang\";s:0:\"\";s:7:\"re_type\";s:0:\"\";s:6:\"re_msg\";s:39:\"The reCAPTCHA was not entered correctly\";s:8:\"re_multi\";i:0;s:6:\"no_ips\";i:0;s:12:\"current_form\";i:0;s:8:\"tracking\";s:1:\"1\";s:14:\"frm_view_forms\";a:1:{i:0;s:13:\"administrator\";}s:14:\"frm_edit_forms\";a:1:{i:0;s:13:\"administrator\";}s:16:\"frm_delete_forms\";a:1:{i:0;s:13:\"administrator\";}s:19:\"frm_change_settings\";a:1:{i:0;s:13:\"administrator\";}s:16:\"frm_view_entries\";a:1:{i:0;s:13:\"administrator\";}s:18:\"frm_delete_entries\";a:1:{i:0;s:13:\"administrator\";}s:18:\"frm_create_entries\";a:1:{i:0;s:13:\"administrator\";}s:16:\"frm_edit_entries\";a:1:{i:0;s:13:\"administrator\";}s:16:\"frm_view_reports\";a:1:{i:0;s:13:\"administrator\";}s:17:\"frm_edit_displays\";a:1:{i:0;s:13:\"administrator\";}}','yes'),(190,'frm_db_version','4.04.02-97','yes'),(191,'frm_last_style_update','422831','yes'),(192,'frmpro_css','/* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */\n.frm_hidden,.frm_add_form_row.frm_hidden,.frm_remove_form_row.frm_hidden,.with_frm_style .frm_button.frm_hidden{display:none;}form input.frm_verify{display:none !important;}.with_frm_style fieldset{min-width:0;}.with_frm_style fieldset fieldset{border:none;margin:0;padding:0;background-color:transparent;}legend.frm_hidden{display:none !important;}.with_frm_style .frm_form_fields{opacity:1;transition: opacity 0.1s linear;}.with_frm_style .frm_doing_ajax{opacity:.5;}.frm_transparent{color:transparent;}.input[type=file].frm_transparent:focus, .with_frm_style input[type=file]{background-color:transparent;border:none;outline:none;box-shadow:none;}.with_frm_style input[type=file]{display:initial;}.frm_preview_page:before{content:normal !important;}.frm_preview_page{padding:25px;}.with_frm_style .frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container .frm_primary_label,.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container .frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_pos_center {text-align: center;}.with_frm_style .frm_none_container .frm_primary_label,.with_frm_style .frm_pos_none,.frm_pos_none,.frm_none_container .frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container .frm_primary_label{visibility:hidden;white-space:nowrap;}.with_frm_style .frm_inside_container .frm_primary_label{opacity:0;transition: opacity 0.1s linear;}.with_frm_style .frm_inside_container label.frm_visible,.frm_visible{opacity:1;}.with_frm_style .frm_description{clear:both;}.with_frm_style input[type=number][readonly]{-moz-appearance: textfield;}.with_frm_style select[multiple=\"multiple\"]{height:auto;line-height:normal;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style textarea{height:auto;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none;border:1px solid #eee;padding:5px;display:inline;}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field,.frm_inline_form .frm_submit{grid-column: span 1 / span 1;}.frm_inline_form .frm_submit{margin:0;}.frm_submit.frm_inline_submit input[type=submit],.frm_submit.frm_inline_submit button,.frm_inline_form .frm_submit input[type=submit],.frm_inline_form .frm_submit button{margin-top:0;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_submit input[type=submit],.with_frm_style.frm_center_submit .frm_submit input[type=button],.with_frm_style.frm_center_submit .frm_submit button{margin-bottom:8px !important;}.with_frm_style .frm-edit-page-btn,.with_frm_style .frm_submit input[type=submit],.with_frm_style .frm_submit input[type=button],.with_frm_style .frm_submit button{-webkit-appearance: none;cursor: pointer;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.with_frm_style .frm_loading_prev .frm_ajax_loading,.with_frm_style .frm_loading_form .frm_ajax_loading{visibility:visible !important;}.with_frm_style .frm_loading_prev .frm_prev_page,.with_frm_style .frm_loading_form .frm_button_submit {position: relative;opacity: .8;color: transparent !important;text-shadow: none !important;}.with_frm_style .frm_loading_prev .frm_prev_page:hover,.with_frm_style .frm_loading_prev .frm_prev_page:active,.with_frm_style .frm_loading_prev .frm_prev_page:focus,.with_frm_style .frm_loading_form .frm_button_submit:hover,.with_frm_style .frm_loading_form .frm_button_submit:active,.with_frm_style .frm_loading_form .frm_button_submit:focus {cursor: not-allowed;color: transparent;outline: none !important;box-shadow: none;}.with_frm_style .frm_loading_prev .frm_prev_page::before,.with_frm_style .frm_loading_form .frm_button_submit:before {content: \'\';display: inline-block;position: absolute;background: transparent;border: 1px solid #fff;border-top-color: transparent;border-left-color: transparent;border-radius: 50%;box-sizing: border-box;top: 50%;left: 50%;margin-top: -10px;margin-left: -10px;width: 20px;height: 20px;-webkit-animation: spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation:  spin 2s linear infinite;animation: spin 2s linear infinite;}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style,.frm_style_formidable-style.with_frm_style form,.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style.with_frm_style .frm_form_fields  > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;}.frm_style_formidable-style.with_frm_style legend + h3,.frm_style_formidable-style.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm_primary_label{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;color:#666666;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:\"\\e600\";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:\"\\e602\";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:\"\\e62d\";color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:\"\\e62a\";color:#444444;}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error{margin:0;padding:0;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style .frm_scale label{font-weight:normal;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .chosen-container{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=phone],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{color:#232323;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=radio],.frm_style_formidable-style.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=file],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style select[multiple=\"multiple\"]{height:auto ;}.frm_style_formidable-style.with_frm_style input[type=file]{color: #232323;padding:0px;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:14px;}.frm_style_formidable-style.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .auto_width input,.frm_style_formidable-style.with_frm_style input.auto_width,.frm_style_formidable-style.with_frm_style select.auto_width,.frm_style_formidable-style.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style.with_frm_style input[disabled],.frm_style_formidable-style.with_frm_style select[disabled],.frm_style_formidable-style.with_frm_style textarea[disabled],.frm_style_formidable-style.with_frm_style input[readonly],.frm_style_formidable-style.with_frm_style select[readonly],.frm_style_formidable-style.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style.with_frm_style input::placeholder,.frm_style_formidable-style.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input:-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .frm_default,.frm_style_formidable-style.with_frm_style input.frm_default,.frm_style_formidable-style.with_frm_style textarea.frm_default,.frm_style_formidable-style.with_frm_style select.frm_default,.frm_style_formidable-style.with_frm_style .placeholder,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style.with_frm_style select:focus,.frm_style_formidable-style.with_frm_style textarea:focus,.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style.with_frm_style input[type=submit],.frm_style_formidable-style.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style.with_frm_style .frm_submit button,.frm_form_submit_style,.frm_style_formidable-style.with_frm_style .frm-edit-page-btn {width:auto;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:16px;height:auto;line-height:normal;text-align:center;background:#a7bf95;border-width:0;border-color: ;border-style:solid;color:#ffffff;cursor:pointer;font-weight:200;-moz-border-radius:0px;-webkit-border-radius:0px;border-radius:0px;text-shadow:none;padding:6px 28px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style.with_frm_style .frm-edit-page-btn:hover,.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm-edit-page-btn:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style .frm_submit button:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:hover,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:active,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:focus,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #a7bf95;}.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:before,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #ffffff;border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit::before {content:\"before\";font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style.with_frm_style a.frm_save_draft{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:16px;font-weight:200;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_radio label,.frm_style_formidable-style.with_frm_style .frm_checkbox label{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr td{color: #232323;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color: #232323;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style.with_frm_style .frm_button{padding:6px 28px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:16px;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-weight:200;color:#ffffff;background: #a7bf95;border-width:0;border-color: ;height:auto;}.frm_style_formidable-style.with_frm_style .frm_button .frm_icon_font:before{font-size:16px;}.frm_style_formidable-style.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #232323;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-remove{color: #232323;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=file]::-webkit-file-upload-button{color:#232323;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li span{color:#232323;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"]{height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type=\"text\"]{height:15px;}.frm_style_formidable-style.with_frm_style .frm_page_bar input,.frm_style_formidable-style.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_page_bar .frm_current_page input[type=\"button\"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline_title,.frm_style_formidable-style.with_frm_style .frm_pages_complete,.frm_style_formidable-style.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type=\"button\"] {border-left-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type=\"button\"] {border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style.with_frm_style .frm_rootline input,.frm_style_formidable-style.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline .frm_current_page input[type=\"button\"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type=\"button\"],.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type=\"button\"] {color: transparent !important;}.frm_style_formidable-style.with_frm_style .frm_range_unit,.frm_style_formidable-style.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style.with_frm_style .form-field input[type=range],.frm_style_formidable-style.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm-show-form  .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}.frm_style_formidable-style.with_frm_style .frm-summary-page-wrapper {border-color: #cccccc;border-radius: 4px;}.frm_style_formidable-style.with_frm_style .frm_single_product_label,.frm_style_formidable-style.with_frm_style .frm_total_formatted {font-size:14px;color:#444444;}@media only screen and (max-width: 600px){.frm_style_formidable-style.with_frm_style .frm_repeat_inline,.frm_style_formidable-style.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_formidable-style-2.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style-2.with_frm_style,.frm_style_formidable-style-2.with_frm_style form,.frm_style_formidable-style-2.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style-2.with_frm_style .frm_form_fields  > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;}.frm_style_formidable-style-2.with_frm_style legend + h3,.frm_style_formidable-style-2.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style .frm_primary_label{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;color:#666666;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_minus_icon:before{content:\"\\e600\";}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_plus_icon:before{content:\"\\e602\";}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff;vertical-align:middle;}.frm_style_formidable-style-2.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:\"\\e62d\";color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:\"\\e62a\";color:#444444;}.frm_style_formidable-style-2.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style-2.with_frm_style .frm_grid,.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style p.description,.frm_style_formidable-style-2.with_frm_style div.description,.frm_style_formidable-style-2.with_frm_style div.frm_description,.frm_style_formidable-style-2.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style-2.with_frm_style .frm_error{margin:0;padding:0;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style-2.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style-2.with_frm_style .frm_none_container .frm_primary_label,.frm_style_formidable-style-2.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style-2.with_frm_style .frm_scale label{font-weight:normal;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style textarea,.frm_style_formidable-style-2.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .chosen-container{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=phone],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style-2.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style-2.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style-2.with_frm_style input[type=radio],.frm_style_formidable-style-2.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=file],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style .frm-card-element.StripeElement{height:32px;line-height:1.3;}.frm_style_formidable-style-2.with_frm_style select[multiple=\"multiple\"]{height:auto ;}.frm_style_formidable-style-2.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style-2.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style-2.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style-2.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .auto_width input,.frm_style_formidable-style-2.with_frm_style input.auto_width,.frm_style_formidable-style-2.with_frm_style select.auto_width,.frm_style_formidable-style-2.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style-2.with_frm_style input[disabled],.frm_style_formidable-style-2.with_frm_style select[disabled],.frm_style_formidable-style-2.with_frm_style textarea[disabled],.frm_style_formidable-style-2.with_frm_style input[readonly],.frm_style_formidable-style-2.with_frm_style select[readonly],.frm_style_formidable-style-2.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style-2.with_frm_style input::placeholder,.frm_style_formidable-style-2.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input::-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style-2.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input:-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style .frm_default,.frm_style_formidable-style-2.with_frm_style input.frm_default,.frm_style_formidable-style-2.with_frm_style textarea.frm_default,.frm_style_formidable-style-2.with_frm_style select.frm_default,.frm_style_formidable-style-2.with_frm_style .placeholder,.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style-2.with_frm_style select:focus,.frm_style_formidable-style-2.with_frm_style textarea:focus,.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style-2.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style-2.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style-2.with_frm_style input[type=submit],.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style-2.with_frm_style .frm_submit button,.frm_form_submit_style,.frm_style_formidable-style-2.with_frm_style .frm-edit-page-btn {width:auto;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:16px;height:auto;line-height:normal;text-align:center;background:#a7bf95;border-width:0;border-color: #cccccc;border-style:solid;color:#ffffff;cursor:pointer;font-weight:normal;-moz-border-radius:0px;-webkit-border-radius:0px;border-radius:0px;text-shadow:none;padding:6px 28px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style-2.with_frm_style .frm-edit-page-btn:hover,.frm_style_formidable-style-2.with_frm_style input[type=submit]:hover,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style-2.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-2.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style .frm-edit-page-btn:focus,.frm_style_formidable-style-2.with_frm_style input[type=submit]:focus,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style-2.with_frm_style .frm_submit button:focus,.frm_style_formidable-style-2.with_frm_style input[type=submit]:active,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style-2.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-2.with_frm_style .frm_loading_prev .frm_prev_page,.frm_style_formidable-style-2.with_frm_style .frm_loading_prev .frm_prev_page:hover,.frm_style_formidable-style-2.with_frm_style .frm_loading_prev .frm_prev_page:active,.frm_style_formidable-style-2.with_frm_style .frm_loading_prev .frm_prev_page:focus,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #a7bf95;}.frm_style_formidable-style-2.with_frm_style .frm_loading_prev .frm_prev_page:before,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #ffffff;border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit::before {content:\"before\";font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style-2.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style-2.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style-2.with_frm_style a.frm_save_draft{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:16px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style #frm_field_cptch_number_container{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style-2.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style-2.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style-2.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style-2.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style-2.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style-2.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style-2.with_frm_style .frm_radio label,.frm_style_formidable-style-2.with_frm_style .frm_checkbox label{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style-2.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style-2.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style-2.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style-2.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field label,.frm_style_formidable-style-2.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style-2.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style-2.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style-2.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style-2.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style-2.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style-2.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_grid,.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style-2.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style-2.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style-2.with_frm_style .frm_button{padding:6px 28px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:16px;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-weight:normal;color:#ffffff;background: #a7bf95;border-width:0;border-color: #cccccc;height:auto;}.frm_style_formidable-style-2.with_frm_style .frm_button .frm_icon_font:before{font-size:16px;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style-2.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"]{height:32px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type=\"text\"]{height:15px;}.frm_style_formidable-style-2.with_frm_style .frm_page_bar input,.frm_style_formidable-style-2.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_page_bar .frm_current_page input[type=\"button\"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style-2.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_rootline_title,.frm_style_formidable-style-2.with_frm_style .frm_pages_complete,.frm_style_formidable-style-2.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input,.frm_style_formidable-style-2.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line .frm_current_page input[type=\"button\"] {border-left-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type=\"button\"] {border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input,.frm_style_formidable-style-2.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_rootline .frm_current_page input[type=\"button\"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input,.frm_style_formidable-style-2.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style-2.with_frm_style .frm_progress_line .frm_current_page input[type=\"button\"],.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type=\"button\"] {color: transparent !important;}.frm_style_formidable-style-2.with_frm_style .frm_range_unit,.frm_style_formidable-style-2.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .form-field input[type=range],.frm_style_formidable-style-2.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style-2.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style-2.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style-2.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style-2.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style-2.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style-2.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_formidable-style-2.with_frm_style .frm-show-form  .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style-2.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style-2.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style-2.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style-2.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style-2.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}.frm_style_formidable-style-2.with_frm_style .frm-summary-page-wrapper {border-color: #cccccc;border-radius: 4px;}.frm_style_formidable-style-2.with_frm_style .frm_single_product_label,.frm_style_formidable-style-2.with_frm_style .frm_total_formatted {font-size:14px;color:#444444;}@media only screen and (max-width: 600px){.frm_style_formidable-style-2.with_frm_style .frm_repeat_inline,.frm_style_formidable-style-2.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:5px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.with_frm_style .frm_checkbox label,.with_frm_style .frm_radio label{display: inline;white-space:normal;}.with_frm_style .vertical_radio .frm_checkbox label,.with_frm_style .vertical_radio .frm_radio label{display: block;padding-left: 20px;text-indent: -20px;}.frm_file_container .frm_file_link,.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{-webkit-appearance:radio;border-radius:50%;}.with_frm_style .frm_checkbox input[type=checkbox]{-webkit-appearance:checkbox;border-radius:0;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{flex: none;display:inline-block;margin:4px 5px 0 0;width:auto;border:none;vertical-align:baseline;position: initial; }.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-top:none;border-left:none;border-right:none;}.frm-alt-table {width:100%;border-collapse:collapse;margin-top:0.5em;font-size:15px;}.frm-alt-table th {width:200px;}.frm-alt-table tr {background-color:transparent;}.frm-alt-table th,.frm-alt-table td {background-color:transparent;vertical-align:top;text-align:left;padding:20px;}.frm-alt-table tr:nth-child(even) {background-color:#f9f9f9;}table.form_results.with_frm_style{border:1px solid #ccc;}table.form_results.with_frm_style tr td{text-align:left;color:#232323;padding:7px 9px;border-top:1px solid #cccccc;}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#f9f9f9;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(../images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}select.frm_loading_lookup{background-image: url(../images/ajax_loader.gif) !important;background-position: 10px;background-repeat: no-repeat;color: transparent !important;}.frm_screen_reader {border: 0;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;word-wrap: normal !important; }.frm_screen_reader.frm_hidden{display:initial;}.frm_clear_none{clear:none;}.frm_clear{clear:both;}.frm_form_field.frm_alignright{float:right !important;}.with_frm_style .frm_form_field{clear:both;}.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container{display:grid;grid-template-columns: repeat(12, 6.5%);grid-auto-rows: max-content;grid-gap: 0 2%;}.frm_combo_inputs_container > *,.frm_grid_container > *,.frm_section_heading > *,.frm_fields_container .frm_form_field,.frm_fields_container > *{grid-column: span 12 / span 12;}.frm_inline,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;grid-column: span 2 / span 2;}.frm6,.frm_half,.frm_form_field.frm_three_fifths, .frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{grid-column:span 6 / span 6;}.frm4,.frm_third,.frm_form_field.frm_two_fifths, .frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{grid-column:span 4 / span 4;}.frm8,.frm_two_thirds,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{grid-column: span 8/span 8;}.frm3,.frm_fourth,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{grid-column: span 3/span 3;}.frm9,.frm_three_fourths,.frm_form_field.frm_four_fifths, .frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm_three_fourths{grid-column: span 9/span 9;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{grid-column: span 2/span 2;}.frm2,.frm_sixth,.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{grid-column: span 2/span 2;}.frm10,.frm_form_field.frm10,.frm_submit.frm10{grid-column: span 10/span 10;}.frm1,.frm_form_field.frm1,.frm_submit.frm1,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{grid-column: span 1/span 1;}.frm5,.frm_form_field.frm5,.frm_submit.frm5{grid-column: span 5/span 5;}.frm7,.frm_form_field.frm7,.frm_submit.frm7{grid-column: span 7/span 7;}.frm11,.frm_form_field.frm11,.frm_submit.frm11{grid-column: span 11/span 11;}.frm12,.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type=\'checkbox\']):not([type=\'radio\']):not([type=\'button\']),.frm_full select,.frm_full textarea{width:100% !important;grid-column: span 12/span 12;box-sizing: border-box;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_first,.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{grid-column-start:1;}.frm_last,.frm_form_field.frm_last,.frm_form_field.frm_alignright{grid-column-end:-1;grid-row-start: span 100;justify-content: end;}.with_frm_style.frm_rtl .frm_form_fields .star-rating{float:right;}.with_frm_style.frm_rtl .frm_grid .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_first .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_odd .frm_primary_label,.with_frm_style.frm_rtl .frm_grid .frm_radio,.with_frm_style.frm_rtl .frm_grid_first .frm_radio,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio,.with_frm_style.frm_rtl .frm_grid .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox{float:right !important;margin-right:0 !important;}.with_frm_style.frm_rtl .frm_grid_first .frm_radio label input,.with_frm_style.frm_rtl .frm_grid .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox label input{float:left;}.with_frm_style.frm_rtl .frm_catlevel_2,.with_frm_style.frm_rtl .frm_catlevel_3,.with_frm_style.frm_rtl .frm_catlevel_4,.with_frm_style.frm_rtl .frm_catlevel_5{margin-right:18px;}.with_frm_style.frm_rtl div > .frm_time_select{margin-right:5px;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display: grid;grid-template-columns: 25% auto;width:100%;grid-auto-rows: min-content;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_form_field.frm_inline_container{grid-template-columns: repeat(2, minmax(auto, max-content) );}.frm_form_field.frm_inline_container .frm_primary_label,.frm_form_field.frm_right_container .frm_primary_label,.frm_form_field.frm_left_container .frm_primary_label{margin-right:10px;grid-row:span 2/span 2;padding-top:4px;}.frm_form_field.frm_left_container .frm_primary_label{grid-column:1;grid-row:span 2/span 2; }.frm_form_field.frm_right_container .frm_primary_label{grid-column:2;grid-row:1;margin-right:0;margin-left:10px;}.frm_form_field.frm_inline_container .frm_description,.frm_form_field.frm_left_container .frm_description{grid-column:2;}.frm_form_field.frm_right_container .frm_description{grid-column:1;}.frm_conf_field.frm_left_container{grid-template-columns: 67%;}.frm_conf_field.frm_left_container .frm_description{grid-column:1;}.frm-fade-in {-webkit-animation-name: fadeIn;animation-name: fadeIn;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}@keyframes spin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}@keyframes fadeIn {   0% {opacity: 0;}   100% {opacity: 1;}}@media only screen and (max-width: 600px) {.frm_section_heading > .frm_form_field,.frm_fields_container > .frm_submit,.frm_grid_container > .frm_form_field,.frm_fields_container > .frm_form_field{grid-column: 1 / span 12 !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display:block;}}.frm_conf_field.frm_left_container .frm_primary_label{display:none;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:\" \";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;}.frm_grid{background-color:#ffffff;}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 .frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 .frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 .frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 .frm_primary_label,.frm_grid_7 .frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 .frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 .frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 .frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 .frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 .frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_left_container .frm_opt_container{padding-top:4px;}.with_frm_style .frm_inline_container.frm_grid_first .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display: grid;grid-template-columns: repeat(2, 1fr);grid-auto-rows: max-content;grid-gap: 0 2.5%;}.frm_form_field.frm_three_col .frm_opt_container{grid-template-columns: repeat(3, 1fr);}.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(4, 1fr);}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{grid-column-end: span 1;}.frm_form_field .frm_checkbox,.frm_form_field .frm_checkbox + .frm_checkbox,.frm_form_field .frm_radio,.frm_form_field .frm_radio + .frm_radio{margin-top: 0;margin-bottom: 0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_html_container.frm_scroll_box,.frm_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;width:auto !important;box-shadow:none !important;display:inline;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_form_field.frm_label_justify .frm_primary_label{text-align:justify !important;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:\".\";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:block;}@font-face {font-family: \'s11-fp\';src: url(\'../fonts/s11-fp.ttf?v=7\') format(\'truetype\'),url(\'../fonts/s11-fp.woff?v=7\') format(\'woff\'),url(\'../fonts/s11-fp.svg?v=7#s11-fp\') format(\'svg\');font-weight: normal;font-style: normal;}.frmfont,.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;display:inline-block;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-rendering: auto;line-height: 1;-moz-transition: color .1s ease-in-out, opacity .1s ease-in-out;-webkit-transition: color .1s ease-in-out, opacity .1s ease-in-out;transition: color .1s ease-in-out, opacity .1s ease-in-out;font-size: 18px;}i.frmfont,i.frm_icon_font{font-style:normal;font-variant: normal;speak: none;}.frmfont:before,select.frmfont,.frm_icon_font:before,select.frm_icon_font{font-family: \'s11-fp\' !important;text-align:center;}.frmfont,a.frmfont,.frmfont:hover,a.frmfont:hover.frm_icon_font,a.frm_icon_font,.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;box-shadow:none;}.frmfont:focus,.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frmfont:active,.frm_icon_font:active{outline:none;}.frm_trigger .frm_icon_font{padding:0 5px;}.frm_logo_icon:before {content: \"\\e601\";}.frm_required_icon:before {content: \"\\e612\";}.frm_delete_icon:before {content: \"\\e610\" !important;}.frm_delete_solid_icon:before {content: \"\\e900\";}.frm_move_icon:before {content: \"\\e61a\";}.frm_drag_icon:before {content: \"\\e93b\";}.frm_clear_icon:before {content: \"\\e60a\";}.frm_noclear_icon:before {content: \"\\e60b\";}.frm_duplicate_icon:before {content: \"\\e61b\";}.frm_copy_icon:before {content: \"\\f0c5\";}.frm_clone_solid_icon:before {content: \"\\f24e\";}.frm_clone_icon:before {content: \"\\f24d\";}.frm_tooltip_icon:before {content: \"\\e611\";}.frm_tooltip_solid_icon:before {content: \"\\e907\";}.frm_forbid_icon:before {content: \"\\e636\";}.frm_checkmark_icon:before {content: \"\\e90a\";}.frm_check_icon:before {content: \"\\e605\";}.frm_check1_icon:before {content: \"\\e606\";}.frm_plus_icon:before {content: \"\\e62f\";}.frm_plus1_icon:before {content: \"\\e602\";}.frm_plus2_icon:before {content: \"\\e603\";}.frm_plus3_icon:before {content: \"\\e632\";}.frm_plus4_icon:before {content: \"\\e60f\";}.frm_minus_icon:before {content: \"\\e62e\";}.frm_minus1_icon:before {content: \"\\e600\";}.frm_minus2_icon:before {content: \"\\e604\";}.frm_minus3_icon:before {content: \"\\e633\";}.frm_minus4_icon:before {content: \"\\e613\";}.frm_cancel_icon:before {content: \"\\e607\";}.frm_cancel1_icon:before {content: \"\\e608\";}.frm_close_icon:before {content: \"\\e928\";}.frm_report_problem_solid_icon:before {content: \"\\e914\";}.frm_report_problem_icon:before {content: \"\\e915\";}.frm_arrowup_icon:before {content: \"\\e60d\";}.frm_arrowup1_icon:before {content: \"\\e60e\";}.frm_arrowup2_icon:before {content: \"\\e630\";}.frm_arrowup3_icon:before {content: \"\\e62b\";}.frm_arrowup4_icon:before {content: \"\\e62c\";}.frm_arrowup5_icon:before {content: \"\\e635\";}.frm_arrowup5_solid_icon:before {content: \"\\e9d\";}.frm_arrowup7_icon:before {content: \"\\e908\";}.frm_arrowup6_icon:before {content: \"\\e62d\";}.frm_arrowdown_icon:before {content: \"\\e609\";}.frm_arrowdown1_icon:before {content: \"\\e60c\";}.frm_arrowdown2_icon:before {content: \"\\e631\";}.frm_arrowdown3_icon:before {content: \"\\e628\";}.frm_arrowdown4_icon:before {content: \"\\e629\";}.frm_arrowdown5_icon:before {content: \"\\e634\";}.frm_arrowdown5_solid_icon:before {content: \"\\e905\";}.frm_arrowdown7_icon:before {content: \"\\e90b\";}.frm_arrowdown6_icon:before {content: \"\\e62a\";}.frm_arrow_left_icon:before {content: \"\\e912\";}.frm_arrow_right_icon:before {content: \"\\e913\";}.frm_filter_icon:before {content: \"\\e90c\";}.frm_download_icon:before {content: \"\\e615\";}.frm_upload2_icon:before {content: \"\\f093\";}.frm_upload_icon:before {content: \"\\e616\";}.frm_download2_icon:before {content: \"\\f019\";}.frm_hard_drive_icon:before {content: \"\\e916\";}.frm_pencil_solid_icon:before {content: \"\\e901\";}.frm_pencil_icon:before {content: \"\\e61d\";}.frm_signature_icon:before {content: \"\\e919\";}.frm_user_icon:before {content: \"\\e7ff\";}.frm_register_icon:before {content: \"\\e637\";}.frm_account_circle_solid_icon:before {content: \"\\e853\";}.frm_account_circle_icon:before {content: \"\\e921\";}.frm_address_card_icon:before {content: \"\\e996\";}.frm_paragraph_icon:before {content: \"\\f1dd\";}.frm_checkbox_unchecked_icon:before {content: \"\\e91e\";}.frm_checkbox_icon:before {content: \"\\e922\";}.frm_checkbox_solid_icon:before {content: \"\\e91f\";}.frm_dropdown_icon:before {content: \"\\e909\";}.frm_caret_square_down_icon:before {content: \"\\f150\";}.frm_check_square_icon:before {content: \"\\f14a\";}.frm_radio_unchecked_icon:before {content: \"\\e971\";}.frm_radio_checked_icon:before {content: \"\\ea54\";}.frm_scrubber_icon:before {content: \"\\f2f8\";}.frm_location_solid_icon:before {content: \"\\e955\";}.frm_location_icon:before {content: \"\\e947\";}.frm_toggle_on_icon:before {content: \"\\f205\";}.frm_toggle_off_icon:before {content: \"\\f204\";}.frm_shield_check_icon:before {content: \"\\f2f7\";}.frm_shield_check_solid_icon:before {content: \"\\e97d\";}.frm_clock_icon:before {content: \"\\e929\";}.frm_clock_solid_icon:before {content: \"\\e985\";}.frm_link_icon:before {content: \"\\f0c1\";}.frm_email_icon:before {content: \"\\e626\";}.frm_email_solid_icon:before {content: \"\\f0e0\";}.frm_mail_bulk_icon:before {content: \"\\e95c\";}.frm_phone_icon:before {content: \"\\e942\";}.frm_calendar_icon:before {content: \"\\f073\";}.frm_code_icon:before {content: \"\\e90d\";}.frm_tag_icon:before {content: \"\\e98b\";}.frm_tag_solid_icon:before {content: \"\\e989\";}.frm_price_tags_icon:before {content: \"\\e936\";}.frm_search_icon:before {content: \"\\e978\";}.frm_sitemap_icon:before {content: \"\\f0e8\";}.frm_file_icon:before {content: \"\\f15b\";}.frm_file_text_solid_icon:before {content: \"\\f15c\";}.frm_file_text_icon:before {content: \"\\e923\";}.frm-option-icon:before, .frm_option_icon:before {content: \"\\e904\";}.frm_option_solid_icon:before {content: \"\\e906\";}.frm_more_horiz_icon:before {content: \"\\e5d3\";}.frm_more_vert_icon:before {content: \"\\e5d4\";}.frm_more_horiz_solid_icon {font-size: 28px !important;font-weight: bold;line-height: 18px;}.frm_more_horiz_solid_icon:before {content: \"\\00B7\\00B7\\00B7\";}.frm_more_vert_solid_icon:before {content: \"\\f142\";}.frm_calculator_icon:before {content: \"\\f1ec\";}.frm_key_icon:before {content: \"\\f084\";}.frm_keyalt_solid_icon:before {content: \"\\e986\";}.frm_keyalt_icon:before {content: \"\\e987\";}.frm_keyboard_icon:before {content: \"\\e924\";}.frm_eye_icon:before {content: \"\\f06e\";}.frm_eye_solid_icon:before {content: \"\\e945\";}.frm_eye_slash_icon:before {content: \"\\f070\";}.frm_eye_slash_solid_icon:before {content: \"\\e949\";}.frm_page_break_icon:before {content: \"\\e8e9\";}.frm_view_day_icon:before {content: \"\\e8ed\";}.frm_attach_file_icon:before {content: \"\\e226\";}.frm_printer_icon:before {content: \"\\e926\";}.frm_header_icon:before {content: \"\\f1dc\";}.frm_h1_icon:before {content: \"\\e94c\";}.frm_repeat_icon:before {content: \"\\f363\";}.frm_repeater_icon:before {content: \"\\e974\";}.frm_hashtag_icon:before {content: \"\\e292\";}.frm_save_icon:before {content: \"\\e927\";}.frm_sliders_icon:before {content: \"\\f1de\";}.frm_code_commit_icon:before {content: \"\\f386\";}.frm_star_icon:before {content: \"\\e9d7\";}.frm_star_full_icon:before {content: \"\\e9d9\";}.frm_star_half_icon:before {content: \"\\e9d8\";}.frm_linear_scale_icon:before {content: \"\\e260\";}.frm_pie_chart_icon:before {content: \"\\e99a\";}.frm_stats_bars_icon:before {content: \"\\e99c\";}.frm_sms_icon:before {content: \"\\e61c\";}.frm_highrise_icon:before {content: \"\\e617\";}.frm_mailchimp_icon:before {content: \"\\e622\";}.frm_feed_icon:before {content: \"\\e624\";}.frm_align_right_icon:before {content: \"\\e90f\";}.frm_align_left_icon:before {content: \"\\e910\";}.frm_button_icon:before {content: \"\\e911\";}.frm_browser_icon:before {content: \"\\e925\";}.frm_cloud_download_solid_icon:before {content: \"\\e92a\";}.frm_cloud_download_icon:before {content: \"\\e92b\";}.frm_cloud_upload_solid_icon:before {content: \"\\e92c\";}.frm_cloud_upload_icon:before {content: \"\\e92d\";}.frm_cloud_solid_icon:before {content: \"\\e92e\";}.frm_cloud_icon:before {content: \"\\e92f\";}.frm_shuffle_icon:before {content: \"\\e917\";}.frm_swap_icon:before {content: \"\\e918\";}.frm_dropper_solid_icon:before {content: \"\\e93c\";}.frm_tint_icon:before {content: \"\\e93e\";}.frm_pallet_solid_icon:before {content: \"\\e96c\";}.frm_pallet_icon:before {content: \"\\e96d\";}.frm_fingerprint_icon:before {content: \"\\e94a\";}.frm_ghost_icon:before {content: \"\\e94b\";}.frm_heart_solid_icon:before {content: \"\\e94d\";}.frm_heart_icon:before {content: \"\\e94e\";}.frm_history_icon:before {content: \"\\e94f\";}.frm_import_icon:before {content: \"\\e91a\";}.frm_export_icon:before {content: \"\\e91b\";}.frm_label_solid_icon:before {content: \"\\e952\";}.frm_label_icon:before {content: \"\\e953\";}.frm_lock_open_icon:before {content: \"\\e957\";}.frm_lock_solid_icon:before {content: \"\\e958\";}.frm_lock_icon:before {content: \"\\e959\";}.frm_magic_wand_icon:before {content: \"\\e997\";}.frm_dollar_sign_icon:before {content: \"\\e91c\";}.frm_percent_icon:before {content: \"\\e939\";}.frm_notification_solid_icon:before {content: \"\\e964\";}.frm_notification_icon:before {content: \"\\e965\";}.frm_external_link_icon:before {content: \"\\e966\";}.frm_pageview_solid_icon:before {content: \"\\e96a\";}.frm_pageview_icon:before {content: \"\\e96b\";}.frm_settings_solid_icon:before {content: \"\\e979\";}.frm_settings_icon:before {content: \"\\e97a\";}.frm_stamp_icon:before {content: \"\\e980\";}.frm_support_icon:before {content: \"\\f1cd\";}.frm_text_solid_icon:before {content: \"\\e98c\";}.frm_text_icon:before {content: \"\\e98d\";}.frm_text2_icon:before {content: \"\\f031\";}.frm_text3_icon:before {content: \"\\e98e\";}.frm_unfold_less_icon:before {content: \"\\e993\";}.frm_unfold_more_icon:before {content: \"\\e994\";}.frm_work_solid_icon:before {content: \"\\e999\";}.frm_work_icon:before {content: \"\\e99e\";}.frm_white_label_icon:before {content: \"\\e91d\" !important;}.frm_zoom_out_icon:before {content: \"\\e99f\";}.frm_maximize_icon:before {content: \"\\e920\";}.frm_minimize_icon:before {content: \"\\e93a\";}.frm_authorize_icon:before {content: \"\\e903\";}.frm_icon_font.frm_activecampaign_icon {background-image: none;}.frm_activecampaign_icon:before {content: \"\\e930\";}.frm_aweber_icon:before {content: \"\\e627\";}.frm_campaignmonitor_icon:before {content: \"\\e946\";}.frm_constant_contact_icon:before {content: \"\\e931\";}.frm_getresponse_icon:before {content: \"\\e932\";}.frm_googlesheets_icon:before {content: \"\\e944\";}.frm_building_icon:before {content: \"\\e93f\";}.frm_hubspot_icon:before {content: \"\\e933\";}.frm_icontact_icon:before {content: \"\\e940\";}.frm_icon_font.frm_mailpoet_icon:before {content: \"\\e934\";}.frm_paypal_icon:before {content: \"\\e61f\";}.frm_sendinblue_icon:before {content: \"\\e943\";}.frm_sendy_icon:before {content: \"\\e941\";}.frm_salesforce_icon:before {content: \"\\e935\";}.frm_salesforcealt_icon:before {content: \"\\e937\";}.frm_stripe_icon:before {content: \"\\e902\";}.frm_stripealt_icon:before {content: \"\\e93d\";}.frm_twilio_icon:before {content: \"\\e620\";}.frm_woocommerce_icon:before {content: \"\\e90e\";}.frm_wordpress_icon:before {content: \"\\f19a\";}.frm_credit_card_icon:before {content: \"\\e938\";}.frm_credit-card-alt_icon:before, .frm_credit_card_alt_icon:before {content: \"\\f283\";}.frm_cc_amex_icon:before {content: \"\\f1f3\";}.frm_cc_discover_icon:before {content: \"\\f1f2\";}.frm_cc_mastercard_icon:before {content: \"\\f1f1\";}.frm_cc_visa_icon:before {content: \"\\f1f0\";}.frm_cc_paypal_icon:before {content: \"\\f1f4\";}.frm_cc_stripe_icon:before {content: \"\\f1f5\";}.js .frm_logic_form:not(.frm_no_hide) {display:none;}.with_frm_style .frm_conf_field.frm_half label.frm_conf_label {overflow: hidden;white-space: nowrap;}.with_frm_style .frm_time_wrap{white-space:nowrap;}.with_frm_style select.frm_time_select{white-space:pre;display:inline;}.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;padding-bottom:15px;}.with_frm_style .frm_repeat_sec:last-child{border-bottom:none;padding-bottom:0;}.with_frm_style .frm_repeat_inline{clear:both;}.frm_invisible_section .frm_form_field,.frm_invisible_section{display:none !important;visibility:hidden !important;height:0;margin:0;}.frm_form_field .frm_repeat_sec .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_grid .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_inline .frm_add_form_row.frm_hide_add_button {-moz-transition: opacity .15s ease-in-out;-webkit-transition: opacity .15s ease-in-out;transition: opacity .15s ease-in-out;pointer-events: none;}.frm_form_field .frm_repeat_sec .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row.frm_hide_add_button {display: none;}.frm_form_field div.frm_repeat_grid .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_inline .frm_add_form_row.frm_hide_add_button {visibility: hidden;}.frm_form_field div.frm_repeat_grid .frm_add_form_row,.frm_form_field div.frm_repeat_inline .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row {display: inline-block;visibility: visible;pointer-events: auto;}.frm_add_form_row.frm_button.frm_hidden:last-child, .frm_add_form_row.frm_icon_font.frm_hidden:last-child {display: inline-block;}.frm_form_fields .frm_section_heading.frm_hidden {display: none;}.frm_repeat_inline .frm_repeat_buttons a.frm_icon_font{vertical-align: sub;}.frm_repeat_inline .frm_repeat_buttons a.frm_icon_font:before{vertical-align: text-top;}.frm_repeat_grid .frm_button,.frm_repeat_inline .frm_button,.frm_repeat_sec .frm_button{display: inline-block;line-height:1;}.frm_repeat_sec .frm_button .frm_icon_font:before,.frm_repeat_grid .frm_button .frm_icon_font:before,.frm_repeat_inline .frm_button .frm_icon_font:before{line-height:1;}.frm_form_field .frm_repeat_grid ~ .frm_repeat_grid .frm_form_field .frm_primary_label{display:none !important;}#ui-datepicker-div{display:none;z-index:999999 !important;}.ui-datepicker .ui-datepicker-title select.ui-datepicker-month,.ui-datepicker .ui-datepicker-title select.ui-datepicker-year {width: 33%;background-color:#fff;float:none;}.ui-datepicker select.ui-datepicker-month{margin-right: 3px;}.ui-datepicker-month, .ui-datepicker-year{max-width:100%;max-height:2em;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.ui-datepicker .ui-widget-header,.ui-datepicker .ui-datepicker-header {background: #008ec2 !important;color: #ffffff !important;}.ui-datepicker td.ui-datepicker-today{background: rgba(0,92,144,0.15) !important;}.ui-datepicker td.ui-datepicker-current-day,.ui-datepicker td .ui-state-hover,.ui-datepicker thead {background: #005c90 !important;color: #ffffff !important;}.ui-datepicker td.ui-datepicker-current-day .ui-state-default{color: #ffffff !important;}.google-visualization-tooltip-item-list,.google-visualization-tooltip-item-list .google-visualization-tooltip-item:first-child {margin: 1em 0 !important;}.google-visualization-tooltip-item {list-style-type: none !important;margin: 0.65em 0 !important;}.with_frm_style .frm_scale{margin-right:15px;text-align:center;float:left;}.with_frm_style .frm_scale input{display:block;margin:0;}.frm-star-group input {display: none !important;}.frm-star-group .star-rating,.frm-star-group input + label {float:left;width:25px;height:25px;font-size:25px;line-height:1;cursor:pointer;display:block;background:transparent;overflow:hidden !important;clear:none;font-style:normal;margin-right:15px;}.frm-star-group input + label:before,.frm-star-group .star-rating:before{font-family:\'s11-fp\';content:\'\\e9d7\';color:#F0AD4E;display: inline-block;vertical-align: top;}.frm-star-group input[type=radio]:checked + label:before,.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before{color:#F0AD4E;}.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before,.frm-star-group input + label:hover:before,.frm-star-group:hover input + label:hover:before,.frm-star-group .star-rating-on:before,.frm-star-group .star-rating-hover:before{content:\'\\e9d9\';color:#F0AD4E;}.frm-star-group .frm_half_star:before{content:\'\\e9d8\';}.frm-star-group .star-rating-readonly{cursor:default !important;}.with_frm_style .frm_other_input.frm_other_full{margin-top:10px;}.frm_left_container .frm_other_input{grid-column:2;}.frm_inline_container.frm_other_container .frm_other_input,.frm_left_container.frm_other_container .frm_other_input{margin-left:5px;}.frm_right_container.frm_other_container .frm_other_input{margin-right:5px;}.frm_inline_container.frm_other_container select ~ .frm_other_input,.frm_right_container.frm_other_container select ~ .frm_other_input,.frm_left_container.frm_other_container select ~ .frm_other_input{margin:0;}.frm_pagination_cont ul.frm_pagination{display:inline-block;list-style:none;margin-left:0 !important;}.frm_pagination_cont ul.frm_pagination > li{display:inline;list-style:none;margin:2px;background-image:none;}ul.frm_pagination > li.active a{text-decoration:none;}.frm_pagination_cont ul.frm_pagination > li:first-child{margin-left:0;}.archive-pagination.frm_pagination_cont ul.frm_pagination > li{margin:0;}.frmcal{padding-top:30px;}.frmcal-title{font-size:116%;}.frmcal table.frmcal-calendar{border-collapse:collapse;margin-top:20px;color:#232323;}.frmcal table.frmcal-calendar,.frmcal table.frmcal-calendar tbody tr td{border:1px solid #cccccc;}.frmcal table.frmcal-calendar,.frmcal,.frmcal-header{width:100%;}.frmcal-header{text-align:center;}.frmcal-prev{margin-right:10px;}.frmcal-prev,.frmcal-dropdown{float:left;}.frmcal-dropdown{margin-left:5px;}.frmcal-next{float:right;}.frmcal table.frmcal-calendar thead tr th{text-align:center;padding:2px 4px;}.frmcal table.frmcal-calendar tbody tr td{height:110px;width:14.28%;vertical-align:top;padding:0 !important;color:#232323;font-size:12px;}table.frmcal-calendar .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #cccccc;-webkit-box-shadow:0 2px 5px #cccccc;box-shadow:0 2px 5px #cccccc;}table.frmcal-calendar .frmcal-today .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #66afe9;-webkit-box-shadow:0 2px 5px #66afe9;box-shadow:0 2px 5px #66afe9;}.frmcal_day_name,.frmcal_num{display:inline;}.frmcal-content{padding:2px 4px;}.frm_switch_opt {padding:0 8px 0 0;white-space:normal;display:inline;vertical-align: middle;}.frm_on_label{color: #3177c7;padding:0 0 0 8px;}.frm_switch {position: relative;display: inline-block;width: 40px;height: 25px;vertical-align: middle;}.frm_switch input {display:none !important;}.frm_slider {position: absolute;cursor: pointer;top: 0;left: 0;right: 0;bottom: 0;background-color: #ccc;transition: .4s;border-radius: 30px;}.frm_slider:before {border-radius: 50%;position: absolute;content: \"\";height: 23px;width: 23px;left: 1px;bottom: 1px;background-color: white;transition: .4s;box-shadow:0 2px 5px #999;}input:checked + .frm_slider {background-color: #3177c7;}input:focus + .frm_slider {box-shadow: 0 0 1px #3177c7;}input:checked + .frm_slider:before {transform: translateX(15px);}.with_frm_style .frm_range_unit,.with_frm_style .frm_range_value{display:inline-block;padding-left: 2px;padding-right: 2px;}.with_frm_style input[type=range] {-webkit-appearance: none;box-shadow:none !important;border:none !important;cursor: pointer;padding:0 ;background:transparent !important;display: block;width: 100%;margin: 7px 0 15px;font-size:14px;}.with_frm_style input[type=range]:active,.with_frm_style input[type=range]:focus {outline: none;box-shadow:none !important;background:transparent !important;}.with_frm_style .frm_range_container{text-align:center;}.with_frm_style input[type=range]::-webkit-slider-runnable-track {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;}.with_frm_style input[type=range]::-moz-range-track {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;border-color: transparent;border-width: 39px 0;color: transparent;}.with_frm_style input[type=range]::-ms-fill-lower {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;}.with_frm_style input[type=range]::-ms-fill-upper {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;}.with_frm_style input[type=range]::-webkit-slider-thumb {-webkit-appearance: none;-webkit-border-radius: 20px;height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;margin-top: -10px;}.with_frm_style input[type=range]::-moz-range-thumb {height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;-moz-border-radius: 20px;}.with_frm_style input[type=range]::-ms-thumb {height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;}@media screen and (max-width: 768px) {.frm-pass-req, .frm-pass-verified {width: 50% !important;white-space: nowrap;}}.frm-pass-req, .frm-pass-verified {float: left;width: 20%;line-height: 20px;font-size: 12px;padding-top: 4px;min-width: 175px;}.frm-pass-req:before, .frm-pass-verified:before {padding-right: 4px;font-size: 12px !important;vertical-align: middle !important;}span.frm-pass-verified::before {content: \'\\e606\';}span.frm-pass-req::before {content: \'\\e608\';}div.frm-password-strength {width: 100%;float: left;}div.frm_repeat_grid:after, div.frm_repeat_inline:after, div.frm_repeat_sec:after {content: \'\';display: table;clear: both;}.with_frm_style .frm-summary-page-wrapper {padding: 50px;margin: 25px 0 50px;border: 1px solid #cccccc;border-radius: 4px;}.with_frm_style .frm-summary-page-wrapper .frm-edit-page-btn {float: right;margin: 0;padding: 3px 10px;font-size: 13px;}.frm-summary-page-wrapper .frm-line-table th {width: 40%;}button .frm-icon {display: inline-block;color: inherit;width: 12px;height: 12px;fill: currentColor;}.frm-line-table {width: 100%;border-collapse: collapse;margin-top: 0.5em;font-size: 14px;}.frm-line-table tr {background-color: transparent;border-bottom: 1px solid rgba(204,204,204,0.6);}.frm-line-table td,.frm-line-table th {border: 0;padding: 20px 15px;background-color: transparent;vertical-align: top;color: #444444;}.frm-line-table th {opacity: .7;font-size: 1.1em;font-weight: 500;}.frm-line-table h3 {font-size: 21px;font-weight: 500;margin: 0;}.frm_form_field .frm_total_formatted {display: inline-block;margin: 5px 0 0;}.with_frm_style .chosen-container{font-size:14px;position:relative;display:inline-block;zoom:1;vertical-align:middle;width:100% !important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.with_frm_style .chosen-container * {  -webkit-box-sizing: border-box;  box-sizing: border-box;}.with_frm_style .chosen-container .chosen-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:100%;z-index:1010;width:100%;clip: rect(0, 0, 0, 0);-webkit-clip-path: inset(100% 100%);clip-path: inset(100% 100%);}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{clip: auto;-webkit-clip-path: none;clip-path: none;}.with_frm_style .chosen-container a{cursor:pointer;}.with_frm_style .chosen-container .search-choice .group-name,.with_frm_style .chosen-container .chosen-single .group-name {margin-right: 4px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-weight: normal;color: #999999;}.with_frm_style .chosen-container .search-choice .group-name:after,.with_frm_style .chosen-container .chosen-single .group-name:after {content: \":\";padding-left: 2px;vertical-align: top;}.with_frm_style .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;text-decoration:none;white-space:nowrap;line-height:24px;}.with_frm_style .chosen-container-single .chosen-default {color: #999;}.with_frm_style .chosen-container-single .chosen-single span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.with_frm_style .chosen-container-single .chosen-single-with-deselect span{margin-right:38px;}.with_frm_style .chosen-container-single .chosen-single abbr{display:block;position:absolute;right:26px;top:6px;width:12px;height:12px;font-size:1px;background:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite.png\') -42px 1px no-repeat;}.with_frm_style .chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single .chosen-single div{position:absolute;right:0;top:0;display:block;height:100%;width:18px;}.with_frm_style .chosen-container-single .chosen-single div b{background:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite.png\') no-repeat 0 2px;display:block;width:100%;height:100%;}.with_frm_style .chosen-container-single .chosen-search{padding:3px 4px;position:relative;margin:0;white-space:nowrap;z-index:1010;}.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"]{width:100% !important;max-width:100% !important;height:auto;background:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite.png\') no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box;}.with_frm_style .chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;clip: rect(0, 0, 0, 0);-webkit-clip-path: inset(100% 100%);clip-path: inset(100% 100%);}.with_frm_style .chosen-container .chosen-results{cursor:text;overflow-x:hidden;overflow-y:auto;position:relative;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch;}.with_frm_style .chosen-container .chosen-results li:before{background:none;}.with_frm_style .chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none;}.with_frm_style .chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer;}.with_frm_style .chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container .chosen-results li.highlighted{background-color: #3875d7;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);color: #fff;}.with_frm_style .chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4;}.with_frm_style .chosen-container .chosen-results li.group-result{display:list-item;font-weight:bold;cursor:default;}.with_frm_style .chosen-container .chosen-results li.group-option{padding-left:15px;}.with_frm_style .chosen-container .chosen-results li em{font-style:normal;text-decoration:underline;}.with_frm_style .chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto;border: 1px solid #aaa;background-color: #fff;cursor:text;}.with_frm_style .chosen-container-multi .chosen-choices li{float:left;list-style:none;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type=\"text\"]{margin:1px 0;padding:0 !important;height:25px;outline:0;border:0 !important;background:transparent !important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;width: 25px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:1px 5px 1px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);color:#333;line-height:13px;cursor:default;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice span {word-wrap: break-word;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite.png\') -42px 1px no-repeat;font-size:1px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);color:#666;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-results{margin:0;padding:0;}.with_frm_style .chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container-single.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;border-bottom-right-radius:0;border-bottom-left-radius:0;box-shadow:0 1px 0 #fff inset;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px;}.with_frm_style .chosen-container-active .chosen-choices {border: 1px solid #5897fb;-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-active .chosen-choices li.search-field input[type=\"text\"]{color:#111 !important;}.with_frm_style .chosen-disabled{opacity:0.5 !important;cursor:default;}.with_frm_style .chosen-disabled .chosen-single{cursor:default;}.with_frm_style .chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default;}.with_frm_style .chosen-rtl{text-align:right;}.with_frm_style .chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0;}.with_frm_style .chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl;}.with_frm_style .chosen-rtl .chosen-single-with-deselect span{margin-left:38px;}.with_frm_style .chosen-rtl .chosen-single div{right:auto;left:3px;}.with_frm_style .chosen-rtl .chosen-single abbr{right:auto;left:26px;}.with_frm_style .chosen-rtl .chosen-choices li{float:right;}.with_frm_style .chosen-rtl .chosen-choices li.search-field input[type=\"text\"]{direction:rtl;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice{margin:1px 5px 1px 0;padding:3px 5px 3px 19px;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0;}.with_frm_style .chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0;}.with_frm_style .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none;}.with_frm_style .chosen-rtl .chosen-search input[type=\"text\"]{padding:4px 5px 4px 20px;background:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite.png\') no-repeat -30px -20px;direction:rtl;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px;}.with_frm_style .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px;}.with_frm_style .frm_repeat_sec,.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid {position: relative;}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){.with_frm_style .chosen-rtl .chosen-search input[type=\"text\"],.with_frm_style .chosen-container-single .chosen-single abbr,.with_frm_style .chosen-container-single .chosen-single div b,.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"],.with_frm_style .chosen-container-multi .chosen-choices .search-choice .search-choice-close,.with_frm_style .chosen-container .chosen-results-scroll-down span,.with_frm_style .chosen-container .chosen-results-scroll-up span{background-image:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite2x.png\') !important;background-size:52px 37px !important;background-repeat:no-repeat !important;}}@-webkit-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-moz-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-webkit-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@-moz-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}.frm_dropzone, .frm_dropzone * {box-sizing: border-box;}.frm_dropzone.frm_single_upload,.frm_dropzone.dz-clickable {min-height: 60px;margin-top:5px;line-height:1.42857143;}.frm_dropzone.dz-clickable * {cursor: default;}.frm_dropzone.frm_single_upload {max-width: 200px;}.frm_dropzone.frm_single_upload.dz-started {max-width: 300px;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: .5em 0 1em;}.frm_dropzone .dz-message{border: 2px dashed #dfdfdf;background:#ffffff;padding: 20px;border-radius:5px;cursor: pointer;display:none;font-size:20px;text-align: center;margin: .5em 0 1em;}.frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: 0 0 .5em 0;}.frm_dropzone.frm_single_upload.dz-started .dz-message{display: none;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone .frm_upload_icon{display:block;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone.dz-clickable .dz-message * {cursor: pointer;}#frm_form_editor_container .frm_dropzone.dz-clickable,#frm_form_editor_container .frm_dropzone.dz-clickable *{cursor: default;}.frm_dropzone.dz-drag-hover .dz-message {opacity: 0.5;}.frm_dropzone .frm_upload_icon:before{font-size:40px;}.frm_dropzone .frm_small_text {font-size:14px;}.frm_dropzone.dz-drag-hover {border-style: solid;}.frm_dropzone .dz-preview {padding: 15px 0;border-bottom: 1px solid #dfdfdf;}.frm_dropzone .dz-preview:last-child {border-bottom: none;}.frm_dropzone .dz-preview:hover {z-index: 1000;}.frm_dropzone .dz-preview.dz-file-preview .dz-details {opacity: 1;}.frm_dropzone .dz-preview.dz-image-preview .dz-details {-webkit-transition: opacity 0.2s linear;-moz-transition: opacity 0.2s linear;-ms-transition: opacity 0.2s linear;-o-transition: opacity 0.2s linear;transition: opacity 0.2s linear;}.frm_dropzone .dz-preview .dz-remove {cursor: pointer;border: none;float: right;}.frm_dropzone .dz-preview:hover .dz-details {opacity: 1;}.frm_dropzone .dz-preview .dz-details {font-size: 14px;margin: 5px 0 10px;}.frm_dropzone .dz-preview .dz-details .dz-size,.frm_dropzone .dz-preview .dz-details .dz-filename {display: inline-block;overflow: hidden;white-space: nowrap;}.frm_dropzone .dz-preview .dz-details .dz-size strong {font-weight: normal;}.frm_dropzone .dz-preview .dz-details .dz-filename {max-width: 65%;text-overflow: ellipsis;}.frm_dropzone .dz-preview .dz-details .dz-filename a{cursor:pointer;}.frm_dropzone .dz-preview .dz-column {float: right;width: 68%;}.frm_dropzone .dz-preview .dz-image {overflow: hidden;width: 30%;height: 60px;display: block;float: left;margin-right: 2%;}.frm_dropzone .dz-preview .dz-image img {display: block;margin:0 auto;max-height: 60px;}.frm_dropzone .dz-preview.dz-success .dz-success-mark {-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);}.frm_dropzone .dz-preview.dz-processing .dz-progress {-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-ms-transition: all 0.2s linear;-o-transition: all 0.2s linear;transition: all 0.2s linear;}.frm_dropzone .dz-preview .dz-progress {pointer-events: none;position: relative;height: 10px;width: 100%;background: rgba(221, 221, 221, 1);-webkit-transform: scale(1);border-radius: 8px;overflow: hidden;}.frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_dropzone .dz-preview.dz-complete .dz-progress{background: #333;background: linear-gradient(to bottom, #666, #444);}.frm_dropzone .dz-preview .dz-progress .dz-upload {position: absolute;top: 0;left: 0;bottom: 0;width: 0;-webkit-transition: width 300ms ease-in-out;-moz-transition: width 300ms ease-in-out;-ms-transition: width 300ms ease-in-out;-o-transition: width 300ms ease-in-out;transition: width 300ms ease-in-out;}.frm_dropzone .dz-preview.dz-error .dz-error-message {display: block;opacity: 1;pointer-events: auto;}.frm_dropzone .dz-preview .dz-error-message {pointer-events: none;display: none;opacity: 0;-webkit-transition: opacity 0.3s ease;-moz-transition: opacity 0.3s ease;-ms-transition: opacity 0.3s ease;-o-transition: opacity 0.3s ease;transition: opacity 0.3s ease;color: #B94A48;padding: 0.5em;}.frm_dropzone .fallback input[type=file]{display:block;}.frm_compact_text{display:none;}.frm_compact .frm_dropzone.dz-clickable{padding:0;border:none;background-color:transparent;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_compact .frm_compact_text{display:inline;}.frm_upload_text button,.frm_compact_text button {background: none !important;color: inherit !important;border: none !important;padding: 0 !important;font: inherit !important;cursor: pointer !important;outline: inherit !important;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_compact .frm_dropzone.dz-clickable .dz-message{font-size:14px;border:1px solid #dfdfdf;background:#fff;display: inline-block;border-radius: 4px;padding: 6px 11px;box-sizing: border-box;box-shadow: 0 1px 1px #eeeeee;vertical-align: middle;margin: 0 0 1em;}.frm_compact .frm_dropzone.frm_single_upload.dz-started .dz-message,.frm_compact .frm_dropzone.frm_single_upload.dz-started.dz-clickable .dz-message {display: none;}.frm_compact .frm_dropzone .frm_upload_icon:before{font-size:22px;padding-right:7px;vertical-align: middle;}.frm_compact .frm_dropzone .frm_upload_icon{display:inline;}.frm_compact .frm_dropzone .dz-preview{min-height:20px;max-width:200px;margin: 0 5px;padding: 0;display: inline-block;border-bottom: none;}.frm_compact .frm_dropzone .dz-preview.frm_clearfix:after {content:\'\';}.frm_compact .frm_dropzone .frm_upload_text,.frm_compact .frm_dropzone .frm_small_text,.frm_compact .frm_dropzone .dz-preview .dz-image,.frm_compact .frm_dropzone .dz-preview .dz-details .dz-size{display:none;}.frm_compact .frm_dropzone .dz-preview .dz-details {margin: 0;}.frm_compact .frm_dropzone .dz-preview .dz-column {float: none;width: 100%;}.frm_compact .frm_dropzone .dz-preview .dz-details .dz-filename {overflow: hidden;text-overflow: ellipsis;}.frm-show-form .dz-hidden-input{display:none;}.frm_rootline_group{margin: 20px 0 30px;}ul.frm_page_bar{list-style-type: none;margin: 0 !important;padding: 0;width: 100%;float: left;display: table;display: -webkit-flex;display: flex;flex-wrap: wrap;box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}ul.frm_page_bar li{display: inline-block;-ms-flex: 1;flex: 1;}.frm_forms .frm_page_bar input,.frm_forms .frm_page_bar input:disabled{transition: background-color 0.1s ease;color: #ffffff;background-color: #dddddd;font-size: 18px;border-width: 2px;border-style: solid;border-color: #dfdfdf;}.frm_forms .frm_page_bar input:focus{outline: none;}.frm_forms .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_forms .frm_page_bar .frm_current_page input[type=\"button\"]{background-color: #dddddd;border-color: #dfdfdf;}.frm_rootline_single{text-align: center;margin: 0;padding: 0;}.frm_current_page .frm_rootline_title{color: #008ec2;}.frm_rootline_title,.frm_pages_complete,.frm_percent_complete {font-size:14px;padding:4px;}.frm_pages_complete {float: right;margin-right:13px;}.frm_percent_complete {float: left;margin-left:13px;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled {width: 100%;border: none;border-top: 1px solid #dfdfdf;border-bottom: 1px solid #dfdfdf;box-shadow: inset 0 10px 20px -15px #aaa;margin: 5px 0;padding: 6px 0;border-radius:0;font-size:0;line-height:15px;}.frm_forms .frm_progress_line.frm_show_lines input {border-left: 1px solid #ffffff;border-right: 1px solid #ffffff;}.frm_progress_line .frm_rootline_single {display: flex;flex-direction: column;justify-content: flex-end;}.frm_forms .frm_progress_line li:first-of-type input {border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-left: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-right: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-right: 1px solid #dfdfdf;}.frm_forms .frm_progress_line .frm_current_page input[type=\"button\"] {border-left: 1px solid #dfdfdf;}.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type=\"button\"] {border-right: 1px solid #ffffff;}.frm_forms .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_forms .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_rtl.frm_forms .frm_progress_line li:first-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-top-left-radius:0px;border-bottom-left-radius:0px;border-right: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input{border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-left: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-left: 1px solid #dfdfdf;border-right:none;}.frm_rtl.frm_forms .frm_progress_line .frm_current_page input[type=\"button\"] {border-right: 1px solid #dfdfdf;border-left:none;}.frm_rtl.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type=\"button\"] {border-left: 1px solid #ffffff;border-right:none;}.frm_rootline.frm_show_lines:before {border-top-width: 2px;border-top-style: solid;border-top-color: #dfdfdf;content: \"\";margin: 0 auto;position: absolute;top: 15px;left: 0;right: 0;bottom: 0;width: 100%;z-index: -1;}.frm_rootline.frm_show_lines{position: relative;z-index: 1;}.frm_rootline.frm_show_lines span{display:block;}.frm_forms .frm_rootline input {width: 30px;height: 30px;min-height:auto;border-radius: 30px;padding:0;}.frm_forms .frm_rootline input:focus {border-color: #008ec2;}.frm_forms .frm_rootline .frm_current_page input[type=\"button\"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled,.frm_forms .frm_progress_line .frm_current_page input[type=\"button\"],.frm_forms .frm_rootline.frm_no_numbers input,.frm_forms .frm_rootline.frm_no_numbers .frm_current_page input[type=\"button\"] {color: transparent !important;}@media only screen and (max-width: 700px) {.frm_progress span.frm_rootline_title,.frm_rootline.frm_rootline_10 span.frm_rootline_title,.frm_rootline.frm_rootline_9 span.frm_rootline_title,.frm_rootline.frm_rootline_8 span.frm_rootline_title,.frm_rootline.frm_rootline_7 span.frm_rootline_title,.frm_rootline.frm_rootline_6 span.frm_rootline_title,.frm_rootline.frm_rootline_5 span.frm_rootline_title{display:none;}}@media only screen and (max-width: 500px) {.frm_rootline.frm_rootline_4 span.frm_rootline_title,.frm_rootline.frm_rootline_3 span.frm_rootline_title{display:none;}}.with_frm_style.frm_login_form,.with_frm_style.frm_login_form form{clear:both;}.frm_login_form .login_lost_pw.frm_half{text-align:right;}.frm_inline_login.frm_no_labels .frm_submit input,.frm_inline_login.frm_no_labels .frm_submit button{margin-top:0 !important;}.with_frm_style.frm_login_form.frm_slide.frm_inline_login form,.with_frm_style.frm_login_form.frm_slide.frm_inline_login form{clear:none;}.with_frm_style.frm_slide.frm_inline_login .frm-open-login{float:left;margin-right:15px;}.with_frm_style.frm_slide form,.frm_slide form,.with_frm_style.frm_slide.frm_inline_login a.forgot-password,.with_frm_style.frm_slide.frm_inline_login .login-remember{display:none;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:0;}.with_frm_style.frm_slide.frm_inline_login fieldset{padding-bottom:0;}.with_frm_style.frm_login_form.frm_inline_login .login-username,.with_frm_style.frm_login_form.frm_inline_login .login-password,.with_frm_style.frm_login_form.frm_inline_login .login-remember{margin-right:0 !important;}.with_frm_style.frm_login_form.frm_inline_login form,.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:static !important;}.with_frm_style.frm_login_form a{text-decoration:none;border:none;outline:none;box-shadow:none;}.with_frm_style.frm_login_form .cptch_block .cptch_title{display:none;}@media only screen and (max-width: 600px) {.frm_login_form .login_lost_pw.frm_half{text-align:left;}.with_frm_style .login-remember.frm_first.frm_half,.with_frm_style.frm_login_form .login_lost_pw.frm_half{text-align:center;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:20px;}}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth .frm_primary_label{display: block !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(2, 1fr);}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style .frm-g-recaptcha > div > div,.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe,.with_frm_style .frm-g-recaptcha iframe{width:100%;}}.with_frm_style .frm_form_field{clear:both;}.frm_form_field,.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{width:auto;}.frm_inline_form .frm_form_field.form-field{margin-right:2.5%;display:inline-block;}.frm_inline_form .frm_submit{display:inline-block;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm10,.frm_submit.frm10,.frm_form_field.frm_right_half,.frm_form_field.frm_right_third,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_right_fourth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_half,.frm_form_field.frm_last_third,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_last_fourth,.frm_form_field.frm_last_fifth,.frm_form_field.frm_last_sixth,.frm_form_field.frm_last_seventh,.frm_form_field.frm_last_eighth,.frm_form_field.frm_last_inline,.frm_form_field.frm_last,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_two_thirds,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_inline,.frm_submit.frm_inline{clear:none;float:left;margin-left:2.5%;}.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{clear:left;float:left;margin-left:0;}.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{width:48.75%;}.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{width:31.66%;}.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{width:65.82%;}.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{width:23.12%;}.frm_form_field.frm9,.frm_form_field.frm_three_fourths{width:74.36%;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{width:18%;}.frm_form_field.frm_two_fifths {width:38.5%;}.frm_form_field.frm_three_fifths {width:59%;}.frm_form_field.frm_four_fifths {width:79.5%;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{width:14.58%;}.frm_form_field.frm10,.frm_submit.frm10{width:82.92%;}.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh{width:12.14%;}.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{width:10.31%;}.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;}.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type=\'checkbox\']):not([type=\'radio\']):not([type=\'button\']),.frm_full select,.frm_full textarea{width:100% !important;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container,.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container,.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display:block;}.frm_form_field.frm_left_container .frm_primary_label{float:left;display:inline;max-width:33%;margin-right:5%;}.with_frm_style .frm_conf_field.frm_left_container .frm_primary_label{display:inline;visibility:hidden;}.frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_left_container textarea,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_left_container .chosen-container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_right_container textarea,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_right_container .chosen-container,.frm_form_field.frm_right_container .frm_combo_inputs_container{max-width:62%;}.frm_form_field.frm_left_container .frm_combo_inputs_container input,.frm_form_field.frm_left_container .frm_combo_inputs_container select,.frm_form_field.frm_right_container .frm_combo_inputs_container input,.frm_form_field.frm_right_container .frm_combo_inputs_container select{max-width:100%;}.frm_form_field.frm_left_container .frm_data_container,.frm_form_field.frm_right_container .frm_data_container,.frm_form_field.frm_inline_container .frm_data_container,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container .frm_combo_inputs_container,.frm_form_field.frm_inline_container .frm_combo_inputs_container,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_inline_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_inline_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_inline_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_inline_container .g-recaptcha{display:inline-block;}.frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_left_container .frm_primary_label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;max-width:33%;}.with_frm_style .frm_left_container .frm_primary_label{float:left;display:inline !important;width:150px;max-width:33% !important;margin-right:10px !important;}.with_frm_style .frm_right_container .frm_primary_label{display:inline !important;width:150px;max-width:33% !important;margin-left:10px !important;}.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_left_container textarea,.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_right_container textarea,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:62% !important;}.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field input,.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field select,.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field input,.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field select{max-width:100% !important;}.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha{display:inline-block !important;}.with_frm_style .frm_left_container > p.description::before,.with_frm_style .frm_left_container > div.description::before,.with_frm_style .frm_left_container > div.frm_description::before,.with_frm_style .frm_left_container > .frm_error::before,.with_frm_style .frm_right_container > p.description::after,.with_frm_style .frm_right_container > div.description::after,.with_frm_style .frm_right_container > div.frm_description::after,.with_frm_style .frm_right_container > .frm_error::after{content:\'\' !important;display:inline-block !important;width:150px;max-width:33% !important;margin-right:10px !important;}.with_frm_style .frm_left_container.frm_inline .frm_primary_label{max-width:90% !important;}.with_frm_style .form-field.frm_col_field{clear:none;float:left;margin-right:20px;}.with_frm_style .form-field.frm_col_field div.frm_description{width:auto;max-width:100%;}.with_frm_style .frm_inline_container .frm_primary_label,.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px !important;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_checkbox{float:left;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width:30%;margin-right:5%;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:22%;margin-right:4%;}.frm_form_field.frm_two_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_two_col .frm_checkbox:nth-child(2n+2),.frm_form_field.frm_three_col .frm_radio:nth-child(3n+3),.frm_form_field.frm_three_col .frm_checkbox:nth-child(3n+3),.frm_form_field.frm_four_col .frm_radio:nth-child(4n+4),.frm_form_field.frm_four_col .frm_checkbox:nth-child(4n+4){margin-right:0;}.with_frm_style.frm_rtl .frm_form_field.frm2,.with_frm_style.frm_rtl .frm_form_field.frm3,.with_frm_style.frm_rtl .frm_form_field.frm4,.with_frm_style.frm_rtl .frm_form_field.frm6,.with_frm_style.frm_rtl .frm_form_field.frm8,.with_frm_style.frm_rtl .frm_form_field.frm9,.with_frm_style.frm_rtl .frm_form_field.frm10,.with_frm_style.frm_rtl .frm_form_field.frm_half,.with_frm_style.frm_rtl .frm_form_field.frm_third,.with_frm_style.frm_rtl .frm_form_field.frm_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_sixth,.with_frm_style.frm_rtl .frm_form_field.frm_seventh,.with_frm_style.frm_rtl .frm_form_field.frm_eighth,.with_frm_style.frm_rtl .frm_form_field.frm_inline,.with_frm_style.frm_rtl .frm_form_field.frm_left_half,.with_frm_style.frm_rtl .frm_form_field.frm_left_third,.with_frm_style.frm_rtl .frm_form_field.frm_left_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_left_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_left_inline,.with_frm_style.frm_rtl .frm_form_field.frm_first_half,.with_frm_style.frm_rtl .frm_form_field.frm_first_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_first_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_first_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_first_inline,.with_frm_style.frm_rtl .frm_form_field.frm_right_half,.with_frm_style.frm_rtl .frm_form_field.frm_right_third,.with_frm_style.frm_rtl .frm_form_field.frm_right_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_right_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_right_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_right_inline,.with_frm_style.frm_rtl .frm_form_field.frm_last_half,.with_frm_style.frm_rtl .frm_form_field.frm_last_third,.with_frm_style.frm_rtl .frm_form_field.frm_last_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_last_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_last_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_last_inline{float:right;margin-right:2.5%;margin-left:0;clear:none;}.with_frm_style.frm_rtl .frm_form_field.frm_left_half,.with_frm_style.frm_rtl .frm_form_field.frm_first_half,.with_frm_style.frm_rtl .frm_form_field.frm_first,.with_frm_style.frm_rtl .frm_form_field.frm_left_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_left_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_first_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_first_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_left_inline,.with_frm_style.frm_rtl .frm_form_field.frm_first_inline{clear:right;margin-right:0;}.with_frm_style.frm_rtl .frm_form_field.frm_two_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_three_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_four_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_two_col .frm_checkbox,.with_frm_style.frm_rtl .frm_form_field.frm_three_col .frm_checkbox,.with_frm_style.frm_rtl .frm_form_field.frm_four_col .frm_checkbox{float:right;}@media only screen and (max-width: 500px) {.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_left_container textarea,.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_right_container textarea,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:100% !important;}.with_frm_style .frm_left_container > p.description::before,.with_frm_style .frm_left_container > div.description::before,.with_frm_style .frm_left_container > div.frm_description::before,.with_frm_style .frm_left_container > .frm_error::before,.with_frm_style .frm_right_container > p.description::after,.with_frm_style .frm_right_container > div.description::after,.with_frm_style .frm_right_container > div.frm_description::after,.with_frm_style .frm_right_container > .frm_error::after{display:none !important;}.with_frm_style .frm_left_container .frm_primary_label,.with_frm_style .frm_right_container .frm_primary_label{width:100% !important;max-width:100% !important;margin-right:0 !important;margin-left:0 !important;padding-right:0 !important;padding-left:0 !important;}}@media only screen and (max-width: 600px){.with_frm_style .frm_form_field.frm_half.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_half.frm_left_container select,.with_frm_style .frm_form_field.frm_half.frm_left_container textarea,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_half.frm_left_container.frm-g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_left_container.g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_half.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_half.frm_right_container select,.with_frm_style .frm_form_field.frm_half.frm_right_container textarea,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_half.frm_right_container.frm-g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_right_container.g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_right_container .chosen-container{max-width:100% !important;}.with_frm_style .frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_primary_label{max-width:100% !important;margin-right:0;margin-left:0;padding-right:0;padding-left:0;width:100% !important;}.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid{margin: 20px 0;}.with_frm_style .frm_form_field.frm_first_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_error{margin-right:0;margin-left:0;padding-right:0;padding-left:0;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm10,.frm_submit.frm10,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_first_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_last_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_last_inline{width:100%;margin-left:0;margin-right:0;clear:both;float:none;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:48%;}.frm_form_field.frm_four_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_four_col .frm_checkbox:nth-child(2n+2){margin-right:0;}}.frm_style_formidable-style.with_frm_style .form-field {margin-bottom: 10px;}.splash .frm_form_field.frm_three_fourths {margin-left:0% !important;}.splash .frm_style_formidable-style.with_frm_style .frm_submit button {height:56px !important;}.frm_form_field.frm9, .frm_form_field.frm_three_fourths {width: 80%;}@media (max-width: 981px) {.frm_form_field.frm9, .frm_form_field.frm_three_fourths {width: 100% !important;}}.frm_inline_form .frm_form_field.form-field {margin-right: 4%;display: inline-block;}@media (min-width: 981px) {.frm_form_field.frm9, .frm_form_field.frm_three_fourths {max-width: 400px !important;}}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message, .frm_style_formidable-style.with_frm_style input[type=submit], .frm_style_formidable-style.with_frm_style .frm_submit input[type=button], .frm_style_formidable-style.with_frm_style .frm_submit button, .frm_form_submit_style, .frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit] {text-transform:lowercase !important;}.frm_style_formidable-style.with_frm_style input[type=text], .frm_style_formidable-style.with_frm_style input[type=password], .frm_style_formidable-style.with_frm_style input[type=email], .frm_style_formidable-style.with_frm_style input[type=number], .frm_style_formidable-style.with_frm_style input[type=url], .frm_style_formidable-style.with_frm_style input[type=tel], .frm_style_formidable-style.with_frm_style input[type=phone], .frm_style_formidable-style.with_frm_style input[type=search], .frm_style_formidable-style.with_frm_style select, .frm_style_formidable-style.with_frm_style textarea, .frm_form_fields_style, .frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container, .frm_form_fields_active_style, .frm_form_fields_error_style, .frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices, .frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single {-moz-border-radius: 0px;-webkit-border-radius: 0px;border-radius: 0px;}','no'),(222,'frmpro-credentials','a:1:{s:7:\"license\";s:23:\"EN8SH-ICBJI-CQ9UU-LT7FQ\";}','yes'),(223,'frmpro-authorized','1','yes'),(225,'frm_324cf0b20c719d80a629d27737b58ab3','2020-09-29 01:04:08','no'),(226,'widget_frm_list_items','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(227,'frm_last_cleared','2019-07-01 11:03:30','yes'),(230,'frmpro_db_version','4.04.02-79','yes'),(231,'frmpro_options','O:14:\"FrmProSettings\":46:{s:11:\"option_name\";s:14:\"frmpro_options\";s:8:\"edit_msg\";s:39:\"Your submission was successfully saved.\";s:12:\"update_value\";s:6:\"Update\";s:17:\"already_submitted\";s:36:\"You have already submitted that form\";s:15:\"cal_date_format\";s:8:\"mm/dd/yy\";s:11:\"date_format\";s:5:\"m/d/Y\";s:9:\"menu_icon\";s:0:\"\";s:4:\"menu\";N;s:7:\"mu_menu\";N;s:8:\"use_html\";N;s:10:\"jquery_css\";N;s:12:\"accordion_js\";N;s:9:\"fade_form\";b:1;s:7:\"old_css\";s:1:\"1\";s:11:\"success_msg\";N;s:9:\"blank_msg\";N;s:10:\"unique_msg\";N;s:11:\"invalid_msg\";N;s:10:\"failed_msg\";N;s:12:\"submit_value\";N;s:9:\"login_msg\";N;s:16:\"admin_permission\";N;s:8:\"email_to\";N;s:10:\"load_style\";s:3:\"all\";s:12:\"custom_style\";b:1;s:6:\"pubkey\";s:0:\"\";s:7:\"privkey\";s:0:\"\";s:7:\"re_lang\";s:0:\"\";s:7:\"re_type\";s:0:\"\";s:6:\"re_msg\";s:39:\"The reCAPTCHA was not entered correctly\";s:8:\"re_multi\";N;s:6:\"no_ips\";N;s:12:\"current_form\";i:0;s:8:\"tracking\";N;s:10:\"permalinks\";b:0;s:15:\"preview_page_id\";N;s:14:\"frm_view_forms\";s:13:\"administrator\";s:14:\"frm_edit_forms\";s:13:\"administrator\";s:16:\"frm_delete_forms\";s:13:\"administrator\";s:19:\"frm_change_settings\";s:13:\"administrator\";s:16:\"frm_view_entries\";s:13:\"administrator\";s:18:\"frm_delete_entries\";s:13:\"administrator\";s:18:\"frm_create_entries\";s:13:\"administrator\";s:16:\"frm_edit_entries\";s:13:\"administrator\";s:16:\"frm_view_reports\";s:13:\"administrator\";s:17:\"frm_edit_displays\";s:13:\"administrator\";}','no'),(251,'frm_attempt_copy','1','no'),(275,'theme_mods_Divi-child','a:10:{i:0;b:0;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:7;}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:18:\"custom_css_post_id\";i:39;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1531742595;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}s:16:\"background_color\";s:6:\"ebebeb\";s:11:\"mhmm_layout\";s:6:\"215035\";s:10:\"mhmm_style\";s:15:\"mhmm-sticky-top\";s:18:\"dtb_modcustomize_0\";b:0;}','yes'),(316,'WPLANG','en_ZA','yes'),(317,'new_admin_email','info@stadsig.co.za','yes'),(335,'frm_api_key','MNFXD-Q8FGU-M4116-E4QGN','yes'),(336,'edd_zapier_license_key','d9f76cb83c3337482e2c69b3b039a460','yes'),(337,'edd_zapier_license_active','valid','yes'),(338,'frm_e0db2069df1bcada07237c761b23abc4','2020-04-19 00:09:57','yes'),(362,'01f1ceb4e102bdfcad5247f7dcb1aafc','a:2:{s:7:\"timeout\";i:1533230025;s:5:\"value\";s:3889:\"{\"new_version\":\"1.05\",\"stable_version\":\"1.05\",\"name\":\"Zapier\",\"slug\":\"formidable-zapier\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/?changelog=1\",\"last_updated\":\"2018-07-31 17:25:39\",\"homepage\":\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzMzI4NzYyNTpkOWY3NmNiODNjMzMzNzQ4MmUyYzY5YjNiMDM5YTQ2MDoxNzA2NDU6ZWM4M2U0OTNiYmEyZDMxODc3NTAwMjY3NGY5MTBmMmQ6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzMzI4NzYyNTpkOWY3NmNiODNjMzMzNzQ4MmUyYzY5YjNiMDM5YTQ2MDoxNzA2NDU6ZWM4M2U0OTNiYmEyZDMxODc3NTAwMjY3NGY5MTBmMmQ6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"sections\":{\"description\":\"<p>Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.<\\/p>\\n\",\"changelog\":\"<p><h4>v1.05 - July 31, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add frmzap_entry_array filter to customize the entry values sent to Zapier<\\/li>\\n<li>New: Add logging of Zapier responses into the Logs addon<\\/li>\\n<li>Fix: Prevent a blank response when fetching the list of forms. This was happening on some sites with a lot of forms<\\/li>\\n<\\/ul>\\n<h4>v1.04 - July 31, 2017<\\/h4>\\r\\n<p>Fix a conflict with API keys between the Zapier and API addons on a multisite network. This solves the issue with the incorrect API key error message in Zapier.<\\/p>\\n<h4>v1.03 - June 5, 2017<\\/h4>\\r\\n<ul>\\n<li>Allow field ids to be used in Zapier mapping instead of only field keys<\\/li>\\n<li>Increase the limit of triggered zaps per form from 5 to 40<\\/li>\\n<li>Fix overloaded property error when setting the user for authentication<\\/li>\\n<li>Prevent error reporting during API calls so the response is formatted correctly<\\/li>\\n<\\/ul>\\n<h4>v1.02 - November 13, 2015<\\/h4>\\r\\n<ul>\\n<li>Prevent error when Formidable is disabled<\\/li>\\n<li>Use static classes for fields and forms<\\/li>\\n<\\/ul>\\n<h4>v1.01 - October 19, 2015<\\/h4>\\r\\n<ul>\\n<li>Order forms by name instead of creation date<\\/li>\\n<li>Allow for REDIRECT_HTTP_AUTHORIZATION<\\/li>\\n<li>Make sure dates are sent in Y-m-d format for max compatibility<\\/li>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"description\":[\"<p>Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.<\\/p>\\n\"],\"changelog\":[\"<p><h4>v1.05 - July 31, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add frmzap_entry_array filter to customize the entry values sent to Zapier<\\/li>\\n<li>New: Add logging of Zapier responses into the Logs addon<\\/li>\\n<li>Fix: Prevent a blank response when fetching the list of forms. This was happening on some sites with a lot of forms<\\/li>\\n<\\/ul>\\n<h4>v1.04 - July 31, 2017<\\/h4>\\r\\n<p>Fix a conflict with API keys between the Zapier and API addons on a multisite network. This solves the issue with the incorrect API key error message in Zapier.<\\/p>\\n<h4>v1.03 - June 5, 2017<\\/h4>\\r\\n<ul>\\n<li>Allow field ids to be used in Zapier mapping instead of only field keys<\\/li>\\n<li>Increase the limit of triggered zaps per form from 5 to 40<\\/li>\\n<li>Fix overloaded property error when setting the user for authentication<\\/li>\\n<li>Prevent error reporting during API calls so the response is formatted correctly<\\/li>\\n<\\/ul>\\n<h4>v1.02 - November 13, 2015<\\/h4>\\r\\n<ul>\\n<li>Prevent error when Formidable is disabled<\\/li>\\n<li>Use static classes for fields and forms<\\/li>\\n<\\/ul>\\n<h4>v1.01 - October 19, 2015<\\/h4>\\r\\n<ul>\\n<li>Order forms by name instead of creation date<\\/li>\\n<li>Allow for REDIRECT_HTTP_AUTHORIZATION<\\/li>\\n<li>Make sure dates are sent in Y-m-d format for max compatibility<\\/li>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"]}\";}','no'),(456,'edd_sl_528d80ef3781ced754349ea3393fdbca','a:2:{s:7:\"timeout\";i:1531923646;s:5:\"value\";s:21462:\"{\"new_version\":\"2.6.1\",\"stable_version\":\"2.6.1\",\"name\":\"Mobile Menu Customizer for Divi\",\"slug\":\"divi-mobile-menu-customizer\",\"url\":\"https:\\/\\/elegantmarketplace.com\\/downloads\\/mobile-menu-customizer-for-divi\\/?changelog=1\",\"last_updated\":\"2018-07-17 05:00:32\",\"homepage\":\"https:\\/\\/elegantmarketplace.com\\/downloads\\/mobile-menu-customizer-for-divi\\/\",\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"<p><strong>Version 2 has arrived!<\\/strong><\\/p>\\n<p>Divi theme has lots of awesome features but one of the features that it lacks is the ability to customize the styling of mobile menu without diving into custom coding. The\\u00a0<strong>Mobile Menu Customizer<\\/strong>\\u00a0plugin lets you style your Divi site mobile menu via Theme Customizer with live preview. Just upload and activate it, then go to Theme Customizer and start styling the mobile menu, as simple as that!<\\/p>\\n<p><strong>Mobile Menu Customizer plugin has been highlighted on Elegant Themes Blog -&gt; <a href=\\\"https:\\/\\/www.elegantthemes.com\\/blog\\/divi-resources\\/divi-plugin-highlight-mobile-menu-customizer\\\" target=\\\"_blank\\\">Read More<\\/a><\\/strong><\\/p>\\n<p>Some of the great features offered by this plugin are:<\\/p>\\n<ul>\\n<li>Assign a different menu for mobile devices<\\/li>\\n<li>Prevent the secondary menu items from being added to mobile menu<\\/li>\\n<li>Mobile Menu Item Icons\\u00a0<strong><em>watch on <a href=\\\"https:\\/\\/youtu.be\\/cYPpqCR4A8Y\\\" target=\\\"_blank\\\">YouTube<\\/a><\\/em><\\/strong><\\/li>\\n<li>Mobile Menu Background Image<\\/li>\\n<li>Type any\\u00a0text besides the\\u00a0mobile menu hamburger icon (e.g. \\\"Menu\\\")<\\/li>\\n<li>10 New Menu Animations\\u00a0\\u00a0<strong><em>watch on <a href=\\\"https:\\/\\/youtu.be\\/vx1WrRgFlg0\\\" target=\\\"_blank\\\">YouTube<\\/a><\\/em><\\/strong><\\/li>\\n<li>Menu Gradients\\u00a0\\u00a0<strong><em>watch on <a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=PYDLjHf8zZQ\\\" target=\\\"_blank\\\">YouTube<\\/a><\\/em><\\/strong><\\/li>\\n<li>Enable search icon for Centered and Centered Inline Logo headers<\\/li>\\n<li>Automatic update notifications with one-click updates via WordPress Dashboard<\\/li>\\n<li>Making mobile menu fullwidth<\\/li>\\n<li>Making mobile menu fixed<\\/li>\\n<li>Collapse submenus (parent menu item url remains clickable)<\\/li>\\n<li>Submenu Accordion feature<\\/li>\\n<li>10 New Submenu Animations<\\/li>\\n<li>Aligning menu link text<\\/li>\\n<li>Adjusting menu item height<\\/li>\\n<li>Applying menu shadow<\\/li>\\n<\\/ul>\\n<p>And lots of other controls to play with\\u00a0<strong>colors<\\/strong>,\\u00a0<strong>borders<\\/strong>,\\u00a0<strong>text sizes<\\/strong>,\\u00a0<strong>margins<\\/strong>,\\u00a0<strong>paddings<\\/strong>, etc. of the mobile menu.<\\/p>\\n<p>Mobile Menu Customizer plugin lets you style the mobile menu independently from desktop menu; all its settings will take effect only on the mobile menu (Tablet &amp;; Phone). It supports all 5 header formats of Divi\\u00a0<em> Default, Centered, Centered Inline Logo, Slide-In and Fullscreen<\\/em>, but current version of the plugin focuses more on the\\u00a0<strong><em>Default<\\/em><\\/strong>,\\u00a0<strong><em>Centered<\\/em><\\/strong>\\u00a0and\\u00a0<strong><em>Centered Inline Logo<\\/em><\\/strong>\\u00a0header formats which means that not all of the features are available for\\u00a0<em>Slide-In<\\/em>\\u00a0and\\u00a0<em>Fullscreen<\\/em>\\u00a0header formats. \\u00a0Also some of the features are not applicable to all header formats, e.g\\u00a0<em>menu<\\/em>\\u00a0<em>shadow<\\/em>, which is not available for the\\u00a0<em>Fullscreen<\\/em>\\u00a0header format but available for other header formats.<\\/p>\\n<p><strong>IMPORTANT<\\/strong>: Please make sure that there is no custom code applied to the mobile menu of your site which could potentially conflict with code of the Mobile Menu Customizer plugin. This plugin works best with default mobile menu of Divi.<\\/p>\\n<p>[video width=\\\"1364\\\" height=\\\"662\\\" mp4=\\\"https:\\/\\/elegantmarketplace.com\\/wp-content\\/uploads\\/2017\\/06\\/MMC-animations-featured-gif-1364.mp4\\\"][\\/video]<\\/p>\\n<p>[gallery size=\\\"medium\\\" link=\\\"file\\\" ids=\\\"338559,338560,338562,338563,338558,338556,338554,338557,338561,338555,186778,186779,186780,186781,186782,186783\\\"]<\\/p>\\n<\\/p>\\n<p>Other Divi plugins by Ivan Chi<\\/p>\\n<p><a href=\\\"https:\\/\\/elegantmarketplace.com\\/downloads\\/dotnav\\/\\\" target=\\\"_blank\\\"><\\/a> <a href=\\\"https:\\/\\/elegantmarketplace.com\\/downloads\\/scrolltop\\/\\\" target=\\\"_blank\\\"><\\/a><\\/p>\\n\",\"changelog\":\"<p>- v2.6 (21.04.2018)<\\/p>\\n<p>-- New: added support for Divi Layouts.<br \\/>\\nNow you can create your mobile menu layouts in Divi Builder and add these layouts from Divi Library to mobile menu.<br \\/>\\nWorks for the \\\"MMC Mobile Menu\\\" location menus and is available for the Default, Centered and Centered Inline Logo header formats.<\\/p>\\n<p>- v2.5.1 (19.04.2018)<\\/p>\\n<p>-- Improvement: enabled menu item icons feature for the menu assigned to the \\\"MMC Mobile Menu\\\" location<br \\/>\\n-- Fix: fixed an issue with the menu items customization causing a JS error in Theme Customizer<\\/p>\\n<p>- v2.5 (17.04.2018)<\\/p>\\n<p>-- New feature: added a new menu location(MMC Mobile Menu) allowing you to use a different menu for mobile devices<br \\/>\\n-- New feature: prevent the secondary menu items from being added to the mobile menu or move them above the main menu items<\\/p>\\n<p>- v2.4 (01.04.2018)<\\/p>\\n<p>-- New feature: added the Accordion feature allowing to have only one submenu opened at a time<br \\/>\\n-- New feature: added Submenu Animation feature(including No Animation option as well)<br \\/>\\n-- New feature: added Submenu Animation Duration option<\\/p>\\n<p>- v2.3.2 (28.03.2018)<\\/p>\\n<p>-- Fix: fixed a bug causing the default dropdown animation not work as expected<br \\/>\\n-- Improvement: minor codebase improvements<\\/p>\\n<p>- v2.3.1 (27.03.2018)<\\/p>\\n<p>-- Fix: fixed CSS issue affecting alignment of the search icon on desktop menu<\\/p>\\n<p>- v2.3 (14.03.2018)<\\/p>\\n<p>-- New feature: making the parent item of collapsed submenu clickable is now optional<br \\/>\\n-- New feature: added set of controls to customize the parent menu item arrow to make it more visible (select icon, colors, size, etc.)<\\/p>\\n<p>- v2.2.1 (05.02.2018)<\\/p>\\n<p>-- Improvement: parent menu item of collapsed submenu is now clickable (for Default, Centered and Centered Inline Logo header formats)<\\/p>\\n<p>- v2.2 (25.12.2017)<\\/p>\\n<p>-- New feature: added a control for making fixed dropdown menu scrollable(allows you to remove scrollbar if your fixed menu doesn\'t need to be scrollable)<br \\/>\\n-- New feature: added a control for enabling fullwidth menu on tablet screens too (&lt;=980px)<br \\/>\\n-- Improvement: improved fullwidth menu feature for phone screens (&lt;=479px)<br \\/>\\n-- Improvement: multi-input controls now have the \\\"reset to default\\\" functionality<br \\/>\\n-- Improvement: increased ranges for dropdown menu top offset control and shadow controls for more flexibility<br \\/>\\n-- Improvement: various code optimisations<br \\/>\\n-- Misc: renamed plugin name appearing on Plugins page to \\\"Divi Mobile Menu Customizer\\\" for consistency with other plugins<br \\/>\\n-- Misc: updated plugin Customizer settings panel color scheme for consistency with other plugins<br \\/>\\n-- Fix: fixed page content padding-top issue occuring when fixed mobile header is used with non-fixed transparent desktop header<br \\/>\\n-- Fix: fixed z-index issue with menu search form enabled on mobile for Centered and Centered Inline Logo headers<\\/p>\\n<p>- v2.1.2 (14.11.2017)<\\/p>\\n<p>-- Fixed multiple logo container creation issue occuring on window resize for Centered Inline Logo header format.<\\/p>\\n<p>- v2.1.1 (30.10.2017)<\\/p>\\n<p>-- Fixed automatic updates issue.<\\/p>\\n<p>- v2.1 (18.10.2017)<\\/p>\\n<p>-- New Feature: Added an option to enable search icon for Centered and Centered Inline Logo header formats which also allows<br \\/>\\nto enable\\/disable search icon on mobile for Default header too.<\\/p>\\n<p>- v2.0.5 (13.10.2017)<\\/p>\\n<p>-- Improved compatibility with other third party plugins.<br \\/>\\n-- Fixed a bug which caused wrong calculation of desktop header top offset in certain cases.<\\/p>\\n<p>- v2.0.4 (07.10.2017)<\\/p>\\n<p>-- Fixed an issue where header was overlaping the page content occuring in some cases with disabled fixed navigation.<\\/p>\\n<p>- v2.0.3 (28.09.2017)<\\/p>\\n<p>-- Fixed minor conflict issues with the Fullwidth Menu Module.<\\/p>\\n<p>- v2.0.2 (25.08.2017)<\\/p>\\n<p>-- Fixed menu bar top offset issue for non-fixed mobile menu.<\\/p>\\n<p>- v2.0.1 (24.08.2017)<\\/p>\\n<p>-- Fixed wrong calculation of top offset causing issue with scrolling to anchor when fixed mobile menu enabled.<\\/p>\\n<p>- v2.0 (12.08.2017) - The biggest update so far!<\\/p>\\n<p>-- New Feature: Added set of controls for adding the Background Image to mobile menu.<br \\/>\\n-- New Feature: Added set of controls for adding the menu item icons.<br \\/>\\n-- New Feature: Added the Background Clip control to menu gradient feature.<br \\/>\\n-- Replaced the \\\"Menu Item Height\\\" control with the \\\"Menu Item Padding\\\" control.<br \\/>\\n-- Optimized CSS output.<br \\/>\\n-- Implemented various codebase improvements.<\\/p>\\n<p>- v1.4.1 (07.07.2017)<\\/p>\\n<p>-- Fixed top offset issue for fixed mobile menu.<\\/p>\\n<p>- v1.4 (19.06.2017)<\\/p>\\n<p>-- Added Menu Header Settings section including options to add text besides the hamburger icon (ie \\\"Menu\\\"), select the menu icon format (with or without text),<br \\/>\\nuse \\\"X\\\" icon for closing menu, etc.<\\/p>\\n<p>- v1.3.2 (05.06.2017)<\\/p>\\n<p>-- Improved support for vertical navigation. Fixed header and content top offset and top navigation padding-top issue occuring when vertical navigation enabled.<\\/p>\\n<p>- v1.3.1 (02.05.2017)<\\/p>\\n<p>-- Fixed conflicts with the Fullwidth Menu Module.<\\/p>\\n<p>- v1.3 (31.03.2017)<\\/p>\\n<p>-- Added 10 new mobile menu animations for the Default, Centered and Centered Inline Logo header formats.<br \\/>\\n-- Fixed fullwidth menu issue in IE.<\\/p>\\n<p>- v1.2.1 (20.03.2017)<\\/p>\\n<p>-- Fixed issue with dropdown menu not closing on menu item click.<br \\/>\\n-- Fixed issue with scrolling to anchor where fixed menu header was overlaping section content on scroll end - an important improvement especially for one-page sites.<\\/p>\\n<p>- v1.2 (07.03.2017)<\\/p>\\n<p>-- Added gradients feature for menu header and the menu. This feature is available for all 5 header formats of Divi.<\\/p>\\n<p>- v1.1 (02.03.2017)<\\/p>\\n<p>-- Improved fixed mobile menu feature by making long mobile menu scrollable, now you can apply fixed menu feature even if your mobile menu does not fit into mobile screen, users will be able to scroll the menu.<br \\/>\\n-- Added a new control for adjusting fixed mobile menu max-height, this control shows up as soon as you apply the fixed state to menu lets and you change the max-height of fixed menu.<\\/p>\\n<p>- v1.0 (23.02.2017)<\\/p>\\n<p>-- Initial Release<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"description\":[\"<p><strong>Version 2 has arrived!<\\/strong><\\/p>\\n<p>Divi theme has lots of awesome features but one of the features that it lacks is the ability to customize the styling of mobile menu without diving into custom coding. The\\u00a0<strong>Mobile Menu Customizer<\\/strong>\\u00a0plugin lets you style your Divi site mobile menu via Theme Customizer with live preview. Just upload and activate it, then go to Theme Customizer and start styling the mobile menu, as simple as that!<\\/p>\\n<p><strong>Mobile Menu Customizer plugin has been highlighted on Elegant Themes Blog -&gt; <a href=\\\"https:\\/\\/www.elegantthemes.com\\/blog\\/divi-resources\\/divi-plugin-highlight-mobile-menu-customizer\\\" target=\\\"_blank\\\">Read More<\\/a><\\/strong><\\/p>\\n<p>Some of the great features offered by this plugin are:<\\/p>\\n<ul>\\n<li>Assign a different menu for mobile devices<\\/li>\\n<li>Prevent the secondary menu items from being added to mobile menu<\\/li>\\n<li>Mobile Menu Item Icons\\u00a0<strong><em>watch on <a href=\\\"https:\\/\\/youtu.be\\/cYPpqCR4A8Y\\\" target=\\\"_blank\\\">YouTube<\\/a><\\/em><\\/strong><\\/li>\\n<li>Mobile Menu Background Image<\\/li>\\n<li>Type any\\u00a0text besides the\\u00a0mobile menu hamburger icon (e.g. \\\"Menu\\\")<\\/li>\\n<li>10 New Menu Animations\\u00a0\\u00a0<strong><em>watch on <a href=\\\"https:\\/\\/youtu.be\\/vx1WrRgFlg0\\\" target=\\\"_blank\\\">YouTube<\\/a><\\/em><\\/strong><\\/li>\\n<li>Menu Gradients\\u00a0\\u00a0<strong><em>watch on <a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=PYDLjHf8zZQ\\\" target=\\\"_blank\\\">YouTube<\\/a><\\/em><\\/strong><\\/li>\\n<li>Enable search icon for Centered and Centered Inline Logo headers<\\/li>\\n<li>Automatic update notifications with one-click updates via WordPress Dashboard<\\/li>\\n<li>Making mobile menu fullwidth<\\/li>\\n<li>Making mobile menu fixed<\\/li>\\n<li>Collapse submenus (parent menu item url remains clickable)<\\/li>\\n<li>Submenu Accordion feature<\\/li>\\n<li>10 New Submenu Animations<\\/li>\\n<li>Aligning menu link text<\\/li>\\n<li>Adjusting menu item height<\\/li>\\n<li>Applying menu shadow<\\/li>\\n<\\/ul>\\n<p>And lots of other controls to play with\\u00a0<strong>colors<\\/strong>,\\u00a0<strong>borders<\\/strong>,\\u00a0<strong>text sizes<\\/strong>,\\u00a0<strong>margins<\\/strong>,\\u00a0<strong>paddings<\\/strong>, etc. of the mobile menu.<\\/p>\\n<p>Mobile Menu Customizer plugin lets you style the mobile menu independently from desktop menu; all its settings will take effect only on the mobile menu (Tablet &amp;; Phone). It supports all 5 header formats of Divi\\u00a0<em> Default, Centered, Centered Inline Logo, Slide-In and Fullscreen<\\/em>, but current version of the plugin focuses more on the\\u00a0<strong><em>Default<\\/em><\\/strong>,\\u00a0<strong><em>Centered<\\/em><\\/strong>\\u00a0and\\u00a0<strong><em>Centered Inline Logo<\\/em><\\/strong>\\u00a0header formats which means that not all of the features are available for\\u00a0<em>Slide-In<\\/em>\\u00a0and\\u00a0<em>Fullscreen<\\/em>\\u00a0header formats. \\u00a0Also some of the features are not applicable to all header formats, e.g\\u00a0<em>menu<\\/em>\\u00a0<em>shadow<\\/em>, which is not available for the\\u00a0<em>Fullscreen<\\/em>\\u00a0header format but available for other header formats.<\\/p>\\n<p><strong>IMPORTANT<\\/strong>: Please make sure that there is no custom code applied to the mobile menu of your site which could potentially conflict with code of the Mobile Menu Customizer plugin. This plugin works best with default mobile menu of Divi.<\\/p>\\n<p>[video width=\\\"1364\\\" height=\\\"662\\\" mp4=\\\"https:\\/\\/elegantmarketplace.com\\/wp-content\\/uploads\\/2017\\/06\\/MMC-animations-featured-gif-1364.mp4\\\"][\\/video]<\\/p>\\n<p>[gallery size=\\\"medium\\\" link=\\\"file\\\" ids=\\\"338559,338560,338562,338563,338558,338556,338554,338557,338561,338555,186778,186779,186780,186781,186782,186783\\\"]<\\/p>\\n<\\/p>\\n<p>Other Divi plugins by Ivan Chi<\\/p>\\n<p><a href=\\\"https:\\/\\/elegantmarketplace.com\\/downloads\\/dotnav\\/\\\" target=\\\"_blank\\\"><\\/a> <a href=\\\"https:\\/\\/elegantmarketplace.com\\/downloads\\/scrolltop\\/\\\" target=\\\"_blank\\\"><\\/a><\\/p>\\n\"],\"changelog\":[\"<p>- v2.6 (21.04.2018)<\\/p>\\n<p>-- New: added support for Divi Layouts.<br \\/>\\nNow you can create your mobile menu layouts in Divi Builder and add these layouts from Divi Library to mobile menu.<br \\/>\\nWorks for the \\\"MMC Mobile Menu\\\" location menus and is available for the Default, Centered and Centered Inline Logo header formats.<\\/p>\\n<p>- v2.5.1 (19.04.2018)<\\/p>\\n<p>-- Improvement: enabled menu item icons feature for the menu assigned to the \\\"MMC Mobile Menu\\\" location<br \\/>\\n-- Fix: fixed an issue with the menu items customization causing a JS error in Theme Customizer<\\/p>\\n<p>- v2.5 (17.04.2018)<\\/p>\\n<p>-- New feature: added a new menu location(MMC Mobile Menu) allowing you to use a different menu for mobile devices<br \\/>\\n-- New feature: prevent the secondary menu items from being added to the mobile menu or move them above the main menu items<\\/p>\\n<p>- v2.4 (01.04.2018)<\\/p>\\n<p>-- New feature: added the Accordion feature allowing to have only one submenu opened at a time<br \\/>\\n-- New feature: added Submenu Animation feature(including No Animation option as well)<br \\/>\\n-- New feature: added Submenu Animation Duration option<\\/p>\\n<p>- v2.3.2 (28.03.2018)<\\/p>\\n<p>-- Fix: fixed a bug causing the default dropdown animation not work as expected<br \\/>\\n-- Improvement: minor codebase improvements<\\/p>\\n<p>- v2.3.1 (27.03.2018)<\\/p>\\n<p>-- Fix: fixed CSS issue affecting alignment of the search icon on desktop menu<\\/p>\\n<p>- v2.3 (14.03.2018)<\\/p>\\n<p>-- New feature: making the parent item of collapsed submenu clickable is now optional<br \\/>\\n-- New feature: added set of controls to customize the parent menu item arrow to make it more visible (select icon, colors, size, etc.)<\\/p>\\n<p>- v2.2.1 (05.02.2018)<\\/p>\\n<p>-- Improvement: parent menu item of collapsed submenu is now clickable (for Default, Centered and Centered Inline Logo header formats)<\\/p>\\n<p>- v2.2 (25.12.2017)<\\/p>\\n<p>-- New feature: added a control for making fixed dropdown menu scrollable(allows you to remove scrollbar if your fixed menu doesn\'t need to be scrollable)<br \\/>\\n-- New feature: added a control for enabling fullwidth menu on tablet screens too (&lt;=980px)<br \\/>\\n-- Improvement: improved fullwidth menu feature for phone screens (&lt;=479px)<br \\/>\\n-- Improvement: multi-input controls now have the \\\"reset to default\\\" functionality<br \\/>\\n-- Improvement: increased ranges for dropdown menu top offset control and shadow controls for more flexibility<br \\/>\\n-- Improvement: various code optimisations<br \\/>\\n-- Misc: renamed plugin name appearing on Plugins page to \\\"Divi Mobile Menu Customizer\\\" for consistency with other plugins<br \\/>\\n-- Misc: updated plugin Customizer settings panel color scheme for consistency with other plugins<br \\/>\\n-- Fix: fixed page content padding-top issue occuring when fixed mobile header is used with non-fixed transparent desktop header<br \\/>\\n-- Fix: fixed z-index issue with menu search form enabled on mobile for Centered and Centered Inline Logo headers<\\/p>\\n<p>- v2.1.2 (14.11.2017)<\\/p>\\n<p>-- Fixed multiple logo container creation issue occuring on window resize for Centered Inline Logo header format.<\\/p>\\n<p>- v2.1.1 (30.10.2017)<\\/p>\\n<p>-- Fixed automatic updates issue.<\\/p>\\n<p>- v2.1 (18.10.2017)<\\/p>\\n<p>-- New Feature: Added an option to enable search icon for Centered and Centered Inline Logo header formats which also allows<br \\/>\\nto enable\\/disable search icon on mobile for Default header too.<\\/p>\\n<p>- v2.0.5 (13.10.2017)<\\/p>\\n<p>-- Improved compatibility with other third party plugins.<br \\/>\\n-- Fixed a bug which caused wrong calculation of desktop header top offset in certain cases.<\\/p>\\n<p>- v2.0.4 (07.10.2017)<\\/p>\\n<p>-- Fixed an issue where header was overlaping the page content occuring in some cases with disabled fixed navigation.<\\/p>\\n<p>- v2.0.3 (28.09.2017)<\\/p>\\n<p>-- Fixed minor conflict issues with the Fullwidth Menu Module.<\\/p>\\n<p>- v2.0.2 (25.08.2017)<\\/p>\\n<p>-- Fixed menu bar top offset issue for non-fixed mobile menu.<\\/p>\\n<p>- v2.0.1 (24.08.2017)<\\/p>\\n<p>-- Fixed wrong calculation of top offset causing issue with scrolling to anchor when fixed mobile menu enabled.<\\/p>\\n<p>- v2.0 (12.08.2017) - The biggest update so far!<\\/p>\\n<p>-- New Feature: Added set of controls for adding the Background Image to mobile menu.<br \\/>\\n-- New Feature: Added set of controls for adding the menu item icons.<br \\/>\\n-- New Feature: Added the Background Clip control to menu gradient feature.<br \\/>\\n-- Replaced the \\\"Menu Item Height\\\" control with the \\\"Menu Item Padding\\\" control.<br \\/>\\n-- Optimized CSS output.<br \\/>\\n-- Implemented various codebase improvements.<\\/p>\\n<p>- v1.4.1 (07.07.2017)<\\/p>\\n<p>-- Fixed top offset issue for fixed mobile menu.<\\/p>\\n<p>- v1.4 (19.06.2017)<\\/p>\\n<p>-- Added Menu Header Settings section including options to add text besides the hamburger icon (ie \\\"Menu\\\"), select the menu icon format (with or without text),<br \\/>\\nuse \\\"X\\\" icon for closing menu, etc.<\\/p>\\n<p>- v1.3.2 (05.06.2017)<\\/p>\\n<p>-- Improved support for vertical navigation. Fixed header and content top offset and top navigation padding-top issue occuring when vertical navigation enabled.<\\/p>\\n<p>- v1.3.1 (02.05.2017)<\\/p>\\n<p>-- Fixed conflicts with the Fullwidth Menu Module.<\\/p>\\n<p>- v1.3 (31.03.2017)<\\/p>\\n<p>-- Added 10 new mobile menu animations for the Default, Centered and Centered Inline Logo header formats.<br \\/>\\n-- Fixed fullwidth menu issue in IE.<\\/p>\\n<p>- v1.2.1 (20.03.2017)<\\/p>\\n<p>-- Fixed issue with dropdown menu not closing on menu item click.<br \\/>\\n-- Fixed issue with scrolling to anchor where fixed menu header was overlaping section content on scroll end - an important improvement especially for one-page sites.<\\/p>\\n<p>- v1.2 (07.03.2017)<\\/p>\\n<p>-- Added gradients feature for menu header and the menu. This feature is available for all 5 header formats of Divi.<\\/p>\\n<p>- v1.1 (02.03.2017)<\\/p>\\n<p>-- Improved fixed mobile menu feature by making long mobile menu scrollable, now you can apply fixed menu feature even if your mobile menu does not fit into mobile screen, users will be able to scroll the menu.<br \\/>\\n-- Added a new control for adjusting fixed mobile menu max-height, this control shows up as soon as you apply the fixed state to menu lets and you change the max-height of fixed menu.<\\/p>\\n<p>- v1.0 (23.02.2017)<\\/p>\\n<p>-- Initial Release<\\/p>\\n\"]}\";}','no'),(458,'chi_mmc_license_key','2f7bccd406314c197350cc7c040c1998','yes'),(461,'edd_sl_22c9a93384376c0d72387c309376e9d2','a:2:{s:7:\"timeout\";i:1531924024;s:5:\"value\";s:140:\"{\"new_version\":\"\",\"stable_version\":\"\",\"sections\":\"\",\"license_check\":\"\",\"msg\":\"License key is not valid for Mobile Menu Customizer for Divi\"}\";}','no'),(471,'mighty_header___menu_maker_data','a:2:{s:7:\"api_key\";s:38:\"wc_order_5ab63145a822b_am_RAY8RRMdrABx\";s:16:\"activation_email\";s:28:\"consulting@randalstewart.com\";}','yes'),(472,'mighty_header___menu_maker_product_id','Mighty Header & Menu Maker','yes'),(473,'mighty_header___menu_maker_instance','H9fQ1hFX91V7','yes'),(474,'mighty_header___menu_maker_deactivate_checkbox','off','yes'),(475,'mighty_header___menu_maker_activated','Activated','yes'),(484,'external_updates-mhmm','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1588152871;s:14:\"checkedVersion\";s:6:\"2.1.19\";s:6:\"update\";O:8:\"stdClass\":9:{s:4:\"slug\";s:4:\"mhmm\";s:7:\"version\";s:6:\"2.1.19\";s:12:\"download_url\";s:68:\"https://besuperfly.com/themes-plugins-updater/packages/mhmm/mhmm.zip\";s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";s:36:\"https://besuperfly.com/product/mhmm/\";s:6:\"tested\";s:5:\"5.2.4\";s:14:\"upgrade_notice\";s:47:\"2.1.19 - Bug fix for WooCommerce category pages\";s:8:\"filename\";s:13:\"mhmm/mhmm.php\";}s:11:\"updateClass\";s:20:\"Puc_v4_Plugin_Update\";s:15:\"updateBaseClass\";s:13:\"Plugin_Update\";}','no'),(515,'external_updates-heading_customizer','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1532275117;s:14:\"checkedVersion\";s:5:\"1.3.2\";s:6:\"update\";O:8:\"stdClass\":9:{s:4:\"slug\";s:18:\"heading_customizer\";s:7:\"version\";s:5:\"1.3.2\";s:12:\"download_url\";s:104:\"https://besuperfly.com/themes-plugins-updater/packages/divi-header-customizer/divi-header-customizer.zip\";s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";s:55:\"https://besuperfly.com/products/divi-header-customizer/\";s:6:\"tested\";s:5:\"4.9.5\";s:14:\"upgrade_notice\";s:106:\"Version 1.3.2 - Small Update \nChangelogs:\n- Small change to Mobile Media Query to include landscape phones\";s:8:\"filename\";s:49:\"divi-header-customizer/divi-header-customizer.php\";}s:11:\"updateClass\";s:22:\"Puc_v4p2_Plugin_Update\";s:15:\"updateBaseClass\";s:13:\"Plugin_Update\";}','no'),(552,'frmapi_db_version','2','yes'),(570,'edd_formidable_api_license_key','3dcd0bbc1495dc87a31c7bd6dbf62fb3','yes'),(571,'frm_9362cbf59f405f56f4988a1918314eca','2020-04-24 21:26:32','yes'),(572,'edd_formidable_api_license_active','valid','yes'),(573,'frm_154fa9c140eb682228749381296ef045','2020-04-19 00:07:52','yes'),(577,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(585,'2c2a1df657d98d420fd8c47f76e1d632','a:2:{s:7:\"timeout\";i:1533230026;s:5:\"value\";s:6192:\"{\"new_version\":\"1.05\",\"stable_version\":\"1.05\",\"name\":\"Formidable API\",\"slug\":\"formidable-api\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/?changelog=1\",\"last_updated\":\"2018-07-27 09:10:43\",\"homepage\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzMzI4NzYyNjozZGNkMGJiYzE0OTVkYzg3YTMxYzdiZDZkYmY2MmZiMzoxNjgwNzI6ZjM0ZmVlNTVjZDkxYmUxMWQ0NWFjN2ZlNzc2NTE1NmE6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzMzI4NzYyNjozZGNkMGJiYzE0OTVkYzg3YTMxYzdiZDZkYmY2MmZiMzoxNjgwNzI6ZjM0ZmVlNTVjZDkxYmUxMWQ0NWFjN2ZlNzc2NTE1NmE6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"sections\":{\"description\":\"<p>Send submissions to other sites with REST APIs including from one Formidable Forms site to another. Add a full forms API for forms, form fields, views, and entries.<\\/p>\\n\",\"changelog\":\"<p><h4>v1.05 - July 27, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add start_date and end_date parameters to filter the route to get entries<\\/li>\\n<li>Fix: Add better functionality to the search parameter in the route to get entries<\\/li>\\n<li>Fix: Allow the registration validation to trigger during API call<\\/li>\\n<li>Fix: reCaptcha was returning an error when creating an entry<\\/li>\\n<li>Fix: Creating an entry that included dynamic fields was causing a fatal error by using deprecated functions<\\/li>\\n<li>Fix: The route to create a form wasn\'t working correctly<\\/li>\\n<li>Remove old sslverify =&gt; false lines since they are no longer recommended<\\/li>\\n<\\/ul>\\n<h4>v1.04 - April 5, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow entry keys in routes like frm\\/v2\\/entries\\/#<\\/li>\\n<li>New: Allow form key in frm\\/v2\\/forms\\/#\\/entries<\\/li>\\n<li>Fix: Correctly update entries with repeating and embedded forms<\\/li>\\n<li>Fix: Correctly update an entry with a date when the date format is something other than Y-d-m<\\/li>\\n<li>Fix: Correctly process wp shortcodes in [shortcode]content[\\/shortcode] format when preparing the outbound API form action<\\/li>\\n<li>Fix: Remove the DELETE routes for frm\\/v2\\/entries and frm\\/v2\\/forms\\/#\\/entries. These didn\'t have any functionality behind them.<\\/li>\\n<li>Fix: Return a better response when an entry isn\'t found with frm\\/v2\\/entries\\/#<\\/li>\\n<li>Fix: Correct the nonce values when creating and updating entries so it won\'t block submissions<\\/li>\\n<\\/ul>\\n<h4>v1.03.01 - November 10, 2017<\\/h4>\\r\\n<ul>\\n<li>Only double encode line breaks inside of field values instead of the whole raw request<\\/li>\\n<li>Add a couple more parameters to the frmapi_post_response hook<\\/li>\\n<\\/ul>\\n<h4>v1.03 - October 26, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Fix unique field validation on edit.<\\/li>\\n<li>Fix: Double escape \\/r\\/n\\/ in json.<\\/li>\\n<li>Fix: Prevent cookie from being created during api call<\\/li>\\n<li>Fix: Update deprecated validation call.<\\/li>\\n<li>Fix: Allow quotes in shortcodes within API action.<\\/li>\\n<li>Fix: Include custom headers in logging.<\\/li>\\n<li>Fix: Include post values when updating an entry.<\\/li>\\n<\\/ul>\\n<h4>v1.03b1 - September 14, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Fix unique field validation on edit.<\\/li>\\n<li>Fix: Double escape \\/r\\/n\\/ in json.<\\/li>\\n<li>Fix: Prevent cookie from being created during api call<\\/li>\\n<li>Fix: Update deprecated validation call.<\\/li>\\n<li>Fix: Allow quotes in shortcodes within API action.<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"description\":[\"<p>Send submissions to other sites with REST APIs including from one Formidable Forms site to another. Add a full forms API for forms, form fields, views, and entries.<\\/p>\\n\"],\"changelog\":[\"<p><h4>v1.05 - July 27, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add start_date and end_date parameters to filter the route to get entries<\\/li>\\n<li>Fix: Add better functionality to the search parameter in the route to get entries<\\/li>\\n<li>Fix: Allow the registration validation to trigger during API call<\\/li>\\n<li>Fix: reCaptcha was returning an error when creating an entry<\\/li>\\n<li>Fix: Creating an entry that included dynamic fields was causing a fatal error by using deprecated functions<\\/li>\\n<li>Fix: The route to create a form wasn\'t working correctly<\\/li>\\n<li>Remove old sslverify =&gt; false lines since they are no longer recommended<\\/li>\\n<\\/ul>\\n<h4>v1.04 - April 5, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow entry keys in routes like frm\\/v2\\/entries\\/#<\\/li>\\n<li>New: Allow form key in frm\\/v2\\/forms\\/#\\/entries<\\/li>\\n<li>Fix: Correctly update entries with repeating and embedded forms<\\/li>\\n<li>Fix: Correctly update an entry with a date when the date format is something other than Y-d-m<\\/li>\\n<li>Fix: Correctly process wp shortcodes in [shortcode]content[\\/shortcode] format when preparing the outbound API form action<\\/li>\\n<li>Fix: Remove the DELETE routes for frm\\/v2\\/entries and frm\\/v2\\/forms\\/#\\/entries. These didn\'t have any functionality behind them.<\\/li>\\n<li>Fix: Return a better response when an entry isn\'t found with frm\\/v2\\/entries\\/#<\\/li>\\n<li>Fix: Correct the nonce values when creating and updating entries so it won\'t block submissions<\\/li>\\n<\\/ul>\\n<h4>v1.03.01 - November 10, 2017<\\/h4>\\r\\n<ul>\\n<li>Only double encode line breaks inside of field values instead of the whole raw request<\\/li>\\n<li>Add a couple more parameters to the frmapi_post_response hook<\\/li>\\n<\\/ul>\\n<h4>v1.03 - October 26, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Fix unique field validation on edit.<\\/li>\\n<li>Fix: Double escape \\/r\\/n\\/ in json.<\\/li>\\n<li>Fix: Prevent cookie from being created during api call<\\/li>\\n<li>Fix: Update deprecated validation call.<\\/li>\\n<li>Fix: Allow quotes in shortcodes within API action.<\\/li>\\n<li>Fix: Include custom headers in logging.<\\/li>\\n<li>Fix: Include post values when updating an entry.<\\/li>\\n<\\/ul>\\n<h4>v1.03b1 - September 14, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Fix unique field validation on edit.<\\/li>\\n<li>Fix: Double escape \\/r\\/n\\/ in json.<\\/li>\\n<li>Fix: Prevent cookie from being created during api call<\\/li>\\n<li>Fix: Update deprecated validation call.<\\/li>\\n<li>Fix: Allow quotes in shortcodes within API action.<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"]}\";}','no'),(598,'ddp_wl','disabled','yes'),(599,'ddp_plugin_name','Divi Den Pro','yes'),(600,'ddp_wp_content','<img class=\"alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/plugins/ddpro/include/ddp-your-logo.png\" alt=\"Your Logo\" width=\"437\" height=\"97\" />\n\n                                        <hr />\n\n                                        <h1>ABC Studio</h1>\n\n                                        <hr />\n\n                                        <strong>Theme Name:</strong> Your Clients Name\n\n                                        <strong>Theme URI:</strong> <a href=\"https://clientsname.com/\">https://clientsname.com/</a>\n\n                                        <strong>Description:</strong> Smart. Flexible. Beautiful. ABC Studio - Design at its best.\n\n                                        <strong>Author:</strong> Your Name\n\n                                        <strong>Author URI</strong>: <a href=\"http://www.yourname.com\">http://www.yourname.com</a>\n\n                                        <hr />\n\n                                        <h2>Contact us</h2>\n\n                                        <hr />\n\n                                        <h3>Call us<strong>\n                                        </strong></h3>\n                                        <a href=\"tel:1123456789\">1 (123) 456 789</a>\n                                        <a href=\"tel:1123456788\">1 (123) 456 788</a>\n\n                                        <hr />\n\n                                        <h3>Email us</h3>\n\n                                        <hr />\n\n                                        <a href=\"mailto:name@website.com\">name@website.com</a>\n                                        <a href=\"mailto:sales@website.com\">sales@website.com</a>\n\n                                        <hr />\n\n                                        <h3>Visit us</h3>\n\n                                        <hr />\n\n                                        105 Street Name\n                                        City Name, CD 12345\n\n                                        <hr />\n\n                                        <h3>When we work</h3>\n                                        8.00-18.00 Mon-Fri\n                                        8.00-12.00 Sat','yes'),(606,'ddp_enable','enabled','yes'),(607,'ddp_allow_upd','enabled','yes'),(613,'ddp_subscription_cancelled','no','yes'),(614,'ddp_subscription_stopped','no','yes'),(615,'divi_den_pro_deactivate_checkbox','off','yes'),(619,'external_updates-ddpro','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1538403394;s:14:\"checkedVersion\";s:5:\"3.4.8\";s:6:\"update\";O:8:\"stdClass\":9:{s:4:\"slug\";s:5:\"ddpro\";s:7:\"version\";s:5:\"3.4.8\";s:12:\"download_url\";s:95:\"https://s3-eu-west-1.amazonaws.com/ddlicensed/ddp/subscription/ddp-update/ddp-plugin-v3-4-8.zip\";s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";s:21:\"https://seku.re/GoPro\";s:6:\"tested\";s:5:\"4.9.9\";s:14:\"upgrade_notice\";s:122:\"Add: New Coco Modules & Layouts. Pricing layout, Home Page layout. Electrician Homepage. Bunch of new CoCo modules. Enjoy!\";s:8:\"filename\";s:15:\"ddpro/ddpro.php\";}s:11:\"updateClass\";s:22:\"Puc_v4p2_Plugin_Update\";s:15:\"updateBaseClass\";s:13:\"Plugin_Update\";}','no'),(626,'_site_transient_disable-ddp-status-report-notice','forever','no'),(671,'divi-blog-extras-update-check','1531984443','yes'),(672,'divi-blog-extras-latest-version','2.1.0','yes'),(679,'el-divi-blog-extras','a:10:{s:4:\"name\";s:16:\"Divi Blog Extras\";s:4:\"slug\";s:16:\"Divi-Blog-Extras\";s:4:\"path\";s:37:\"Divi-Blog-Extras/divi-blog-extras.php\";s:17:\"installed_version\";s:5:\"2.3.2\";s:15:\"current_version\";s:5:\"2.3.2\";s:12:\"metadata_url\";s:21:\"http://cdn.elicus.com\";s:12:\"last_checked\";i:1578919564;s:17:\"should_set_update\";s:5:\"false\";s:15:\"update_metadata\";s:16506:\"O:8:\"stdClass\":12:{s:4:\"slug\";s:16:\"Divi-Blog-Extras\";s:4:\"name\";s:16:\"Divi Blog Extras\";s:7:\"banners\";a:2:{s:3:\"low\";s:72:\"https://diviextended.com/wp-content/uploads/2018/04/divi-blog-extras.png\";s:4:\"high\";s:72:\"https://diviextended.com/wp-content/uploads/2018/04/divi-blog-extras.png\";}s:6:\"author\";s:52:\"<a href=\"https://elicus.com\">Elicus Technologies</a>\";s:8:\"homepage\";s:49:\"https://diviextended.com/product/divi-blog-extras\";s:12:\"contributors\";a:2:{s:11:\"themohdarif\";a:3:{s:12:\"display_name\";s:9:\"Mohd Arif\";s:7:\"profile\";s:41:\"http://profiles.wordpress.org/themohdarif\";s:6:\"avatar\";s:81:\"https://secure.gravatar.com/avatar/b46ef8f72b901c074e08d43bd325bb4b?s=36&d=mm&r=g\";}s:14:\"ankurkhurana18\";a:3:{s:12:\"display_name\";s:13:\"Ankur Khurana\";s:7:\"profile\";s:44:\"https://profiles.wordpress.org/ankurkhurana/\";s:6:\"avatar\";s:82:\"https://secure.gravatar.com/avatar/08c0090aa4da3acbc048e1260c192455?s=100&d=mm&r=g\";}}s:7:\"version\";s:5:\"2.3.2\";s:8:\"requires\";s:5:\"3.0.0\";s:6:\"tested\";s:5:\"5.3.2\";s:12:\"last_updated\";s:10:\"2019-12-27\";s:8:\"sections\";a:4:{s:11:\"description\";s:214:\"Divi blog extras plugin will add beautiful blog layouts in your Divi theme, Extra theme & Divi Page Builder. All layouts are fully responsive. With different layouts you can setup your blog layout in a few minutes.\";s:12:\"installation\";s:105:\"<p>Upload Divi Blog Extras plugin at your blog and activate it.</p>\n			        					<p>And all done!!</p>\";s:9:\"changelog\";s:13679:\"<h4>2.3.2</h4>\n                    			        <p><em>Release Date – 27 December 2019</em></p>\n                    			        <ul>\n                        			        <li>NEW: Post Date styling options for \'Full Width\' layout.</li>\n											<li>FIXED: Ajax pagination \'Show Few\' button not working.</li>\n											<li>FIXED: Ajax pagination button styling option.</li>\n											<li>FIXED: \'Read More\' button not rendering on ajax pagination load more.</li>\n											<li>IMPROVEMENT: Minor CSS fixes.</li>\n                    			        </ul>\n										<h4>2.3.1</h4>\n                    			        <p><em>Release Date – 18 December 2019</em></p>\n                    			        <ul>\n                        			        <li>FIXED: Undefined index category_color__hover & category_background_color__hover notice.</li>\n                    			        </ul>\n										<h4>2.3.0</h4>\n                    			        <p><em>Release Date – 18 December 2019</em></p>\n                    			        <ul>\n                        			        <li>NEW: Compatible with Visual Builder.</li>\n											<li>NEW: Added link option settings.</li>\n											<li>NEW: Added button for \'Read More\'.</li>\n											<li>IMPROVEMENT: Removed Google+ share icon from classic layout.</li>\n											<li>IMPROVEMENT: Improved hover color options for category.</li>\n											<li>IMPROVEMENT: Excluded WPML \'translation_priority\' taxonomy and Divi/Extra \'et_post_format\' taxonomy which was displaying on front-end.</li>\n											<li>FIXED: Fixed the \'builder-bundle.js\' error.</li>\n											<li>FIXED: Fixed \'Undefined variable i\' notice on panel page.</li>\n                    			        </ul>\n										<h4>2.2.3</h4>\n                    			        <p><em>Release Date – 12 September 2019</em></p>\n                    			        <ul>\n                        			        <li>FIXED: Fixed repetition of posts on load more ajax pagination.</li>\n											<li>FIXED: Fixed coming of random posts despite of the category selected in the module on load more ajax pagination.</li>\n                    			        </ul>\n										<h4>2.2.2</h4>\n                    			        <p><em>Release Date – 09 September 2019</em></p>\n                    			        <ul>\n                        			        <li>FIXED: Fixed Order settings in the module.</li>\n											<li>FIXED: Fixed Orderby settings in the module.</li>\n                    			        </ul>\n										<h4>2.2.1</h4>\n                    			        <p><em>Release Date – 20 August 2019</em></p>\n                    			        <ul>\n                        			        <li>FIXED: Excluded yoast prominent keyword\'s taxonomy which was displaying on front-end.</li>\n											<li>FIXED: Excluded post tag taxonomy which was displaying on front-end.</li>\n                    			        </ul>\n										<h4>2.2.0</h4>\n                    			        <p><em>Release Date – 17 August 2019</em></p>\n                    			        <ul>\n                        			        <li>NEW: Added Custom Post Type support.</li>\n											<li>NEW: Added Custom Taxonomies support.</li>\n											<li>NEW: Added Custom Taxonomies archive support.</li>\n                    			        </ul>\n										<h4>2.1.9</h4>\n                    			        <p><em>Release Date – 22 April 2019</em></p>\n                    			        <ul>\n                        			        <li>FIXED: Fixed the warning \'Use of undefined constant is_author\'.</li>\n                    			        </ul>\n										<h4>2.1.8</h4>\n                    			        <p><em>Release Date – 18 April 2019</em></p>\n                    			        <ul>\n                        			        <li>FIXED: Minor Fixes.</li>\n                    			        </ul>\n										<h4>2.1.7</h4>\n                    			        <p><em>Release Date – 18 April 2019</em></p>\n                    			        <ul>\n                        			        <li>NEW: Added control for overlay color of Block Extended layout.</li>\n											<li>NEW: Added control for featured image size.</li>\n											<li>NEW: Added post read time meta.</li>\n											<li>NEW: Added Tag archive support feature.</li>\n											<li>NEW: Added Author archive support feature.</li>\n											<li>NEW: Added Date archive support feature.</li>\n											<li>FIXED: Fixed Header Level on load more.</li>\n                    			        </ul>\n										<h4>2.1.6</h4>\n                    			        <p><em>Release Date – 20 November 2018</em></p>\n                    			        <ul>\n                        			        <li>FIXED: Fixed filesystem for multisite.</li>\n                        			        <li>FIXED: Fixed Archive Page Layout.</li>\n                    			        </ul>\n                    			        <h4>2.1.5</h4>\n                    			        <p><em>Release Date – 19 November 2018</em></p>\n                    			        <ul>\n                        			        <li>NEW: Added Category archive support feature.</li>\n                    			        </ul>\n                    			        <h4>2.1.4</h4>\n                    			        <p><em>Release Date – 15 November 2018</em></p>\n                    			        <ul>\n                        			        <li>NEW: Added Post Widget feature.</li>\n                        			        <li>FIXED: Replaced deprecated functions with new divi functions.</li>\n                    			        </ul>\n                    			        <h4>2.1.3</h4>\n                    			        <p><em>Release Date – 25 October 2018</em></p>\n                    			        <ul>\n                        			        <li>NEW: Added option for hiding featured image on mobile devices.(Show Featured Image).</li>\n                        			        <li>IMPROVEMENT: Enhanced code for setting up default module values.</li>\n                        			        <li>FIXED: Compatibility issue with the latest version of Divi.</li>\n                        			        <li>FIXED: Added security patch for addressing an XSS vulnerability.</li>\n                    			        </ul>\n                    			        <h4>2.1.2</h4>\n                    			        <p><em>Release Date – 17 August 2018</em></p>\n                    			        <ul>\n                        			        <li>Fixed numbered pagination.</li>\n                        			        <li>Added support for WP-PageNavi.</li>\n                    			        </ul>\n                    			        <h4>2.1.1</h4>\n                    			        <p><em>Release Date – 01 June 2018</em></p>\n                    			        <ul>\n                        			        <li>Fixed compatibility issues with older versions of Divi.</li>\n                        			        <li>Fixed \'Call to undefined function et_pb_process_font_icon\' error.</li>\n                                            <li>Fixed post meta visibility control settings.</li>\n                                            <li>Minor CSS Fixes.</li>\n                    			        </ul>\n                    			        <h4>2.1.0</h4>\n                    			        <p><em>Release Date – 26 Apr 2018</em></p>\n                    			        <ul>\n                        			        <li>Compatibility with Divi 3.1.1 and older versions.</li>\n                        			        <li>Enabled Partial support for Divi Visual Builder.</li>\n                                            <li>Optimized CSS & JS according to new Divi Standard.</li>\n                                            <li>Setup new folder structure according to the new Divi Standard.</li>\n                                            <li>Fixed Category Color Picker.</li>\n                                            <li>Fixed Dynamic Post Heading issue.</li>\n                                            <li>Fixed Layout override issue.</li>\n                    			        </ul>\n			                            <h4>2.0.15</h4>\n                    			        <p><em>Release Date – 09 Apr 2018</em></p>\n                    			        <ul>\n                        			        <li>Fixed undefined variable alttext error in full width background layout.</li>\n                    			        </ul>\n			                            <h4>2.0.14</h4>\n                    			        <p><em>Release Date – 06 Apr 2018</em></p>\n                    			        <ul>\n                        			        <li>Fixed default pagination setting.</li>\n                        			        <li>Fixed Sidebar breaking issue.</li>\n                    			        </ul>\n			                            <h4>2.0.13</h4>\n                    			        <p><em>Release Date – 05 Apr 2018</em></p>\n                    			        <ul>\n                        			        <li>Added Orderby option.</li>\n                        			        <li>Added Numbered pagination option.</li>\n                        			        <li>Added Compatibility for di-basis theme.</li>\n                        			        <li>Image Optimization.</li>\n                        			        <li>Fixed Private posts visibility issues.</li>\n                        			        <li>Minor CSS fixes.</li>\n                    			        </ul>\n			                            <h4>2.0.12</h4>\n                    			        <p><em>Release Date – 26 Feb 2018</em></p>\n                    			        <ul>\n                        			        <li>Fixed missing js file error.</li>\n                        			        <li>Fixed error in the js file.</li>\n                        			        <li>Fixed undefined ajax_pagination_button error.</li>\n                        			        <li>Added template(only layout files) overriding feature.</li>\n                    			        </ul>\n			                            <h4>2.0.11</h4>\n                    			        <p><em>Release Date – 19 Dec 2017</em></p>\n                    			        <ul>\n                        			        <li>Added image alt attribute.</li>\n                        			        <li>Fixed category link issue.</li>\n                        			        <li>Fixed Load More button for different browsers.</li>\n                        			        <li>Added Compatibility to latest version of Divi(3.0.92), Extra & Builder.</li>\n                        			        <li>Minor CSS fixes.</li>\n                    			        </ul>\n			                            <h4>2.0.10</h4>\n										<p><em>Release Date – 14 Nov 2017</em></p>\n										<ul>\n											<li>Added support for Extra theme.</li>\n											<li>Added support for Divi Builder.</li>\n										    <li>Added control for formatting the load more button.</li>\n											<li>Fixed Undefined Offset error.</li>\n										</ul>\n			                            <h4>2.0.9</h4>\n										<p><em>Release Date – 19 Sep 2017</em></p>\n										<ul>\n											<li>Changed load more button styling on click.</li>\n											<li>Improved Offset feature while post number is set to -1.</li>\n											<li>Hide excerpt when excerpt length is set to 0.</li>\n											<li>Ability to assign different color to different categories.</li>\n											<li>Added animation control of single post.</li>\n											<li>Added background options.</li>\n											<li>Compatibility with Divi v3.0.75.</li>\n											<li>Minor CSS Fixes.</li>\n											<li>Fixed JS for ajax loading.</li>\n										</ul>\n			        					<h4>2.0.8</h4>\n										<p><em>Release Date – 18 Aug 2017</em></p>\n										<ul>\n											<li>Addition of offset feature.</li>\n											<li>Addition of sort post by date.</li>\n											<li>Ability to change show less button text.</li>\n											<li>Addition of ellipsis at the end of excerpt.</li>\n											<li>Some CSS Fixes.</li>\n										</ul>\n			        					<h4>2.0.7</h4>\n										<p><em>Release Date – 09 Aug 2017</em></p>\n										<ul>\n											<li>Fixed Load More JS issue after updating Divi to 3.0.67.</li>\n										</ul>\n										<h4>2.0.6</h4>\n										<p><em>Release Date – 26 July 2017</em></p>\n										<ul>\n											<li>Fixed Read More link when create posts with page builder.</li>\n											<li>Minor CSS Fixes.</li>\n										</ul>\n			        					<h4>2.0.5</h4>\n										<p><em>Release Date – 04 July 2017</em></p>\n										<ul>\n											<li>Fixed post excerpt displaying via page builder.</li>\n											<li>Improved CSS.</li>\n										</ul>\n			        					<h4>2.0.4</h4>\n										<p><em>Release Date – 30 June 2017</em></p>\n										<ul>\n											<li>Fix design settings for static CSS file generation system.</li>\n										</ul>\n			        					<h4>2.0.3</h4>\n										<p><em>Release Date – 16 June 2017</em></p>\n										<ul>\n											<li>Fix front end builder load issue.</li>\n										</ul>\n			        					<h4>2.0.2</h4>\n										<p><em>Release Date – 05 June 2017</em></p>\n										<ul>\n											<li>Made some fixes causing fatal error on theme change.</li>\n										</ul>\n			        					<h4>2.0.1</h4>\n										<p><em>Release Date – 01 June 2017</em></p>\n										<ul>\n											<li>CSS fix for Divi Columns.</li>\n										</ul>\n			        					<h4>2.0.0</h4>\n										<p><em>Release Date – 24 May 2017</em></p>\n										<ul>\n											<li>Added 3 new blog layouts.</li>\n											<li>Added auto update functionality.</li>\n											<li>Fixed modules default value initialization issue.</li>\n											<li>Fixed specialty section CSS issues.</li>\n										</ul>\n\n										<h4>1.0.1</h4>\n										<p><em>Release Date – 23 April 2017</em></p>\n										<ul>\n											<li>Fixed bug causing CSS issues in some browsers.</li>\n										</ul>\n\n										<h4>1.0</h4>\n										<p><em>Release Date – 21 April 2017</em></p>\n										<ul>\n											<li>Initial release of plugin.</li>\n										</ul>\";s:3:\"FAQ\";s:1201:\"<h4>What is Divi Blog Extras?</h4>\n										<p>Divi Blog Extras is a plugin by Divi Extended which work upon Divi and Extra theme or divi builder plugin. Using this plugin, one can create a nice looking Divi Blog/Category layouts in minutes.</p>\n\n										<h4>How many blog layouts are there in the current version?</h4>\n										<p>In version 2.0.0, we have 6 blog layouts and we plan to add more in coming releases.</p>\n\n										<h4>Will it work with DIVI Builder plugin installed on any theme other than DIVI?</h4>\n										<p>Yes, the plugin will work with Divi and Divi Child themes, Extra and Extra Child themes and divi builder alone also.</p>\n\n										<h4>Will it update the default category and archive pages?</h4>\n										<p>No, it only works as an extended module for the Divi blog with pre-built layout and won’t alter the way category and archive pages look. However, individual pages for each category could be created and the archive pages can be redirected to the page created for that category.</p>\n\n\n										<h4>Can I use other modules on same page where I use Divi Blog Extras module.</h4>\n										<p>Yes, it can be used like any other modules without any issue.</p>\";}s:13:\"download_link\";s:110:\"http://cdn.elicus.com/Divi-Blog-Extras/downloads.php/?slug=Divi-Blog-Extras&blog_url=https://www.stadsig.co.za\";}\";s:13:\"download_path\";s:110:\"http://cdn.elicus.com/Divi-Blog-Extras/downloads.php/?slug=Divi-Blog-Extras&blog_url=https://www.stadsig.co.za\";}','yes'),(684,'category_children','a:0:{}','yes'),(721,'headingcustomizer','a:62:{s:20:\"h1_desktop_font_size\";i:38;s:17:\"h1_desktop_height\";d:1.7;s:18:\"h1_desktop_spacing\";i:2;s:17:\"h1_desktop_weight\";s:3:\"300\";s:22:\"h1_desktop_color_style\";b:0;s:23:\"h1_desktop_header_color\";s:7:\"#575759\";s:15:\"h1_desktop_font\";s:7:\"Tajawal\";s:19:\"h1_tablet_font_size\";i:25;s:17:\"h1_tablet_spacing\";i:1;s:14:\"h1_tablet_font\";s:7:\"Tajawal\";s:16:\"h1_tablet_weight\";s:3:\"300\";s:22:\"h1_tablet_header_color\";s:7:\"#575759\";s:19:\"h1_mobile_font_size\";i:20;s:14:\"h1_mobile_font\";s:7:\"Tajawal\";s:16:\"h1_mobile_weight\";s:3:\"200\";s:22:\"h1_mobile_header_color\";s:7:\"#575759\";s:20:\"h2_desktop_font_size\";i:32;s:17:\"h2_desktop_height\";d:1.7;s:18:\"h2_desktop_spacing\";i:2;s:15:\"h2_desktop_font\";s:7:\"Tajawal\";s:17:\"h2_desktop_weight\";s:3:\"200\";s:23:\"h2_desktop_header_color\";s:7:\"#575759\";s:19:\"h2_tablet_font_size\";i:30;s:15:\"h2_tablet_clone\";b:0;s:16:\"h2_tablet_height\";d:1.3999999999999999;s:17:\"h2_tablet_spacing\";i:2;s:14:\"h2_tablet_font\";s:7:\"Tajawal\";s:16:\"h2_tablet_weight\";s:3:\"200\";s:22:\"h2_tablet_header_color\";s:7:\"#575759\";s:16:\"h2_mobile_height\";d:1.2;s:17:\"h2_mobile_spacing\";i:1;s:14:\"h2_mobile_font\";s:7:\"Tajawal\";s:16:\"h2_mobile_weight\";s:3:\"200\";s:22:\"h2_mobile_header_color\";s:7:\"#575759\";s:20:\"h3_desktop_font_size\";i:27;s:17:\"h3_desktop_height\";d:1.7;s:18:\"h3_desktop_spacing\";i:2;s:15:\"h3_desktop_font\";s:7:\"Tajawal\";s:17:\"h3_desktop_weight\";s:3:\"200\";s:23:\"h3_desktop_header_color\";s:7:\"#575759\";s:19:\"h3_tablet_font_size\";i:30;s:16:\"h3_tablet_height\";d:1.7;s:17:\"h3_tablet_spacing\";i:2;s:14:\"h3_tablet_font\";s:7:\"Tajawal\";s:16:\"h3_tablet_weight\";s:3:\"200\";s:22:\"h3_tablet_header_color\";s:7:\"#575759\";s:19:\"h3_mobile_font_size\";i:23;s:16:\"h3_mobile_height\";d:1.2;s:17:\"h3_mobile_spacing\";i:1;s:14:\"h3_mobile_font\";s:7:\"Tajawal\";s:16:\"h3_mobile_weight\";s:3:\"200\";s:22:\"h3_mobile_header_color\";s:7:\"#575759\";s:20:\"h4_desktop_font_size\";i:25;s:17:\"h4_desktop_height\";d:1.7;s:18:\"h4_desktop_spacing\";i:2;s:15:\"h4_desktop_font\";s:7:\"Tajawal\";s:17:\"h4_desktop_weight\";s:3:\"200\";s:23:\"h4_desktop_header_color\";s:7:\"#575759\";s:19:\"h4_tablet_font_size\";i:22;s:15:\"h4_tablet_clone\";b:1;s:19:\"h4_mobile_font_size\";i:20;s:15:\"h4_mobile_clone\";b:1;}','yes'),(751,'sb_egf_fonts','{\n \"kind\": \"webfonts#webfontList\",\n \"items\": [\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"ABeeZee\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/abeezee/v11/esDR31xSG-6AGleN6tI.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/abeezee/v11/esDT31xSG-6AGleN2tCklQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Abel\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/abel/v8/MwQ5bhbm2POE6Vg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Abhaya Libre\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"sinhala\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/abhayalibre/v3/e3tmeuGtX-Co5MNzeAOqinEgew.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/abhayalibre/v3/e3t5euGtX-Co5MNzeAOqinEYj2ryqg.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/abhayalibre/v3/e3t5euGtX-Co5MNzeAOqinEYo23yqg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/abhayalibre/v3/e3t5euGtX-Co5MNzeAOqinEYx2zyqg.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/abhayalibre/v3/e3t5euGtX-Co5MNzeAOqinEY22_yqg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Abril Fatface\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/abrilfatface/v9/zOL64pLDlL1D99S8g8PtiKchm-A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Aclonica\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/aclonica/v8/K2FyfZJVlfNNSEBXGb7T.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Acme\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/acme/v7/RrQfboBx-C5_bx0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Actor\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/actor/v7/wEOzEBbCkc5cO3ek.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Adamina\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/adamina/v10/j8_r6-DH1bjoc-dwu-o.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Advent Pro\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/adventpro/v7/V8mCoQfxVT4Dvddr_yOwjVmtLQ.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/adventpro/v7/V8mDoQfxVT4Dvddr_yOwjfWMDbY.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/adventpro/v7/V8mDoQfxVT4Dvddr_yOwjZGPDbY.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/adventpro/v7/V8mAoQfxVT4Dvddr_yOwtT0.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/adventpro/v7/V8mDoQfxVT4Dvddr_yOwjcmODbY.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/adventpro/v7/V8mDoQfxVT4Dvddr_yOwjeWJDbY.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/adventpro/v7/V8mDoQfxVT4Dvddr_yOwjYGIDbY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Aguafina Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/aguafinascript/v6/If2QXTv_ZzSxGIO30LemWEOmt1bHqg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Akronim\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/akronim/v7/fdN-9sqWtWZZlHRp-gA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Aladin\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/aladin/v6/ZgNSjPJFPrvJV5f16Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Aldrich\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/aldrich/v8/MCoTzAn-1s3IGyJMZaA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Alef\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"hebrew\",\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/alef/v9/FeVfS0NQpLYgrjI.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/alef/v9/FeVQS0NQpLYglo50L5k.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Alegreya\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/alegreya/v10/4UaBrEBBsBhlBjvfkRLm.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/alegreya/v10/4UaHrEBBsBhlBjvfkSLkx60.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/alegreya/v10/4UaGrEBBsBhlBjvfkSoS5I3J.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/alegreya/v10/4UaErEBBsBhlBjvfkSLk_1nKwps.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/alegreya/v10/4UaGrEBBsBhlBjvfkSpa4o3J.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/alegreya/v10/4UaErEBBsBhlBjvfkSLk_xHMwps.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/alegreya/v10/4UaGrEBBsBhlBjvfkSpG4Y3J.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/alegreya/v10/4UaErEBBsBhlBjvfkSLk_w3Pwps.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/alegreya/v10/4UaGrEBBsBhlBjvfkSpi4I3J.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/alegreya/v10/4UaErEBBsBhlBjvfkSLk_ynOwps.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Alegreya SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/alegreyasc/v9/taiOGmRtCJ62-O0HhNEa-a6o.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/alegreyasc/v9/taiMGmRtCJ62-O0HhNEa-Z6q2ZU.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/alegreyasc/v9/taiTGmRtCJ62-O0HhNEa-ZZc-rUx.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/alegreyasc/v9/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK8.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/alegreyasc/v9/taiTGmRtCJ62-O0HhNEa-ZYU_LUx.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/alegreyasc/v9/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK8.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/alegreyasc/v9/taiTGmRtCJ62-O0HhNEa-ZYI_7Ux.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/alegreyasc/v9/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK8.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/alegreyasc/v9/taiTGmRtCJ62-O0HhNEa-ZYs_rUx.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/alegreyasc/v9/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Alegreya Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-11-09\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUt9_-1phKLFgshYDvh6Vwt5TltuA.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1W.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE0.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUz9_-1phKLFgshYDvh6Vwt3V0.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUt9_-1phKLFgshYDvh6Vwt7V9tuA.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUu9_-1phKLFgshYDvh6Vwt5alOmE0.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUu9_-1phKLFgshYDvh6Vwt5eFImE0.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jg.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE0.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jg.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE0.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/alegreyasans/v8/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Alegreya Sans SC\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRB.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iQ.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNQ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk4.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iQ.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iQ.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNQ.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iQ.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNQ.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iQ.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Alex Brush\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/alexbrush/v8/SZc83FzrJKuqFbwMKk6EtUI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Alfa Slab One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/alfaslabone/v7/6NUQ8FmMKwSEKjnm5-4v-4Jh6dU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Alice\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/alice/v9/OpNCnoEEmtHa6FcJ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Alike\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/alike/v10/HI_EiYEYI6BIoEjB.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Alike Angular\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/alikeangular/v8/3qTrojWunjGQtEBlIcwMbSoI3kM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Allan\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/allan/v9/ea8XadU7WuTxEtb2.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/allan/v9/ea8aadU7WuTxEu5KEPCN.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Allerta\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/allerta/v8/TwMO-IAHRlkbx940UnE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Allerta Stencil\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/allertastencil/v8/HTx0L209KT-LmIE9N7OR6eiycOeF-w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Allura\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/allura/v6/9oRPNYsQpS4zjuAPjA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Almendra\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/almendra/v10/H4ckBXKAlMnTn0CskyY6.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/almendra/v10/H4ciBXKAlMnTn0CskxY4yLs.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/almendra/v10/H4cjBXKAlMnTn0Cskx6G7Zu4.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/almendra/v10/H4chBXKAlMnTn0CskxY48Ae9oqY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Almendra Display\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/almendradisplay/v8/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Almendra SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/almendrasc/v8/Iure6Yx284eebowr7hbyTZZJ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Amarante\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/amarante/v5/xMQXuF1KTa6EvGx9bq-3.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Amaranth\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/amaranth/v8/KtkuALODe433f0j1zPnC.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/amaranth/v8/KtkoALODe433f0j1zMnAHdU.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/amaranth/v8/KtkpALODe433f0j1zMF-OPWi.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/amaranth/v8/KtkrALODe433f0j1zMnAJWmn42Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Amatic SC\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"cyrillic\",\n    \"hebrew\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/amaticsc/v11/TUZyzwprpvBS1izr_vO0DQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/amaticsc/v11/TUZ3zwprpvBS1izr_vOMscG6eQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Amethysta\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/amethysta/v6/rP2Fp2K15kgb_F3ibfWIGA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Amiko\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/amiko/v2/WwkQxPq1DFK04tql.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/amiko/v2/WwkdxPq1DFK04uJ9XXrE.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/amiko/v2/WwkdxPq1DFK04uIZXHrE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Amiri\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/amiri/v10/J7aRnpd8CGxBHqUp.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/amiri/v10/J7afnpd8CGxBHpUrtLY.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/amiri/v10/J7acnpd8CGxBHp2VkZY4.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/amiri/v10/J7aanpd8CGxBHpUrjAo9zps.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Amita\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/amita/v3/HhyaU5si9Om7PQlv.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/amita/v3/HhyXU5si9Om7PTHTLtCC.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Anaheim\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/anaheim/v5/8vII7w042Wp87g4G0UQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Andada\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/andada/v9/uK_y4riWaego3w9RCg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Andika\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/andika/v9/mem_Ya6iyW-LwqgAbQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Angkor\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/angkor/v10/H4cmBXyAlsPdnlb-8g.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Annie Use Your Telescope\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/annieuseyourtelescope/v8/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Anonymous Pro\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/anonymouspro/v11/rP2Bp2a15UIB7Un-bOeISG3pLlw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/anonymouspro/v11/rP2fp2a15UIB7Un-bOeISG3pHl428A.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/anonymouspro/v11/rP2cp2a15UIB7Un-bOeISG3pFuAT0Ck.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/anonymouspro/v11/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Antic\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/antic/v9/TuGfUVB8XY5DRaZL.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Antic Didone\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/anticdidone/v6/RWmPoKKX6u8sp8fIWdnDKqDiqQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Antic Slab\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/anticslab/v6/bWt97fPFfRzkCa9Jlp6IWcI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Anton\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/anton/v9/1Ptgg87LROyAm0K0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Arapey\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/arapey/v6/-W__XJn-UDDA2RC6Zw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/arapey/v6/-W_9XJn-UDDA2RCKZdoY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Arbutus\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/arbutus/v7/NaPYcZ7dG_5J3poob9I.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Arbutus Slab\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/arbutusslab/v6/oY1Z8e7OuLXkJGbXtr5ba7ZVaw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Architects Daughter\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/architectsdaughter/v8/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Archivo\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/archivo/v3/k3kQo8UDI-1M0wlSTd4.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/archivo/v3/k3kSo8UDI-1M0wlSfdzoKw.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/archivo/v3/k3kVo8UDI-1M0wlSdSrLC0E.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/archivo/v3/k3kXo8UDI-1M0wlSfdzQ30LhKQ.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/archivo/v3/k3kVo8UDI-1M0wlSdQbMC0E.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/archivo/v3/k3kXo8UDI-1M0wlSfdzQ80XhKQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/archivo/v3/k3kVo8UDI-1M0wlSdWLNC0E.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/archivo/v3/k3kXo8UDI-1M0wlSfdzQl0ThKQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Archivo Black\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/archivoblack/v7/HTxqL289NzCGg4MzN6KJ7eW6OYs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Archivo Narrow\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/archivonarrow/v8/tss0ApVBdCYD5Q7hcxTE1ArZ0Yb3.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/archivonarrow/v8/tss2ApVBdCYD5Q7hcxTE1ArZ0bb1iXk.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/archivonarrow/v8/tss3ApVBdCYD5Q7hcxTE1ArZ0b4Dqlla.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/archivonarrow/v8/tssxApVBdCYD5Q7hcxTE1ArZ0bb1sY1Z-9c.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/archivonarrow/v8/tss3ApVBdCYD5Q7hcxTE1ArZ0b4vrVla.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/archivonarrow/v8/tssxApVBdCYD5Q7hcxTE1ArZ0bb1saFe-9c.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/archivonarrow/v8/tss3ApVBdCYD5Q7hcxTE1ArZ0b5LrFla.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/archivonarrow/v8/tssxApVBdCYD5Q7hcxTE1ArZ0bb1scVf-9c.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Aref Ruqaa\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/arefruqaa/v5/WwkbxPW1E165rajQKDulEIA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/arefruqaa/v5/WwkYxPW1E165rajQKDulKDwNcNI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Arima Madurai\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"tamil\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/arimamadurai/v3/t5t4IRoeKYORG0WNMgnC3seB1V3Pqg.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1fHuips.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1ZXtips.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/arimamadurai/v3/t5tmIRoeKYORG0WNMgnC3seB7Tk.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1c3sips.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1YXqips.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1Znpips.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1b3oips.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Arimo\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"hebrew\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/arimo/v11/P5sMzZCDf9_T_20e.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/arimo/v11/P5sCzZCDf9_T_10cxCQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/arimo/v11/P5sBzZCDf9_T_1Wi4QRE.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/arimo/v11/P5sHzZCDf9_T_10c_JhBrZc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Arizonia\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/arizonia/v8/neIIzCemt4A5qa7mv6WG.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Armata\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/armata/v8/gokvH63_HV5jQ-E9lA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Arsenal\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/arsenal/v2/wXKrE3kQtZQ4pF3D118.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/arsenal/v2/wXKpE3kQtZQ4pF3D513cBQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/arsenal/v2/wXKuE3kQtZQ4pF3D7-P5JeQ.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/arsenal/v2/wXKsE3kQtZQ4pF3D513kueEKnQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Artifika\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/artifika/v8/VEMyRoxzronptCuxu6Wt.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Arvo\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/arvo/v10/tDbD2oWUg0MKmSA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/arvo/v10/tDbN2oWUg0MKqSIQ6A.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/arvo/v10/tDbM2oWUg0MKoZw1yLQ.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/arvo/v10/tDbO2oWUg0MKqSIoVLHK9g.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Arya\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/arya/v3/ga6CawNG-HJd9UY.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/arya/v3/ga6NawNG-HJdzfra3b8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Asap\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/asap/v7/KFOoCniXp96a-zw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/asap/v7/KFOmCniXp96ayz4e5Q.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/asap/v7/KFOnCniXp96aw8g9xUw.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/asap/v7/KFOlCniXp96ayz4mEU9vAw.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/asap/v7/KFOnCniXp96aw-Q6xUw.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/asap/v7/KFOlCniXp96ayz4mPUhvAw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/asap/v7/KFOnCniXp96aw4A7xUw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/asap/v7/KFOlCniXp96ayz4mWUlvAw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Asap Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/asapcondensed/v2/pxidypY1o9NHyXh3WvSbGSggdNeL.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/asapcondensed/v2/pxifypY1o9NHyXh3WvSbGSggdOeJaEk.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/asapcondensed/v2/pxieypY1o9NHyXh3WvSbGSggdO9_S2lE.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/asapcondensed/v2/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him4.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/asapcondensed/v2/pxieypY1o9NHyXh3WvSbGSggdO9TTGlE.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/asapcondensed/v2/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim4.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/asapcondensed/v2/pxieypY1o9NHyXh3WvSbGSggdO83TWlE.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/asapcondensed/v2/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Asar\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/asar/v4/sZlLdRyI6TBIXkY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Asset\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/asset/v8/SLXGc1na-mM4cWIm.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Assistant\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"hebrew\",\n    \"latin\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7p0ScAw.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7w0ecAw.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/assistant/v2/2sDcZGJYnIjSi6H75xkDbw.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7t0GcAw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk700CcAw.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7z0OcAw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Astloch\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/astloch/v8/TuGRUVJ8QI5GSeUjq9w.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/astloch/v8/TuGUUVJ8QI5GSeUjk2A-6MM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Asul\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/asul/v7/VuJ-dNjKxYr46fM.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/asul/v7/VuJxdNjKxYr40U8qeKY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Athiti\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/athiti/v2/pe0sMISdLIZIv1wAxDNyAg.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/athiti/v2/pe0sMISdLIZIv1wAoDByAg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/athiti/v2/pe0vMISdLIZIv1w4DA.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/athiti/v2/pe0sMISdLIZIv1wA-DFyAg.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/athiti/v2/pe0sMISdLIZIv1wA1DZyAg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/athiti/v2/pe0sMISdLIZIv1wAsDdyAg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Atma\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"bengali\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/atma/v3/uK_z4rqWc-Eoo8JzKjc.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/atma/v3/uK_84rqWc-Eom24.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/atma/v3/uK_z4rqWc-Eoo5pyKjc.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/atma/v3/uK_z4rqWc-Eoo7Z1Kjc.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/atma/v3/uK_z4rqWc-Eoo9J0Kjc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Atomic Age\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/atomicage/v9/f0Xz0eug6sdmRFkYZZGL58E.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Aubrey\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/aubrey/v10/q5uGsou7NPBw-p7vug.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Audiowide\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/audiowide/v6/l7gdbjpo0cum0ckerWCtkQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Autour One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/autourone/v7/UqyVK80cP25l3fJgbdfbk5k.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Average\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/average/v6/fC1hPYBHe23MxA7rIeI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Average Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/averagesans/v6/1Ptpg8fLXP2dlAXR-HlJJNJPBQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Averia Gruesa Libre\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/averiagruesalibre/v6/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Averia Libre\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/averialibre/v6/2V0FKIcMGZEnV6xygz7eNjEarovtbw.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/averialibre/v6/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/averialibre/v6/2V0aKIcMGZEnV6xygz7eNjEiAg.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/averialibre/v6/2V0EKIcMGZEnV6xygz7eNjESAKnN.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/averialibre/v6/2V0FKIcMGZEnV6xygz7eNjEavoztbw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/averialibre/v6/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Averia Sans Libre\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQ.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5c.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQ.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5c.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Averia Serif Libre\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwQ.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60u.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwQ.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0u.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bad Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/badscript/v6/6NUT8F6PJgbFWQn47_x7lOw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bahiana\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bahiana/v2/uU9PCBUV4YenPWJU7xM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Baloo\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/baloo/v3/6xKhdSpJJ92I9PWI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Baloo Bhai\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"gujarati\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/baloobhai/v3/ZgNWjP5GM7bCUdmXgWyVjGU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Baloo Bhaijaan\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"arabic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/baloobhaijaan/v3/RWmRoKCU5fcqq8fOWNzFLqSjx4EC.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Baloo Bhaina\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"oriya\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/baloobhaina/v3/Noa16Uzzzp2FIkfhq5vm9thxPA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Baloo Chettan\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"malayalam\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/baloochettan/v3/0QImMXRN8o2gTC2YTr4665DA07w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Baloo Da\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"bengali\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/balooda/v3/LhWmMVnXOfIZO795FXkf.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Baloo Paaji\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"gurmukhi\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/baloopaaji/v3/8AttGsyxM5KQQU-Y4MTwVZnT.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Baloo Tamma\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"kannada\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/balootamma/v3/JTUTjIk68Cy27gWhOWIghE5B.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Baloo Tammudu\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"telugu\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/balootammudu/v3/mFT3Wb8Qza7c_Z5HTsC_5nxW8Eo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Baloo Thambi\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"tamil\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/baloothambi/v3/va9B4kXJzNhTFoA7CYcS8sHuQQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Balthazar\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/balthazar/v6/d6lKkaajS8Gm4CVQjFEvyQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bangers\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bangers/v10/FeVQS0BTqb0h60ACL5k.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Barlow\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v1\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/barlow/v1/7cHrv4kjgoGqM7E3b8s8.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/barlow/v1/7cHtv4kjgoGqM7E_CfNYwHo.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/barlow/v1/7cHqv4kjgoGqM7E3w-oc4A.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/barlow/v1/7cHsv4kjgoGqM7E_CfP04Vop.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/barlow/v1/7cHqv4kjgoGqM7E3p-kc4A.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/barlow/v1/7cHsv4kjgoGqM7E_CfOQ4lop.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/barlow/v1/7cHpv4kjgoGqM7EPCw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/barlow/v1/7cHrv4kjgoGqM7E_Ccs8.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/barlow/v1/7cHqv4kjgoGqM7E3_-gc4A.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/barlow/v1/7cHsv4kjgoGqM7E_CfPI41op.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/barlow/v1/7cHqv4kjgoGqM7E30-8c4A.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/barlow/v1/7cHsv4kjgoGqM7E_CfPk5Fop.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/barlow/v1/7cHqv4kjgoGqM7E3t-4c4A.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/barlow/v1/7cHsv4kjgoGqM7E_CfOA5Vop.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/barlow/v1/7cHqv4kjgoGqM7E3q-0c4A.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/barlow/v1/7cHsv4kjgoGqM7E_CfOc5lop.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/barlow/v1/7cHqv4kjgoGqM7E3j-wc4A.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/barlow/v1/7cHsv4kjgoGqM7E_CfO451op.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Barlow Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v1\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT3w.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3E.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvA.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3E.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xY.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT3w.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3E.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3E.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3E.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvA.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3E.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3E.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v1/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Barlow Semi Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v1\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qv.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEs.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAA.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsg.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAA.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnfw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqv.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAA.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sg.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAA.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAA.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsg.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAA.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsg.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAA.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v1/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Barrio\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/barrio/v2/wEO8EBXBk8hBIDiEdQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Basic\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/basic/v7/xfu_0WLxV2_XKQN3.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Battambang\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/battambang/v11/uk-mEGe7raEw-HjkzZabDnU.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/battambang/v11/uk-lEGe7raEw-HjkzZabNsmMxyQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Baumans\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/baumans/v7/-W_-XJj9QyTd3QfpR_o.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bayon\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bayon/v10/9XUrlJNmn0LPFl-p.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Belgrano\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/belgrano/v8/55xvey5tM9rwKWrJZcMF.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bellefair\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"hebrew\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bellefair/v3/kJExBuYY6AAuhiXUxG19_w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Belleza\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/belleza/v6/0nkoC9_pNeMfhX4BtcY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"BenchNine\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/benchnine/v6/ahcev8612zF4jxrwMosT--tRhQ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/benchnine/v6/ahcbv8612zF4jxrwMosrVw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/benchnine/v6/ahcev8612zF4jxrwMosT6-xRhQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bentham\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bentham/v8/VdGeAZQPEpYfmHglKWw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Berkshire Swash\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/berkshireswash/v6/ptRRTi-cavZOGqCvnNJDl5m5XmNPrQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bevan\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bevan/v9/4iCj6KZ0a9NXjF8a.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bigelow Rules\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bigelowrules/v6/RrQWboly8iR_I3KWSzeRuN0zT4c.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bigshot One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bigshotone/v8/u-470qukhRkkO6BD_7cM_gxu.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bilbo\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bilbo/v7/o-0EIpgpwWwZ210h.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bilbo Swash Caps\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bilboswashcaps/v9/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"BioRhyme\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/biorhyme/v2/1cX3aULHBpDMsHYW_ESOjnGA.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/biorhyme/v2/1cX3aULHBpDMsHYW_ETqjXGA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/biorhyme/v2/1cXwaULHBpDMsHYW_HxG.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/biorhyme/v2/1cX3aULHBpDMsHYW_ET6inGA.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/biorhyme/v2/1cX3aULHBpDMsHYW_ETmiXGA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"BioRhyme Expanded\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v3/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSH.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v3/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSH.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v3/i7dQIE1zZzytGswgU577CDY9LjbffySU.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v3/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSH.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v3/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSH.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Biryani\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84YddYQyGTA.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84YddeAxGTA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/biryani/v3/hv-WlzNxIFoO84YdTUw.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84YddZQ3GTA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84YddfA2GTA.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84Yddew1GTA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84Yddcg0GTA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bitter\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bitter/v12/rax8HiqOu8IVPmnLeA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/bitter/v12/rax-HiqOu8IVPmn7eoxs.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/bitter/v12/rax_HiqOu8IVPmnzxKlMBA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Black And White Picture\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/blackandwhitepicture/v3/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5H.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Black Han Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/blackhansans/v3/ea8Aad44WunzF9a-dL6toA8r8nqV.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Black Ops One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/blackopsone/v9/qWcsB6-ypo7xBdr6Xshe96H3WDw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bokor\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bokor/v10/m8JcjfpeeaqTiR2W.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bonbon\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bonbon/v9/0FlVVPeVlFec4ee_cA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Boogaloo\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/boogaloo/v8/kmK-Zq45GAvOdnaW6x1F.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bowlby One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bowlbyone/v9/taiPGmVuC4y96PFeqp8smo4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bowlby One SC\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bowlbyonesc/v9/DtVlJxerQqQm37tzN3wMug9Pzgg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Brawler\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/brawler/v8/xn7gYHE3xXewAscGsgA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bree Serif\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/breeserif/v7/4UaHrEJCrhhnVA3DgluAx60.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bubblegum Sans\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bubblegumsans/v6/AYCSpXb_Z9EORv1M5QTjEzMEtdaH.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bubbler One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bubblerone/v6/f0Xy0eqj68ppQV9KBLmAouHH.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Buda\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"300\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/buda/v8/GFDqWAN8mnyIJSSrG7U.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Buenard\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/buenard/v9/OD5DuM6Cyma8FnnsPzc.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/buenard/v9/OD5GuM6Cyma8FnnsB4vSjGA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bungee\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bungee/v3/N0bU2SZBIuF2PU_ECg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bungee Hairline\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bungeehairline/v3/snfys0G548t04270a_ljTLUVrv-7YA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bungee Inline\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bungeeinline/v3/Gg8zN58UcgnlCweMrih332VuDGI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bungee Outline\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bungeeoutline/v3/_6_mEDvmVP24UvU2MyiGDslL3Qg3.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Bungee Shade\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/bungeeshade/v3/DtVkJxarWL0t2KdzK3oI_jks7g.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Butcherman\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/butcherman/v9/2EbiL-thF0loflXUBOdb1zU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Butterfly Kids\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/butterflykids/v6/ll8lK2CWTjuqAsXDqlnIbMNs5S4a.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cabin\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cabin/v12/u-4x0qWljRw-Pe83.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/cabin/v12/u-4_0qWljRw-Pd81__g.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/cabin/v12/u-480qWljRw-PdfD3Nhi.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/cabin/v12/u-460qWljRw-Pd81xwxhuyw.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/cabin/v12/u-480qWljRw-Pdfv29hi.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/cabin/v12/u-460qWljRw-Pd81xyBmuyw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cabin/v12/u-480qWljRw-PdeL2thi.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/cabin/v12/u-460qWljRw-Pd81x0Rnuyw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cabin Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cabincondensed/v11/nwpMtK6mNhBK2err_hqkYhHRqmwaYA.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/cabincondensed/v11/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97A.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/cabincondensed/v11/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97A.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cabincondensed/v11/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cabin Sketch\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cabinsketch/v11/QGYpz_kZZAGCONcK2A4bGOjMnw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cabinsketch/v11/QGY2z_kZZAGCONcK2A4bGOj0I_1o4Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Caesar Dressing\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/caesardressing/v6/yYLx0hLa3vawqtwdswbotmK4vrR3cQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cagliostro\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cagliostro/v6/ZgNWjP5HM73BV5amnX-TjGU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cairo\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"600\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/cairo/v3/SLXLc1nY6Hkvalrub76M.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/cairo/v3/SLXLc1nY6HkvalqKbL6M.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/cairo/v3/SLXGc1nY6HkvamIm.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/cairo/v3/SLXLc1nY6Hkvalr-ar6M.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cairo/v3/SLXLc1nY6Hkvalqaa76M.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/cairo/v3/SLXLc1nY6Hkvalqiab6M.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Calligraffitti\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/calligraffitti/v9/46k2lbT3XjDVqJw3DCmCFjE0vnFZ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cambay\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cambay/v3/SLXJc1rY6H0_ZDsGbg.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/cambay/v3/SLXLc1rY6H0_ZDs2bL6M.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cambay/v3/SLXKc1rY6H0_ZDs-0pusxw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/cambay/v3/SLXMc1rY6H0_ZDs2bIYwwvN0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cambo\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cambo/v6/IFSqHeNEk8FJk416.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Candal\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/candal/v7/XoHn2YH6T7-t_8cNAQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cantarell\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cantarell/v7/B50NF7ZDq37KMUvlO01Jiw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/cantarell/v7/B50LF7ZDq37KMUvlO015iaJu.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cantarell/v7/B50IF7ZDq37KMUvlO01xN4dOFA.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/cantarell/v7/B50WF7ZDq37KMUvlO015iZrSEY6a.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cantata One\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cantataone/v7/PlI5Fl60Nb5obNzNe2jslVxE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cantora One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cantoraone/v7/gyB4hws1JdgnKy56GB_JX6zd.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Capriola\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/capriola/v5/wXKoE3YSppcvo1PDln_8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cardo\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cardo/v9/wlp_gwjKBV1pqiv_.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/cardo/v9/wlpxgwjKBV1pqhv93IQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cardo/v9/wlpygwjKBV1pqhND-aQR.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Carme\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/carme/v8/ptRHTiWdbvZIDOjG.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Carrois Gothic\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/carroisgothic/v7/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Carrois Gothic SC\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/carroisgothicsc/v7/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28n.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Carter One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/carterone/v9/q5uCsoe5IOB2-pXv9UcNIxQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Catamaran\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"tamil\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/catamaran/v4/o-0OIpQoyXQa2RxT7-5jhjRF.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jKhVlYw.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jThZlYw.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/catamaran/v4/o-0IIpQoyXQa2RxT7-5b4g.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jFhdlYw.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jOhBlYw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jXhFlYw.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jQhJlYw.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jZhNlYw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Caudex\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/caudex/v7/esDQ311QOP6BJUrIyg.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/caudex/v7/esDS311QOP6BJUr4yPKE.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/caudex/v7/esDT311QOP6BJUrwdteklQ.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/caudex/v7/esDV311QOP6BJUr4yMo4kJ8G.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Caveat\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/caveat/v4/Wnz6HAc5bAfYB2QLYQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/caveat/v4/Wnz5HAc5bAfYB2Qz3RM9og.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Caveat Brush\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/caveatbrush/v3/EYq0maZfwr9S9-ETZc3fKXtMWw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cedarville Cursive\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cedarvillecursive/v8/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ceviche One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cevicheone/v8/gyB4hws1IcA6JzR-GB_JX6zd.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Changa\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/changa/v4/2-cl9JNi2YuVOUcsqb2bUg.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/changa/v4/2-cl9JNi2YuVOUcszb6bUg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/changa/v4/2-cm9JNi2YuVOUcUYQ.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/changa/v4/2-cl9JNi2YuVOUcslb-bUg.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/changa/v4/2-cl9JNi2YuVOUcsubibUg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/changa/v4/2-cl9JNi2YuVOUcs3bmbUg.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/changa/v4/2-cl9JNi2YuVOUcswbqbUg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Changa One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/changaone/v10/xfu00W3wXn3QLUJXhzq46AY.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/changaone/v10/xfu20W3wXn3QLUJXhzq42ATivA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Chango\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/chango/v6/2V0cKI0OB5U7WaJyzw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Chathura\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"300\",\n    \"regular\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/chathura/v3/_gP91R7-rzUuVjim42dEq0Q.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/chathura/v3/_gP81R7-rzUuVjim42eMiWSx.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/chathura/v3/_gP71R7-rzUuVjim418g.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/chathura/v3/_gP81R7-rzUuVjim42ecjmSx.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/chathura/v3/_gP81R7-rzUuVjim42eAjWSx.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Chau Philomene One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/chauphilomeneone/v7/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/chauphilomeneone/v7/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Chela One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/chelaone/v6/6ae-4KC7Uqgdz_JZdPIy3w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Chelsea Market\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/chelseamarket/v5/BCawqZsHqfr89WNP_IApC8tzKBhl.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Chenla\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/chenla/v10/SZc43FDpIKu8WZ9eXw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cherry Cream Soda\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cherrycreamsoda/v8/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cherry Swash\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cherryswash/v5/i7dNIFByZjaNAMxtZcnfAy58QA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cherryswash/v5/i7dSIFByZjaNAMxtZcnfAy5E_FeaGw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Chewy\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/chewy/v9/uK_94ruUb-k-wk5x.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Chicle\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/chicle/v6/lJwG-pw9i2dqU-BDyQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Chivo\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/chivo/v9/va9F4kzIxd1KFrjDY8Z_.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/chivo/v9/va9D4kzIxd1KFrBteUp9sKg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/chivo/v9/va9I4kzIxd1KFoBv.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/chivo/v9/va9G4kzIxd1KFrBtQeY.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/chivo/v9/va9F4kzIxd1KFrjTZMZ_.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/chivo/v9/va9D4kzIxd1KFrBteVp6sKg.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/chivo/v9/va9F4kzIxd1KFrjrZsZ_.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/chivo/v9/va9D4kzIxd1KFrBteWJ4sKg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Chonburi\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/chonburi/v2/8AtqGs-wOpGRTBq66IWa.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cinzel\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cinzel/v7/8vIJ7ww63mVu7gtL8Q.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cinzel/v7/8vIK7ww63mVu7gtzTUHeFA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/cinzel/v7/8vIK7ww63mVu7gtzdUPeFA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cinzel Decorative\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cinzeldecorative/v6/daaCSScvJGqLYhG8nNt8KPPswUAPnh7U.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cinzeldecorative/v6/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelD.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/cinzeldecorative/v6/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lD.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Clicker Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/clickerscript/v5/raxkHiKPvt8CMH6ZWP8PdlEq72rY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Coda\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v13\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/coda/v13/SLXHc1jY5nQ8JUI.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/coda/v13/SLXIc1jY5nQ8HeIgTp4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Coda Caption\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"800\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"800\": \"http://fonts.gstatic.com/s/codacaption/v11/ieVm2YRII2GMY7SyXSoDRiQGqcx6xw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Codystar\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"300\",\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/codystar/v5/FwZf7-Q1xVk-40qxOuYsyuyr.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/codystar/v5/FwZY7-Q1xVk-40qxOt6A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Coiny\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"tamil\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/coiny/v3/gyByhwU1K989PXwb.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Combo\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/combo/v6/BXRlvF3Jh_fIhg0i.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Comfortaa\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/comfortaa/v12/1Ptpg8LJRfWJmhDAuUsw5qNPBQ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/comfortaa/v12/1Ptsg8LJRfWJmhDAuUsISg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/comfortaa/v12/1Ptpg8LJRfWJmhDAuUsw9qRPBQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Coming Soon\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/comingsoon/v8/qWcuB6mzpYL7AJ2VfdQR1u-S.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Concert One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/concertone/v8/VEM1Ro9xs5PjtzCu-srDqRTl.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Condiment\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/condiment/v5/pONk1hggFNmwvXALyH6Sqw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Content\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/content/v9/zrfl0HLayePhU_AwUaA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/content/v9/zrfg0HLayePhU_AwaRzdBio.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Contrail One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/contrailone/v7/eLGbP-j_JA-kG0_Zo51noafdZQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Convergence\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/convergence/v6/rax5HiePvdgXPmmMHcIPYRha.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cookie\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cookie/v8/syky-y18lb0tSbfNlQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Copse\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/copse/v7/11hPGpDKz1rGb0dj.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Corben\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/corben/v11/LYjDdGzzklQtCMp9oA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/corben/v11/LYjAdGzzklQtCMpFHCZgrQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cormorant\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/cormorant/v6/H4cgBXOCl9bbnla_nHIiRLmYgg.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/cormorant/v6/H4c-BXOCl9bbnla_nHIq6qMUgIa2.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/cormorant/v6/H4clBXOCl9bbnla_nHIa6A.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/cormorant/v6/H4cjBXOCl9bbnla_nHIq6pu4.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/cormorant/v6/H4cgBXOCl9bbnla_nHIiHLiYgg.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/cormorant/v6/H4c-BXOCl9bbnla_nHIq6qNMgYa2.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/cormorant/v6/H4cgBXOCl9bbnla_nHIiML-Ygg.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/cormorant/v6/H4c-BXOCl9bbnla_nHIq6qNghoa2.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cormorant/v6/H4cgBXOCl9bbnla_nHIiVL6Ygg.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/cormorant/v6/H4c-BXOCl9bbnla_nHIq6qMEh4a2.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cormorant Garamond\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQ.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-N.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3bmX5slCNuHLi8bLeY9MK7whWMhyjorg.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtP.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQ.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-N.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQ.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-N.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQ.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-N.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cormorant Infant\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/cormorantinfant/v5/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DM.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v5/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/cormorantinfant/v5/HhyPU44g9vKiM1sORYSiWeAsLN993_A.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v5/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3A.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/cormorantinfant/v5/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DM.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v5/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRg.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/cormorantinfant/v5/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DM.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v5/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cormorantinfant/v5/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DM.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v5/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cormorant SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/cormorantsc/v5/0ybmGD4kxqXBmOVLG30OGwsmABIU_Q.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/cormorantsc/v5/0yb5GD4kxqXBmOVLG30OGwserA.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/cormorantsc/v5/0ybmGD4kxqXBmOVLG30OGwsmWBMU_Q.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/cormorantsc/v5/0ybmGD4kxqXBmOVLG30OGwsmdBQU_Q.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cormorantsc/v5/0ybmGD4kxqXBmOVLG30OGwsmEBUU_Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cormorant Unicase\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/cormorantunicase/v5/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/cormorantunicase/v5/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vT.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/cormorantunicase/v5/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/cormorantunicase/v5/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cormorantunicase/v5/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cormorant Upright\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/cormorantupright/v4/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDs.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/cormorantupright/v4/VuJrdM3I2Y35poFONtLdafkUCHw1y2vV.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/cormorantupright/v4/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDs.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/cormorantupright/v4/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDs.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cormorantupright/v4/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Courgette\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/courgette/v5/wEO_EBrAnc9BLjLQAUkFUQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cousine\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"hebrew\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cousine/v12/d6lIkaiiRdih4SpPzSM.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/cousine/v12/d6lKkaiiRdih4SpP_SEvyQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cousine/v12/d6lNkaiiRdih4SpP9Z8K6T4.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/cousine/v12/d6lPkaiiRdih4SpP_SEXdTvM1w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Coustard\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/coustard/v8/3XFpErgg3YsZ5fqUU9UP.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/coustard/v8/3XFuErgg3YsZ5fqUU-2LkEHm.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Covered By Your Grace\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/coveredbyyourgrace/v7/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0Fg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Crafty Girls\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/craftygirls/v7/va9B4kXI39VaDdlPJo8N_NvuQQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Creepster\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/creepster/v6/AlZy_zVUqJz4yMrniH4hdQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Crete Round\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/creteround/v6/55xoey1sJNPjPiv1ZZZrxJ18.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/creteround/v6/55xqey1sJNPjPiv1ZZZrxK1-0bg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Crimson Text\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/crimsontext/v8/wlp2gwHKFkZgtmSR3NB0oRJvaA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/crimsontext/v8/wlpogwHKFkZgtmSR3NB0oRJfaghW.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/crimsontext/v8/wlppgwHKFkZgtmSR3NB0oRJXsCx2Cw.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/crimsontext/v8/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/crimsontext/v8/wlppgwHKFkZgtmSR3NB0oRJX1C12Cw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/crimsontext/v8/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Croissant One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/croissantone/v5/3y9n6bU9bTPg4m8NDy3Kq24UM3o.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Crushed\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/crushed/v8/U9Mc6dym6WXImTlFT1k.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cuprum\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cuprum/v9/dg4k_pLmvrkcOkB9IQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/cuprum/v9/dg4m_pLmvrkcOkBNI-tH.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/cuprum/v9/dg4n_pLmvrkcOkBFnc5njw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/cuprum/v9/dg4h_pLmvrkcOkBNI9P7ipwt.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cute Font\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cutefont/v3/Noaw6Uny2oWPbSHMrY6vmA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cutive\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cutive/v9/NaPZcZ_fHOhV3Ip7Tw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Cutive Mono\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/cutivemono/v6/m8JWjfRfY7WVjVi2E-K9H5RF.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Damion\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/damion/v7/hv-XlzJ3KEUe_YZUbQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Dancing Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/dancingscript/v9/If2RXTr6YS-zF4S-kcSWSVi_swLn.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/dancingscript/v9/If2SXTr6YS-zF4S-kcSWSVi_szpbr8Qt.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Dangrek\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/dangrek/v9/LYjCdG30nEgoH8E2gCM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"David Libre\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"hebrew\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/davidlibre/v2/snfus0W_99N64iuYSvp4W_l8.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/davidlibre/v2/snfzs0W_99N64iuYSvp4W8GIw7qb.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/davidlibre/v2/snfzs0W_99N64iuYSvp4W8HAxbqb.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Dawning of a New Day\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/dawningofanewday/v8/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8b.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Days One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/daysone/v7/mem9YaCnxnKRiYZOCLYV.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Dekko\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/dekko/v4/46khlb_wWjfSrttF.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Delius\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/delius/v7/PN_xRfK0pW_9e1rtYQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Delius Swash Caps\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/deliusswashcaps/v9/oY1E8fPLr7v4JWCExZpWebxVKORpXXed.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Delius Unicase\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/deliusunicase/v10/845BNMEwEIOVT8BmgfSzIr_6mmLH.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/deliusunicase/v10/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Della Respira\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/dellarespira/v5/RLp5K5v44KaueWI6iEJQBiGPRfk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Denk One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/denkone/v5/dg4m_pzhrqcFb2IzROtH.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Devonshire\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/devonshire/v6/46kqlbDwWirWr4gtBD2BX0U.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Dhurjati\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/dhurjati/v5/_6_8ED3gSeatXfFiFX3y.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Didact Gothic\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/didactgothic/v11/ahcfv8qz1zt6hCC5G4F_P4ASpUw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Diplomata\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/diplomata/v9/Cn-0JtiMXwhNwp-wKxyfYA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Diplomata SC\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/diplomatasc/v6/buExpoi3ecvs3kidKgBJo2kf-A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Do Hyeon\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/dohyeon/v3/TwMN-I8CRRU2zM86HFE3.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Dokdo\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/dokdo/v3/esDf315XNuCBLxLo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Domine\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/domine/v5/L0x8DFMnlVwD4h3RvA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/domine/v5/L0x_DFMnlVwD4h3pAN-CTQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Donegal One\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/donegalone/v5/m8JWjfRYea-ZnFz6fsK9FZRF.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Doppio One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/doppioone/v5/Gg8wN5gSaBfyBw2MqCh-lgs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Dorsa\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/dorsa/v8/yYLn0hjd0OGwqo49.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Dosis\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzGnKtCC.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzHDKdCC.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/dosis/v7/HhyaU5sn9vOmLwlv.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzGbKNCC.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzG3L9CC.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzHTLtCC.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzHPLdCC.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Dr Sugiyama\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/drsugiyama/v6/HTxoL2k4N3O9n5I1boGI7abR.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Duru Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/durusans/v10/xn7iYH8xwmSyTvEV_HOxTw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Dynalight\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/dynalight/v6/1Ptsg8LOU_aOmQvTsF4ISg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"EB Garamond\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ebgaramond/v9/SlGUmQSNjdsmc35JDF1K5FRy.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/ebgaramond/v9/SlGWmQSNjdsmc35JDF1K5GRwSDw.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GyGaxwV.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcMgWQgs.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GyqbBwV.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcOQRQgs.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GzObRwV.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcIAQQgs.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GzSbhwV.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcJwTQgs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Eagle Lake\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/eaglelake/v5/ptRMTiqbbuNJDOiKj9wG5O4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"East Sea Dokdo\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/eastseadokdo/v3/xfuo0Wn2V2_KanASqXSZp22m05_a.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Eater\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/eater/v6/mtG04_FCK7bOvpu2.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Economica\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/economica/v5/Qw3fZQZaHCLgIWa29ZBrMQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/economica/v5/Qw3ZZQZaHCLgIWa29ZBbM8IE.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/economica/v5/Qw3aZQZaHCLgIWa29ZBTjeckCg.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/economica/v5/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Eczar\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/eczar/v6/BXRlvF3Pi-DLmw0i.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/eczar/v6/BXRovF3Pi-DLmzXWL8t6.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/eczar/v6/BXRovF3Pi-DLmzX6KMt6.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/eczar/v6/BXRovF3Pi-DLmzWeKct6.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/eczar/v6/BXRovF3Pi-DLmzWCKst6.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"El Messiri\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"arabic\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/elmessiri/v3/K2F0fZBRmr9vQ1pHEey6Aoo.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/elmessiri/v3/K2F3fZBRmr9vQ1pHEey6On6jJyo.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/elmessiri/v3/K2F3fZBRmr9vQ1pHEey6OlKkJyo.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/elmessiri/v3/K2F3fZBRmr9vQ1pHEey6OjalJyo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Electrolize\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/electrolize/v6/cIf5Ma1dtE0zSiGSiED7AUEG.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Elsie\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/elsie/v7/BCanqZABrez54yYu.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/elsie/v7/BCaqqZABrez54x6q2-1I.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Elsie Swash Caps\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/elsieswashcaps/v6/845DNN8xGZyVX5MVo_upKf7KnjK0feo.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/elsieswashcaps/v6/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Emblema One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/emblemaone/v6/nKKT-GQ0F5dSY8vzG0rOEIRB.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Emilys Candy\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/emilyscandy/v5/2EbgL-1mD1Rnb0OGKudbk0y5rw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Encode Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/encodesans/v2/LDI0apOFNxEwR-Bd1O9uYPvIeeI.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPtkWMLO.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPsAW8LO.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/encodesans/v2/LDI2apOFNxEwR-Bd1O9uYMOs.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPtYWsLO.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPt0XcLO.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPsQXMLO.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPsMX8LO.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPsoXsLO.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Encode Sans Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-J.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pBw.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pBw.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgQ.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypBw.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupBw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpBw.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpBw.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipBw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Encode Sans Expanded\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/encodesansexpanded/v2/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQM.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/encodesansexpanded/v2/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNI.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/encodesansexpanded/v2/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNI.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/encodesansexpanded/v2/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoi.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/encodesansexpanded/v2/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNI.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/encodesansexpanded/v2/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNI.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/encodesansexpanded/v2/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNI.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/encodesansexpanded/v2/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNI.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/encodesansexpanded/v2/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Encode Sans Semi Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v2/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19ME.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v2/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFH.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v2/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFH.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v2/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v2/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FH.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v2/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFH.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v2/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFH.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v2/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFH.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v2/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FH.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Encode Sans Semi Expanded\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v2/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41Kw.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v2/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyA.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v2/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v2/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v2/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v2/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v2/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyA.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v2/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v2/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Engagement\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/engagement/v6/x3dlckLDZbqa7RUs9MFVXNo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Englebert\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/englebert/v5/xn7iYH8w2XGrC8AR4HSxTw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Enriqueta\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/enriqueta/v6/goksH6L7AUFrRvV44HVTSw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/enriqueta/v6/gokpH6L7AUFrRvV44HVr92-HmA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Erica One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ericaone/v8/WBLnrEXccV9VGrOKmGD1Ww.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Esteban\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/esteban/v5/r05bGLZE-bdGdN-GdOs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Euphoria Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/euphoriascript/v5/mFTpWb0X2bLb_cx6To2B8GpKoD5akw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ewert\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ewert/v5/va9I4kzO2tFODYBv.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Exo\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/exo/v6/4UaMrEtFpBIaEH6m.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/exo/v6/4UaCrEtFpBISdkbC0DI.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/exo/v6/4UaDrEtFpBIavF-G8A.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/exo/v6/4UaBrEtFpBISdkZu8RLm.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/exo/v6/4UaDrEtFpBIa2FyG8A.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/exo/v6/4UaBrEtFpBISdkYK8hLm.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/exo/v6/4UaOrEtFpBIidA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/exo/v6/4UaMrEtFpBISdn6m.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/exo/v6/4UaDrEtFpBIagF2G8A.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/exo/v6/4UaBrEtFpBISdkZS8xLm.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/exo/v6/4UaDrEtFpBIarFqG8A.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/exo/v6/4UaBrEtFpBISdkZ-9BLm.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/exo/v6/4UaDrEtFpBIayFuG8A.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/exo/v6/4UaBrEtFpBISdkYa9RLm.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/exo/v6/4UaDrEtFpBIa1FiG8A.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/exo/v6/4UaBrEtFpBISdkYG9hLm.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/exo/v6/4UaDrEtFpBIa8FmG8A.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/exo/v6/4UaBrEtFpBISdkYi9xLm.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Exo 2\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/exo2/v4/7cHov4okm5zmbt5LK-s.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/exo2/v4/7cHqv4okm5zmbtYtE48c4A.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt7nCss8.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtEyM9wHo.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6DCcs8.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE0c-wHo.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/exo2/v4/7cHmv4okm5zmbuYv.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/exo2/v4/7cHov4okm5zmbtYtK-s.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt7bCMs8.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtEx8_wHo.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt73D8s8.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtEzM4wHo.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6TDss8.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE1c5wHo.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6PDcs8.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE0s6wHo.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6rDMs8.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE287wHo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Expletus Sans\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/expletussans/v10/RLp5K5v5_bqufTYdnhFzDj2dRfk.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/expletussans/v10/RLpnK5v5_bqufTYdnhFzDj2ddfsYvw.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/expletussans/v10/RLpkK5v5_bqufTYdnhFzDj2dfQ07n6k.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/expletussans/v10/RLpiK5v5_bqufTYdnhFzDj2ddfsgS6oPVA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/expletussans/v10/RLpkK5v5_bqufTYdnhFzDj2dfSE8n6k.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/expletussans/v10/RLpiK5v5_bqufTYdnhFzDj2ddfsgZ60PVA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/expletussans/v10/RLpkK5v5_bqufTYdnhFzDj2dfUU9n6k.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/expletussans/v10/RLpiK5v5_bqufTYdnhFzDj2ddfsgA6wPVA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fanwood Text\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fanwoodtext/v7/3XFtErwl05Ad_vSCF6Fq7xXGRQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/fanwoodtext/v7/3XFzErwl05Ad_vSCF6Fq7xX2R9zc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Farsan\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"gujarati\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/farsan/v3/VEMwRoJ0vY_zsyz62g.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fascinate\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fascinate/v6/z7NWdRrufC8XJK0IIEli1A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fascinate Inline\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fascinateinline/v7/jVyR7mzzB3zc-jp6QCAu60poNqIy1g0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Faster One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fasterone/v8/H4ciBXCHmdfClFb-vWhfyLs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fasthand\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fasthand/v8/0yb9GDohyKTYn_ZEESku.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fauna One\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/faunaone/v5/wlpzgwTPBVpjpCuwkuEx2Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Faustina\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/faustina/v2/XLYlIZPxYpJfTbZAFW-4.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/faustina/v2/XLYjIZPxYpJfTbZAFV-6Hck.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/faustina/v2/XLYiIZPxYpJfTbZAFVdMPulC.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/faustina/v2/XLYgIZPxYpJfTbZAFV-6JT1Bhnc.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/faustina/v2/XLYiIZPxYpJfTbZAFVdgOelC.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/faustina/v2/XLYgIZPxYpJfTbZAFV-6JRFGhnc.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/faustina/v2/XLYiIZPxYpJfTbZAFVcEOOlC.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/faustina/v2/XLYgIZPxYpJfTbZAFV-6JXVHhnc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Federant\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/federant/v9/2sDdZGNfip_eirT0_U0j.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Federo\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/federo/v9/iJWFBX-cbD_ETsbmjQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Felipa\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/felipa/v5/FwZa7-owz1Eu4F_wSA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fenix\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fenix/v5/XoHo2YL_S7-g5ost.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Finger Paint\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fingerpaint/v7/0QInMXVJ-o-oRn_7dron8YWO8w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fira Mono\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/firamono/v6/N0bX2SlFPv1weGeLZDtQIQ.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/firamono/v6/N0bS2SlFPv1weGeLZDto1d33mQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/firamono/v6/N0bS2SlFPv1weGeLZDtondv3mQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fira Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/firasans/v8/va9C4kDNxMZdWfMOD5Vn9IjO.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/firasans/v8/va9A4kDNxMZdWfMOD5VvkrCqYTc.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnWKnuQQ.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrAGQBf_.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnPKruQQ.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrBiQxf_.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/firasans/v8/va9E4kDNxMZdWfMOD5VfkA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/firasans/v8/va9C4kDNxMZdWfMOD5VvkojO.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnZKvuQQ.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrA6Qhf_.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnSKzuQQ.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrAWRRf_.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnLK3uQQ.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrByRBf_.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnMK7uQQ.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrBuRxf_.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnFK_uQQ.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrBKRhf_.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fira Sans Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqA.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONU.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMM.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dw.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMM.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dw.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfE.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqA.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMM.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dw.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMM.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMM.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dw.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMM.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dw.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMM.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fira Sans Extra Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuvw.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-e.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn38.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pA.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn38.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fg.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquvw.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn38.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn38.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn38.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pA.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn38.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn38.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fjalla One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fjallaone/v5/Yq6R-LCAWCX3-6Ky7FAFnOY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fjord One\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fjordone/v6/zOL-4pbEnKBY_9S1jNKr6Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Flamenco\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"300\",\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/flamenco/v8/neIPzCehqYguo67ssZ0qNIky.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/flamenco/v8/neIIzCehqYguo67ssaWG.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Flavors\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/flavors/v6/FBV2dDrhxqmveJTpbkw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fondamento\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fondamento/v7/4UaHrEJGsxNmFTPDnkaJx60.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/fondamento/v7/4UaFrEJGsxNmFTPDnkaJ96_p4g.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fontdiner Swanky\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fontdinerswanky/v8/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Forum\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/forum/v8/6aey4Ky-Vb8Ew_IW.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Francois One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/francoisone/v11/_Xmr-H4zszafZw3A-KPSZutNxg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Frank Ruhl Libre\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"hebrew\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/frankruhllibre/v3/j8_36_fAw7jrcalD7oKYNX0QfAnPUxvHxJA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/frankruhllibre/v3/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7c.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/frankruhllibre/v3/j8_36_fAw7jrcalD7oKYNX0QfAnPU0PGxJA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/frankruhllibre/v3/j8_36_fAw7jrcalD7oKYNX0QfAnPUwvAxJA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/frankruhllibre/v3/j8_36_fAw7jrcalD7oKYNX0QfAnPUzPCxJA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Freckle Face\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/freckleface/v5/AMOWz4SXrmKHCvXTohxY-YI0Uw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fredericka the Great\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/frederickathegreat/v6/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Sk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fredoka One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fredokaone/v5/k3kUo8kEI-tA1RRcTZGmTmHB.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Freehand\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/freehand/v9/cIf-Ma5eqk01VjKTgAmB.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fresca\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fresca/v6/6ae94K--SKgCzbM2Gg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Frijole\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/frijole/v6/uU9PCBUR8oakM2BQ7xM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fruktur\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fruktur/v10/SZc53FHsOru5QYsMfz0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Fugaz One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/fugazone/v7/rax_HiWKp9EAITukFslMBA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"GFS Didot\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"greek\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gfsdidot/v7/Jqzh5TybZ9vZMWFssvwiFw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"GFS Neohellenic\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"greek\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2018-06-28\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gfsneohellenic/v9/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/gfsneohellenic/v9/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JL.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/gfsneohellenic/v9/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr6w.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/gfsneohellenic/v9/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQb.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gabriela\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gabriela/v6/qkBWXvsO6sreR8E-b_m-.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gaegu\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/gaegu/v3/TuGSUVB6Up9NU57nifw7.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/gaegu/v3/TuGfUVB6Up9NU6ZL.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/gaegu/v3/TuGSUVB6Up9NU573jvw7.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gafata\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gafata/v6/XRXV3I6Cn0VJKon4Mg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Galada\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"bengali\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/galada/v3/H4cmBXyGmcjXlUX-8g.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Galdeano\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/galdeano/v7/uU9MCBoQ4YOqOW1boDPx.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Galindo\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/galindo/v5/HI_KiYMeLqVKqwyuQ5E.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gamja Flower\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gamjaflower/v3/6NUR8FiKJg-Pa0rM6uN40Z4kyQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gentium Basic\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gentiumbasic/v9/Wnz9HAw9aB_JD2VGQVR80We3HAo.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/gentiumbasic/v9/WnzjHAw9aB_JD2VGQVR80We3LAiJjQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/gentiumbasic/v9/WnzgHAw9aB_JD2VGQVR80We3JLasrTo.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/gentiumbasic/v9/WnzmHAw9aB_JD2VGQVR80We3LAixMT8eaA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gentium Book Basic\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v8/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIVw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v8/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v8/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfyw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v8/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Geo\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/geo/v9/CSRz4zRZlufVLw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/geo/v9/CSRx4zRZluflLXpi.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Geostar\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/geostar/v7/sykz-yx4n701VLOftSo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Geostar Fill\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/geostarfill/v7/AMOWz4SWuWiXFfjEohxQ9os0Uw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Germania One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/germaniaone/v5/Fh4yPjrqIyv2ucM2qzBjeS3ezA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gidugu\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gidugu/v4/L0x8DFMkk1Uf6w3RvA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gilda Display\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gildadisplay/v5/t5tmIRoYMoaYG0WEOh7HwMeR7Tk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Give You Glory\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/giveyouglory/v7/8QIQdiHOgt3vv4LR7ahjw9-XYc1z.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Glass Antiqua\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/glassantiqua/v5/xfu30Wr0Wn3NOQM2piC0uXOjnL8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Glegoo\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/glegoo/v6/_Xmt-HQyrTKWaw2Jiw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/glegoo/v6/_Xmu-HQyrTKWaw2xN4a9CA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gloria Hallelujah\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gloriahallelujah/v9/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Goblin One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/goblinone/v7/CSR64z1ZnOqZRjRCBVY_TOc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gochi Hand\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gochihand/v8/hES06XlsOjtJsgCkx1PkTo4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gorditas\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gorditas/v5/ll8_K2aTVD26DsPEtQDo.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/gorditas/v5/ll84K2aTVD26DsPEtThUIooI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gothic A1\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/gothica1/v3/CSR74z5ZnPydRjlCCwlCCMcq.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/gothica1/v3/CSR44z5ZnPydRjlCCwlCpOYKSA.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/gothica1/v3/CSR44z5ZnPydRjlCCwlCwOUKSA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/gothica1/v3/CSR94z5ZnPydRjlCCwl6bA.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/gothica1/v3/CSR44z5ZnPydRjlCCwlCmOQKSA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/gothica1/v3/CSR44z5ZnPydRjlCCwlCtOMKSA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/gothica1/v3/CSR44z5ZnPydRjlCCwlC0OIKSA.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/gothica1/v3/CSR44z5ZnPydRjlCCwlCzOEKSA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/gothica1/v3/CSR44z5ZnPydRjlCCwlC6OAKSA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Goudy Bookletter 1911\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/goudybookletter1911/v7/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Graduate\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/graduate/v5/C8cg4cs3o2n15t_2YxgR.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Grand Hotel\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/grandhotel/v5/7Au7p_IgjDKdCRWuR1azpmQN.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gravitas One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gravitasone/v7/5h1diZ4hJ3cblKy3LWakKQmaDQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Great Vibes\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/greatvibes/v5/RWmMoKWR9v4ksMfaWd_JN-XC.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Griffy\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/griffy/v5/FwZa7-ox2FQh9kfwSA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gruppo\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gruppo/v8/WwkfxPmzE06v_ZWFWQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gudea\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2018-06-28\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gudea/v6/neIFzCqgsI0mp-CP.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/gudea/v6/neILzCqgsI0mp9CN_oU.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/gudea/v6/neIIzCqgsI0mp9gz26WG.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gugi\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gugi/v3/A2BVn5dXywshVA4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Gurajada\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/gurajada/v5/FwZY7-Qx308m-l-0Kd6A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Habibi\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/habibi/v6/CSR-4zFWkuqcTTNCSg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Halant\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/halant/v4/u-490qaujRI2Pbsvc_pCmw.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/halant/v4/u-4-0qaujRI2PbsX3w.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/halant/v4/u-490qaujRI2PbsvK_tCmw.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/halant/v4/u-490qaujRI2PbsvB_xCmw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/halant/v4/u-490qaujRI2PbsvY_1Cmw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Hammersmith One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/hammersmithone/v8/qWcyB624q4L_C4jGQ9IK0O_dFlnbsg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Hanalei\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/hanalei/v7/E21n_dD8iufIjBRHXzg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Hanalei Fill\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/hanaleifill/v6/fC1mPYtObGbfyQznIaQzPQiMVw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Handlee\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/handlee/v6/-F6xfjBsISg9aMakDmo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Hanuman\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/hanuman/v11/VuJxdNvD15HhpJJBeKY.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/hanuman/v11/VuJ0dNvD15HhpJJBQBr4HIk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Happy Monkey\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/happymonkey/v6/K2F2fZZcl-9SXwl5F_C4R_OABw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Harmattan\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/harmattan/v3/goksH6L2DkFvVvRp9XpTSw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Headland One\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/headlandone/v5/yYLu0hHR2vKnp89Tk1TCq3Tx0A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Heebo\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"hebrew\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/heebo/v3/NGS0v5_NC0k9P9mVTbQ.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9ldb5RL.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/heebo/v3/NGS6v5_NC0k9P-Hx.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9kFbpRL.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9lNaJRL.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9lRa5RL.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9l1apRL.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Henny Penny\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/hennypenny/v5/wXKvE3UZookzsxz_kjGSfMQq.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Herr Von Muellerhoff\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/herrvonmuellerhoff/v7/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Hi Melody\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/himelody/v3/46ktlbP8Vnz0pJcqCTbEfw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Hind\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfMJaIRs.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/hind/v8/5aU69_a8oxmIRG4.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfJpbIRs.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfLZcIRs.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfNJdIRs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Hind Guntur\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/hindguntur/v3/wXKyE3UZrok56nvamSuJd_yGn1cz.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/hindguntur/v3/wXKvE3UZrok56nvamSuJd8Qq.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/hindguntur/v3/wXKyE3UZrok56nvamSuJd_zenlcz.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/hindguntur/v3/wXKyE3UZrok56nvamSuJd_zymVcz.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/hindguntur/v3/wXKyE3UZrok56nvamSuJd_yWmFcz.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Hind Madurai\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"tamil\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfXaUneQ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xx0e2p98ZvDXdZQIOcpqjn8Q.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfBaQneQ.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfKaMneQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfTaIneQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Hind Siliguri\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"bengali\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoRDf44uE.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwTs5juQtsyLLR5jN4cxBEofJs.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoRG_54uE.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoREP-4uE.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Hind Vadodara\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"gujarati\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/hindvadodara/v4/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/hindvadodara/v4/neINzCKvrIcn5pbuuuriV9tTcJU.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/hindvadodara/v4/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/hindvadodara/v4/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/hindvadodara/v4/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Holtwood One SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/holtwoodonesc/v8/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Homemade Apple\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/homemadeapple/v8/Qw3EZQFXECDrI2q789EKQZJob3x9.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Homenaje\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/homenaje/v7/FwZY7-Q-xVAi_l-6Ld6A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IBM Plex Mono\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2018-03-16\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6pfjptAgt5VM-kVkqdyU8n3kwq0g.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6rfjptAgt5VM-kVkqdyU8n1ioStndl.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6qfjptAgt5VM-kVkqdyU8n3uAL8lc.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFhw.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6qfjptAgt5VM-kVkqdyU8n3oQI8lc.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFhw.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F63fjptAgt5VM-kVkqdyU8n5ig.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6pfjptAgt5VM-kVkqdyU8n1ioq0g.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6qfjptAgt5VM-kVkqdyU8n3twJ8lc.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFhw.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6qfjptAgt5VM-kVkqdyU8n3vAO8lc.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFhw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6qfjptAgt5VM-kVkqdyU8n3pQP8lc.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v2/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFhw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IBM Plex Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2018-03-16\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX-KVElMYYaJe8bpLHnCwDKjbLeEA.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZM.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIY.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX7KVElMYYaJe8bpLHnCwDKhdTm2IdscQ.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIY.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscQ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYXgKVElMYYaJe8bpLHnCwDKtdY.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX-KVElMYYaJe8bpLHnCwDKhdTeEA.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIY.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscQ.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIY.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIY.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v2/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IBM Plex Sans Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2018-03-16\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKs.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhQ.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvr.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYM.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovr.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYM.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbau.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKs.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vr.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYM.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivr.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYM.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvr.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v2/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IBM Plex Serif\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-04-04\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizBREVNn1dOx-zrZ2X3pZvkTi182zI.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTiw.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIz.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq14.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIz.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq14.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizDREVNn1dOx-zrZ2X3pZvkThUY.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zI.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIz.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq14.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIz.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q14.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIz.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v3/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q14.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IM Fell DW Pica\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/imfelldwpica/v7/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/imfelldwpica/v7/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IM Fell DW Pica SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/imfelldwpicasc/v7/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IM Fell Double Pica\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/imfelldoublepica/v7/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0Q.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/imfelldoublepica/v7/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IM Fell Double Pica SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/imfelldoublepicasc/v7/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IM Fell English\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/imfellenglish/v7/Ktk1ALSLW8zDe0rthJysWrnLsAz3Fw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/imfellenglish/v7/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOd.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IM Fell English SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/imfellenglishsc/v7/a8IENpD3CDX-4zrWfr1VY879qFF05pZLOw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IM Fell French Canon\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/imfellfrenchcanon/v7/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coV.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/imfellfrenchcanon/v7/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IM Fell French Canon SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/imfellfrenchcanonsc/v7/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IM Fell Great Primer\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/imfellgreatprimer/v7/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorX.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/imfellgreatprimer/v7/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"IM Fell Great Primer SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/imfellgreatprimersc/v7/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Iceberg\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/iceberg/v5/8QIJdijAiM7o-qnZuIg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Iceland\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/iceland/v6/rax9HiuFsdMNOnWPWKw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Imprima\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/imprima/v5/VEMxRoN7sY3yuy-7-oU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Inconsolata\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v16\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/inconsolata/v16/QldKNThLqRwH-OJ1UHjlKFle.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/inconsolata/v16/QldXNThLqRwH-OJ1UHjlKGHiw41u.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Inder\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/inder/v6/w8gUH2YoQe8_4vq6.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Indie Flower\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/indieflower/v9/m8JVjfNVeKWVnh3QMuKkFcZlbg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Inika\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/inika/v5/rnCm-x5X3QP-phTH.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/inika/v5/rnCr-x5X3QP-pix7auM-.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Inknut Antiqua\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/inknutantiqua/v3/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/inknutantiqua/v3/Y4GSYax7VC4ot_qNB4nYpBdaKXUD.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/inknutantiqua/v3/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/inknutantiqua/v3/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/inknutantiqua/v3/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/inknutantiqua/v3/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/inknutantiqua/v3/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Irish Grover\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/irishgrover/v8/buExpoi6YtLz2QW7LA4flVgf-A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Istok Web\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/istokweb/v11/3qTvojGmgSyUukBzKslZAQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/istokweb/v11/3qTpojGmgSyUukBzKslpA2t6.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/istokweb/v11/3qTqojGmgSyUukBzKslhvU5a_g.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/istokweb/v11/3qT0ojGmgSyUukBzKslpA1PG-2MQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Italiana\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/italiana/v6/QldNNTtLsx4E__B0XTmR.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Italianno\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/italianno/v7/dg4n_p3sv6gCJkwzT6Rnjw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Itim\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/itim/v2/0nknC9ziJOYewAQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Jacques Francois\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/jacquesfrancois/v5/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Jacques Francois Shadow\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/jacquesfrancoisshadow/v5/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8V.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Jaldi\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/jaldi/v3/or3sQ67z0_CI30NU.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/jaldi/v3/or3hQ67z0_CI33voSbT3.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Jim Nightshade\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/jimnightshade/v5/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Jockey One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/jockeyone/v7/HTxpL2g2KjCFj4x8WI6ArIY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Jolly Lodger\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/jollylodger/v5/BXRsvFTAh_bGkA1uQ48dlB3VWQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Jomhuria\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/jomhuria/v4/Dxxp8j-TMXf-llKur2b1.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Josefin Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/josefinsans/v12/Qw3EZQNVED7rKGKxtqIqX5Ecbnx9.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/josefinsans/v12/Qw3GZQNVED7rKGKxtqIqX5EUCEQZXH0.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/josefinsans/v12/Qw3FZQNVED7rKGKxtqIqX5Ecpl5dfA.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/josefinsans/v12/Qw3HZQNVED7rKGKxtqIqX5EUCETRfl0k.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/josefinsans/v12/Qw3aZQNVED7rKGKxtqIqX5EkCg.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/josefinsans/v12/Qw3EZQNVED7rKGKxtqIqX5EUCHx9.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/josefinsans/v12/Qw3FZQNVED7rKGKxtqIqX5Ec0lhdfA.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/josefinsans/v12/Qw3HZQNVED7rKGKxtqIqX5EUCESleF0k.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/josefinsans/v12/Qw3FZQNVED7rKGKxtqIqX5EctlldfA.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/josefinsans/v12/Qw3HZQNVED7rKGKxtqIqX5EUCETBeV0k.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Josefin Slab\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/josefinslab/v8/lW-nwjwOK3Ps5GSJlNNkMalvyQ6q.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/josefinslab/v8/lW-lwjwOK3Ps5GSJlNNkMalnrzbODso.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/josefinslab/v8/lW-mwjwOK3Ps5GSJlNNkMalvASyKLg.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/josefinslab/v8/lW-kwjwOK3Ps5GSJlNNkMalnrzYGLOrg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/josefinslab/v8/lW-5wjwOK3Ps5GSJlNNkMalXrQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/josefinslab/v8/lW-nwjwOK3Ps5GSJlNNkMalnrw6q.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/josefinslab/v8/lW-mwjwOK3Ps5GSJlNNkMalvdSqKLg.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/josefinslab/v8/lW-kwjwOK3Ps5GSJlNNkMalnrzZyKurg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/josefinslab/v8/lW-mwjwOK3Ps5GSJlNNkMalvESuKLg.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/josefinslab/v8/lW-kwjwOK3Ps5GSJlNNkMalnrzYWK-rg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Joti One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/jotione/v5/Z9XVDmdJQAmWm9TwaYTe.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Jua\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/jua/v3/co3KmW9ljjAjcw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Judson\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/judson/v10/FeVRS0Fbvbc14VxRDw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/judson/v10/FeVTS0Fbvbc14VxhDblw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/judson/v10/FeVSS0Fbvbc14Vxps5xQ3Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Julee\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/julee/v7/TuGfUVB3RpZPQ6ZL.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Julius Sans One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/juliussansone/v6/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Junge\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/junge/v5/gokgH670Gl1lUqAd.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Jura\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/jura/v9/z7NUdRfiaC4VVW9rdCw.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/jura/v9/z7NbdRfiaC4VbcM.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/jura/v9/z7NUdRfiaC4VVTdqdCw.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/jura/v9/z7NUdRfiaC4VVRttdCw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/jura/v9/z7NUdRfiaC4VVX9sdCw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Just Another Hand\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/justanotherhand/v9/845CNN4-AJyIGvIou-6yJKyptyOpOcr_.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Just Me Again Down Here\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/justmeagaindownhere/v9/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwH.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kadwa\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kadwa/v2/rnCm-x5V0g7iphTH.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/kadwa/v2/rnCr-x5V0g7ipix7auM-.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kalam\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/kalam/v8/YA9Qr0Wd4kDdMtD6GgLL.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/kalam/v8/YA9dr0Wd4kDdMuhW.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/kalam/v8/YA9Qr0Wd4kDdMtDqHQLL.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kameron\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kameron/v8/vm82dR7vXErQxuznsL4.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/kameron/v8/vm8zdR7vXErQxuzniAIfC-0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kanit\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/kanit/v3/nKKX-Go6G5tXcr72GwU.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/kanit/v3/nKKV-Go6G5tXcraQI2GAdQ.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr5aOiWg.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI82hVaQ.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4-OSWg.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI6miVaQ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/kanit/v3/nKKZ-Go6G5tXcoaS.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/kanit/v3/nKKX-Go6G5tXcraQGwU.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr5mOCWg.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI_GjVaQ.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr5KPyWg.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI92kVaQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4uPiWg.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI7mlVaQ.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4yPSWg.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI6WmVaQ.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4WPCWg.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI4GnVaQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kantumruy\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/kantumruy/v4/syk0-yJ0m7wyVb-f4FOPUtDlpg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/kantumruy/v4/sykx-yJ0m7wyVb-f4FO3_g.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/kantumruy/v4/syk0-yJ0m7wyVb-f4FOPQtflpg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Karla\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/karla/v6/qkBbXvYC6trAT4RS.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/karla/v6/qkBVXvYC6trAT7RQLtk.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/karla/v6/qkBWXvYC6trAT7zuC_m-.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/karla/v6/qkBQXvYC6trAT7RQFmW7xL4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Karma\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/karma/v7/va9F4kzAzMZRGLjDY8Z_.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/karma/v7/va9I4kzAzMZRGIBv.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/karma/v7/va9F4kzAzMZRGLibYsZ_.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/karma/v7/va9F4kzAzMZRGLi3ZcZ_.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/karma/v7/va9F4kzAzMZRGLjTZMZ_.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Katibeh\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/katibeh/v4/ZGjXol5MQJog4bxDaC0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kaushan Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kaushanscript/v6/vm8vdRfvXFLG3OLnsO15WYS5DF7_.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kavivanar\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"tamil\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kavivanar/v3/o-0IIpQgyXYSwhxP7_Jb4g.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kavoon\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kavoon/v6/pxiFyp4_scRYhlU4NA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kdam Thmor\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kdamthmor/v4/MwQzbhjs3veF6QwJVf0JkGM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Keania One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/keaniaone/v5/zOL54pXJk65E8pXardnuycQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kelly Slab\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kellyslab/v7/-W_7XJX0Rz3cxUnJC5t6TkM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kenia\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kenia/v9/jizURE5PuHQH9qCO.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Khand\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/khand/v6/TwMN-IINQlQQ0bL5cFE3.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/khand/v6/TwMA-IINQlQQ0YpV.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/khand/v6/TwMN-IINQlQQ0bKhcVE3.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/khand/v6/TwMN-IINQlQQ0bKNdlE3.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/khand/v6/TwMN-IINQlQQ0bLpd1E3.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Khmer\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/khmer/v10/MjQImit_vPPwpF-B.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Khula\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/khula/v3/OpNPnoEOns3V7G-ljCvU.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/khula/v3/OpNCnoEOns3V7FcJ.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/khula/v3/OpNPnoEOns3V7G_RiivU.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/khula/v3/OpNPnoEOns3V7G-1iyvU.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/khula/v3/OpNPnoEOns3V7G-piCvU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kirang Haerang\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kiranghaerang/v3/E21-_dn_gvvIjhYON1lpIU4-bcqv.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kite One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kiteone/v5/70lQu7shLnA_E02vyq1b.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Knewave\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/knewave/v6/sykz-yx0lLcxQaSItSo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kotta One\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kottaone/v5/S6u_w41LXzPc_jlfNWqPHA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Koulen\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/koulen/v11/AMOQz46as3KIBPeWgg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kranky\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kranky/v8/hESw6XVgJzlPsFnMpg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kreon\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/kreon/v11/t5tjIRIUKY-TFH1sUU23.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/kreon/v11/t5tuIRIUKY-TFEXA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/kreon/v11/t5tjIRIUKY-TFH18Vk23.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kristi\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kristi/v9/uK_y4ricdeU6zwdRCg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Krona One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kronaone/v5/jAnEgHdjHcjgfIb1ZcUCMQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kumar One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"gujarati\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kumarone/v2/bMr1mS-P958wYi6YaGeGNA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kumar One Outline\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"gujarati\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kumaroneoutline/v2/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Kurale\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"devanagari\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/kurale/v3/4iCs6KV9e9dXjho6eA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"La Belle Aurore\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/labelleaurore/v8/RrQIbot8-mNYKnGNDkWlocovHeIIGw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Laila\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/laila/v4/LYjBdG_8nE8jDLzxogNA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/laila/v4/LYjMdG_8nE8jDIRd.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/laila/v4/LYjBdG_8nE8jDLypowNA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/laila/v4/LYjBdG_8nE8jDLyFpANA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/laila/v4/LYjBdG_8nE8jDLzhpQNA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lakki Reddy\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lakkireddy/v4/S6u5w49MUSzD9jlCPmvLZQfo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lalezar\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"arabic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lalezar/v3/zrfl0HLVx-HwTP82UaA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lancelot\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lancelot/v7/J7acnppxBGtQEulG4JY4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lateef\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lateef/v12/hESw6XVnNCxEvkbMpg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lato\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v14\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/lato/v14/S6u8w4BMUTPHh30wWw.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/lato/v14/S6u-w4BMUTPHjxsIPy-v.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh7USew8.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/lato/v14/S6u_w4BMUTPHjxsI9w2PHA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHvxk.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/lato/v14/S6u8w4BMUTPHjxswWw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh6UVew8.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/lato/v14/S6u_w4BMUTPHjxsI5wqPHA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh50Xew8.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/lato/v14/S6u_w4BMUTPHjxsI3wiPHA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"League Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/leaguescript/v8/CSR54zpSlumSWj9CGVsoBZdeaNM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Leckerli One\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/leckerlione/v8/V8mCoQH8VCsNttEnxnGQ-1itLQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ledger\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ledger/v5/j8_q6-HK1L3if_sxmw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lekton\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lekton/v8/SZc43FDmLaWmWpBeXw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/lekton/v8/SZc63FDmLaWmWpBuXR3s.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/lekton/v8/SZc73FDmLaWmWpBm4zjMlQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lemon\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lemon/v6/HI_EiYEVKqRMq0jB.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lemonada\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"arabic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/lemonada/v4/0QIkMXFD9oygTWy_R8PindGu.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/lemonada/v4/0QIjMXFD9oygTWy_R_tO.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/lemonada/v4/0QIkMXFD9oygTWy_R8OWm9Gu.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/lemonada/v4/0QIkMXFD9oygTWy_R8PymtGu.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Libre Barcode 128\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2018-06-28\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/librebarcode128/v6/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Libre Barcode 128 Text\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2018-06-28\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/librebarcode128text/v6/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Libre Barcode 39\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2018-06-28\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/librebarcode39/v6/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_c.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Libre Barcode 39 Extended\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2018-06-28\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/librebarcode39extended/v5/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Libre Barcode 39 Extended Text\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2018-06-28\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/librebarcode39extendedtext/v5/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Libre Barcode 39 Text\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2018-06-28\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/librebarcode39text/v6/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Libre Baskerville\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/librebaskerville/v5/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNe.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/librebaskerville/v5/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxY.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/librebaskerville/v5/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Libre Franklin\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizBREVItHgc8qDIbSTKq4XkRi182zI.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizHREVItHgc8qDIbSTKq4XkRiUa41YTiw.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi3Q-hIz.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa4_oyq14.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi20-RIz.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa454xq14.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizDREVItHgc8qDIbSTKq4XkRhUY.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizBREVItHgc8qDIbSTKq4XkRiUa2zI.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi3s-BIz.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa48Ywq14.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi3A_xIz.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa4-o3q14.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi2k_hIz.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa4442q14.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi24_RIz.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa45I1q14.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi2c_BIz.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa47Y0q14.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Life Savers\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lifesavers/v7/ZXuie1UftKKabUQMgxAal_lr.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/lifesavers/v7/ZXu_e1UftKKabUQMgxAal8HXOS5T.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lilita One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lilitaone/v5/i7dPIFZ9Zz-WBtRtedDbUEY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lily Script One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lilyscriptone/v5/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Limelight\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/limelight/v8/XLYkIZL7aopJVbZJHDuYPQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Linden Hill\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lindenhill/v7/-F61fjxoKSg9Yc3hZgO8ygFI.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/lindenhill/v7/-F63fjxoKSg9Yc3hZgO8yjFK5ig.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lobster\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v20\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lobster/v20/neILzCirqoswsqX9_oU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lobster Two\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lobstertwo/v10/BngMUXZGTXPUvIoyV6yN59fK.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/lobstertwo/v10/BngOUXZGTXPUvIoyV6yN5-fI5qA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/lobstertwo/v10/BngRUXZGTXPUvIoyV6yN5-92w4CB.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/lobstertwo/v10/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Londrina Outline\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/londrinaoutline/v8/C8c44dM8vmb14dfsZxhetg3pDH-Sfuo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Londrina Shadow\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/londrinashadow/v6/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Londrina Sketch\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/londrinasketch/v6/c4m41npxGMTnomOHtRU68eIJn8qfWQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Londrina Solid\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"100\",\n    \"300\",\n    \"regular\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/londrinasolid/v6/flUjRq6sw40kQEJxWNgkLuudGfs9KBY.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/londrinasolid/v6/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/londrinasolid/v6/flUhRq6sw40kQEJxWNgkLuudGcNZ.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/londrinasolid/v6/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lora\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lora/v12/0QIvMX1D_JOuAw0.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/lora/v12/0QIhMX1D_JOuMw_7Jg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/lora/v12/0QIgMX1D_JOuO7HeBts.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/lora/v12/0QIiMX1D_JOuMw_Dmt5unw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Love Ya Like A Sister\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/loveyalikeasister/v8/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78g.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Loved by the King\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lovedbytheking/v7/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiN.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lovers Quarrel\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/loversquarrel/v5/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Luckiest Guy\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/luckiestguy/v8/_gP_1RrxsjcxVyin9l9n_j2RSg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lusitana\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lusitana/v5/CSR84z9ShvucWzsMKxha.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/lusitana/v5/CSR74z9ShvucWzsMKyDmaccq.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Lustria\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/lustria/v5/9oRONYodvDEyjuhOrCg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Macondo\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/macondo/v6/RrQQboN9-iB1IXmOS2U.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Macondo Swash Caps\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/macondoswashcaps/v5/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oeg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mada\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/mada/v5/7Au_p_0qnzeSdf3nCCI.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/mada/v5/7Au_p_0qnzeSdZnkCCI.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/mada/v5/7Auwp_0qnzeSTTU.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/mada/v5/7Au_p_0qnzeSdcHlCCI.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/mada/v5/7Au_p_0qnzeSde3iCCI.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/mada/v5/7Au_p_0qnzeSdYnjCCI.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/mada/v5/7Au_p_0qnzeSdbHhCCI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Magra\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/magra/v5/uK_94ruaZus72k5x.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/magra/v5/uK_w4ruaZus72nbNDxcX.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Maiden Orange\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/maidenorange/v8/kJE1BuIX7AUmhi2V4m08kb1XjOY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Maitree\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/maitree/v2/MjQDmil5tffhpBrklhGNWJE.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/maitree/v2/MjQDmil5tffhpBrklnWOWJE.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/maitree/v2/MjQGmil5tffhpBrkrtk.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/maitree/v2/MjQDmil5tffhpBrkli2PWJE.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/maitree/v2/MjQDmil5tffhpBrklgGIWJE.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/maitree/v2/MjQDmil5tffhpBrklmWJWJE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mako\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mako/v8/H4coBX6Mmc_Z0SQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mallanna\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mallanna/v5/hv-Vlzx-KEQb84YaDGwz.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mandali\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mandali/v5/LhWlMVbYOfASNfNUVFk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Manuale\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/manuale/v2/f0X20eas_8Z-TFZdBPY.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/manuale/v2/f0X00eas_8Z-TFZdNPTOxw.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/manuale/v2/f0Xz0eas_8Z-TFZdPALt58E.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/manuale/v2/f0Xx0eas_8Z-TFZdNPT2M8Ln8Q.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/manuale/v2/f0Xz0eas_8Z-TFZdPC7q58E.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/manuale/v2/f0Xx0eas_8Z-TFZdNPT2H8Xn8Q.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/manuale/v2/f0Xz0eas_8Z-TFZdPErr58E.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/manuale/v2/f0Xx0eas_8Z-TFZdNPT2e8Tn8Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Marcellus\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/marcellus/v5/wEO_EBrOk8hQLDvIAF8FUQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Marcellus SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/marcellussc/v5/ke8iOgUHP1dg-Rmi6RWjbLEPgQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Marck Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/marckscript/v8/nwpTtK2oNgBA3Or78gapdwuCzw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Margarine\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/margarine/v6/qkBXXvoE6trLT9Y7YLye5A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Markazi Text\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"arabic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v1\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/markazitext/v1/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4M.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/markazitext/v1/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4M.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/markazitext/v1/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4M.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/markazitext/v1/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4M.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Marko One\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/markoone/v7/9Btq3DFG0cnVM5lw1haaKg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Marmelad\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/marmelad/v7/Qw3eZQdSHj_jK2e-8tFL.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Martel\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XVqekahQ.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XVzeoahQ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/martel/v2/PN_xRfK9oXHga0XtYQ.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XVuewahQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XV3e0ahQ.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XVwe4ahQ.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XV5e8ahQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Martel Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hAX5suH.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hBz5cuH.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/martelsans/v4/h0GsssGi7VdzDgKjM-4d8ijf.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hAH48uH.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hBj4suH.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hB_4cuH.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hBb4MuH.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Marvel\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/marvel/v7/nwpVtKeoNgBV0qaIkQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/marvel/v7/nwpXtKeoNgBV0qa4k1TA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/marvel/v7/nwpWtKeoNgBV0qawLXHgBw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/marvel/v7/nwpQtKeoNgBV0qa4k2x8Al-i.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mate\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mate/v6/m8JdjftRd7WZ2z0.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/mate/v6/m8JTjftRd7WZ6z-2Xg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mate SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/matesc/v6/-nF8OGQ1-uoVr2wKyiU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Maven Pro\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mavenpro/v11/7Au9p_AqnyWWAxW2Wk32yg.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/mavenpro/v11/7Au4p_AqnyWWAxW2Wk3OPkctOA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/mavenpro/v11/7Au4p_AqnyWWAxW2Wk3OdkEtOA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/mavenpro/v11/7Au4p_AqnyWWAxW2Wk3OTkMtOA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"McLaren\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mclaren/v5/2EbnL-ZuAXFqZFXISYY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Meddon\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/meddon/v10/kmK8ZqA2EgDNeHTZhA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"MedievalSharp\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/medievalsharp/v9/EvOJzAlL3oU5AQl2mP5KdgptAq8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Medula One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/medulaone/v7/YA9Wr0qb5kjJM6l2V0yukiE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Meera Inimai\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"tamil\",\n    \"latin\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/meerainimai/v2/845fNMM5EIqOW5MPuvO3ILep_w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Megrim\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/megrim/v8/46kulbz5WjvLqJZlbQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Meie Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/meiescript/v5/_LOImzDK7erRjhunIspaMjxn.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Merienda\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/merienda/v5/gNMHW3x8Qoy5_mf8uVMC.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/merienda/v5/gNMAW3x8Qoy5_mf8uWu-Fa-y.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Merienda One\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/meriendaone/v8/H4cgBXaMndbflEq6kyZ1ht6Ygg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Merriweather\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v19\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/merriweather/v19/u-4n0qyriQwlOrhSvowK_l521wRpXw.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/merriweather/v19/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/merriweather/v19/u-440qyriQwlOrhSvowK_l5Oew.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/merriweather/v19/u-4m0qyriQwlOrhSvowK_l5-eSZJ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/merriweather/v19/u-4n0qyriQwlOrhSvowK_l52xwNpXw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/merriweather/v19/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/merriweather/v19/u-4n0qyriQwlOrhSvowK_l52_wFpXw.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/merriweather/v19/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Merriweather Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/merriweathersans/v9/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1eYBDD.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/merriweathersans/v9/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepzB0hM.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/merriweathersans/v9/2-c99IRs1JiJN1FRAMjTN5zd9vgsFEXy.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/merriweathersans/v9/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwQjA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/merriweathersans/v9/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1OZxDD.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/merriweathersans/v9/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXweozG0hM.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/merriweathersans/v9/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1SZBDD.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/merriweathersans/v9/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepDF0hM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Metal\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/metal/v10/lW-wwjUJIXTo7i3n.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Metal Mania\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/metalmania/v7/RWmMoKWb4e8kqMfBUdPFJeXC.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Metamorphous\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/metamorphous/v7/Wnz8HA03aAXcC39ZEX5y1330PA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Metrophobic\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/metrophobic/v10/sJoA3LZUhMSAPV_u0qwiAT-J.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Michroma\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/michroma/v8/PN_zRfy9qWD8fEagAMg6.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Milonga\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/milonga/v5/SZc53FHnIaK9W5kffz0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Miltonian\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/miltonian/v11/zOL-4pbPn6Ne9JqTg9mr6Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Miltonian Tattoo\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/miltoniantattoo/v12/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mina\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"bengali\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v1\",\n   \"lastModified\": \"2018-03-02\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mina/v1/-nFzOGc18vARrz8.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/mina/v1/-nF8OGc18vARl4NMyiU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Miniver\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/miniver/v6/eLGcP-PxIg-5H0vC770.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Miriam Libre\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"hebrew\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/miriamlibre/v3/DdTh798HsHwubBAqfkcBTL_vYA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/miriamlibre/v3/DdT-798HsHwubBAqfkcBTL_X3LbbRQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mirza\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mirza/v4/co3ImWlikiN5Eurd.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/mirza/v4/co3FmWlikiN5EtIpAeO4.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/mirza/v4/co3FmWlikiN5EtIFBuO4.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/mirza/v4/co3FmWlikiN5EtJhB-O4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Miss Fajardose\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/missfajardose/v7/E21-_dn5gvrawDdPFVl-N0Ajb8qv.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mitr\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/mitr/v3/pxiEypw5ucZF8fMZFJA.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/mitr/v3/pxiEypw5ucZF8ZcaFJA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/mitr/v3/pxiLypw5ucZFyTs.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/mitr/v3/pxiEypw5ucZF8c8bFJA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/mitr/v3/pxiEypw5ucZF8eMcFJA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/mitr/v3/pxiEypw5ucZF8YcdFJA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Modak\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/modak/v3/EJRYQgs1XtIEsnMH.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Modern Antiqua\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/modernantiqua/v7/NGStv5TIAUg6Iq_RLNo_2dp1sI1E.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mogra\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"gujarati\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mogra/v4/f0X40eSs8c95TBo4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Molengo\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/molengo/v8/I_uuMpWeuBzZNBtQbbQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Molle\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"italic\": \"http://fonts.gstatic.com/s/molle/v6/E21n_dL5hOXFhWEsXzg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Monda\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/monda/v7/TK3tWkYFABsmjvpm.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/monda/v7/TK3gWkYFABsmjsLaGz8D.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Monofett\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/monofett/v7/mFTyWbofw6zc9NtnW43S.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Monoton\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/monoton/v7/5h1aiZUrOngCibe4fkY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Monsieur La Doulaise\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/monsieurladoulaise/v6/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5e.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Montaga\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/montaga/v5/H4cnBX2Ml8rCkEO_0gY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Montez\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/montez/v8/845ZNMk5GoGIX8lm1A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Montserrat\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/montserrat/v12/JTUQjIg1_i6t8kCHKm45_Qphzg.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/montserrat/v12/JTUOjIg1_i6t8kCHKm459WxZqi7j.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_aZA7g4.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZBg_D-w.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_cJD7g4.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZYgzD-w.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm45xW4.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/montserrat/v12/JTUQjIg1_i6t8kCHKm459Wxhzg.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC7g4.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZOg3D-w.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF7g4.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZFgrD-w.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_dJE7g4.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZcgvD-w.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_c5H7g4.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZbgjD-w.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_epG7g4.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZSgnD-w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Montserrat Alternates\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfV.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJw.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1AA.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1AA.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7A.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfV.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1AA.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1AA.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1AA.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1AA.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1AA.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Montserrat Subrayada\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2018-06-28\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/montserratsubrayada/v6/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8L.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/montserratsubrayada/v6/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMW.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Moul\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/moul/v9/nuF2D__FSo_3E-Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Moulpali\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/moulpali/v10/H4ckBXKMl9HagUWymyY6.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mountains of Christmas\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mountainsofchristmas/v10/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNY.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/mountainsofchristmas/v10/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mouse Memoirs\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mousememoirs/v5/t5tmIRoSNJ-PH0WNNgDYxdSb7Tk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mr Bedfort\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mrbedfort/v6/MQpR-WCtNZSWAdTMwBiclio.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mr Dafoe\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mrdafoe/v6/lJwE-pIzkS5NXuMMrGiq.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mr De Haviland\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mrdehaviland/v6/OpNVnooIhJj96FdB73296ksbOj3C.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mrs Saint Delafield\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mrssaintdelafield/v5/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mrs Sheppards\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mrssheppards/v6/PN_2Rfm9snC0XUGoEZhb91ig3vg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mukta\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbEOjFma.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbFqj1ma.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/mukta/v5/iJWKBXyXfDDVXYnG.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbEyjlma.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbEeiVma.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbF6iFma.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbFmi1ma.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mukta Mahee\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"gurmukhi\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/muktamahee/v2/XRXN3IOIi0hcP8iVU67hA9MFcBoH.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/muktamahee/v2/XRXN3IOIi0hcP8iVU67hA9NhcxoH.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/muktamahee/v2/XRXQ3IOIi0hcP8iVU67hA-vN.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/muktamahee/v2/XRXN3IOIi0hcP8iVU67hA9M5choH.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/muktamahee/v2/XRXN3IOIi0hcP8iVU67hA9MVdRoH.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/muktamahee/v2/XRXN3IOIi0hcP8iVU67hA9NxdBoH.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/muktamahee/v2/XRXN3IOIi0hcP8iVU67hA9NtdxoH.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mukta Malar\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"tamil\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/muktamalar/v3/MCoKzAXyz8LOE2FpJMxZqIMwBtAB.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/muktamalar/v3/MCoKzAXyz8LOE2FpJMxZqINUBdAB.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/muktamalar/v3/MCoXzAXyz8LOE2FpJMxZqLv4.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/muktamalar/v3/MCoKzAXyz8LOE2FpJMxZqIMMBNAB.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/muktamalar/v3/MCoKzAXyz8LOE2FpJMxZqIMgA9AB.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/muktamalar/v3/MCoKzAXyz8LOE2FpJMxZqINEAtAB.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/muktamalar/v3/MCoKzAXyz8LOE2FpJMxZqINYAdAB.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mukta Vaani\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"gujarati\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/muktavaani/v4/3JnkSD_-ynaxmxnEfVHPIGXNV8BD.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/muktavaani/v4/3JnkSD_-ynaxmxnEfVHPIGWpVMBD.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/muktavaani/v4/3Jn5SD_-ynaxmxnEfVHPIF0F.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/muktavaani/v4/3JnkSD_-ynaxmxnEfVHPIGXxVcBD.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/muktavaani/v4/3JnkSD_-ynaxmxnEfVHPIGXdUsBD.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/muktavaani/v4/3JnkSD_-ynaxmxnEfVHPIGW5U8BD.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/muktavaani/v4/3JnkSD_-ynaxmxnEfVHPIGWlUMBD.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Muli\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/muli/v11/7Au_p_0qiz-adf3nCCI.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/muli/v11/7Au9p_0qiz-afTf-4CP2yg.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/muli/v11/7Au_p_0qiz-adZnkCCI.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/muli/v11/7Au9p_0qiz-afTf-hCD2yg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/muli/v11/7Auwp_0qiz-aTTU.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/muli/v11/7Au-p_0qiz-afTfGKA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/muli/v11/7Au_p_0qiz-ade3iCCI.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/muli/v11/7Au9p_0qiz-afTf-8Cb2yg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/muli/v11/7Au_p_0qiz-adYnjCCI.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/muli/v11/7Au9p_0qiz-afTf-lCf2yg.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/muli/v11/7Au_p_0qiz-adZXgCCI.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/muli/v11/7Au9p_0qiz-afTf-iCT2yg.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/muli/v11/7Au_p_0qiz-adbHhCCI.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/muli/v11/7Au9p_0qiz-afTf-rCX2yg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Mystery Quest\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/mysteryquest/v5/-nF6OG414u0E6k0wynSGlujRHwE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"NTR\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ntr/v5/RLpzK5Xy0ZjiGA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nanum Brush Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/nanumbrushscript/v9/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nanum Gothic\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/nanumgothic/v8/PN_3Rfi-oW3hYwmKDpxS7F_z_g.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/nanumgothic/v8/PN_oRfi-oW3hYwmKDpxS7F_LQv37zg.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/nanumgothic/v8/PN_oRfi-oW3hYwmKDpxS7F_LXv77zg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nanum Gothic Coding\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2018-02-05\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/nanumgothiccoding/v6/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6Q.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/nanumgothiccoding/v6/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nanum Myeongjo\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2018-06-27\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/nanummyeongjo/v7/9Btx3DZF0dXLMZlywRbVRNhxy1Lr.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/nanummyeongjo/v7/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/nanummyeongjo/v7/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nanum Pen Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/nanumpenscript/v7/daaDSSYiLGqEal3MvdA_FOL_3FkN2z4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Neucha\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/neucha/v9/q5uGsou0JOdh94bvug.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Neuton\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/neuton/v10/UMBQrPtMoH62xUZKAKkfeg.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/neuton/v10/UMBQrPtMoH62xUZKZKofeg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/neuton/v10/UMBTrPtMoH62xUZyyA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/neuton/v10/UMBRrPtMoH62xUZCyog_.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/neuton/v10/UMBQrPtMoH62xUZKdK0feg.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/neuton/v10/UMBQrPtMoH62xUZKaK4feg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"New Rocker\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/newrocker/v6/MwQzbhjp3-HImzcCU_cJkGM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"News Cycle\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v14\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/newscycle/v14/CSR64z1Qlv-GDxkbKVQ_TOc.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/newscycle/v14/CSR54z1Qlv-GDxkbKVQ_dFsvaNM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Niconne\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/niconne/v7/w8gaH2QvRug1_rTfrQs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nixie One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/nixieone/v8/lW-8wjkKLXjg5y2o2uUoUA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nobile\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/nobile/v9/m8JTjflSeaOVl1i2Xg.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/nobile/v9/m8JRjflSeaOVl1iGXK3T.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/nobile/v9/m8JQjflSeaOVl1iOqo7zcA.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/nobile/v9/m8JWjflSeaOVl1iGXJUnc5RF.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/nobile/v9/m8JQjflSeaOVl1iO4ojzcA.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/nobile/v9/m8JWjflSeaOVl1iGXJVvdZRF.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nokora\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/nokora/v11/hYkIPuwgTubzaWxQOw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/nokora/v11/hYkLPuwgTubzaWxohxUrqg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Norican\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/norican/v5/MwQ2bhXp1eSBqjkPGJI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nosifer\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/nosifer/v6/ZGjXol5JTp0g5bxZaC0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nothing You Could Do\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/nothingyoucoulddo/v7/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Noticia Text\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/noticiatext/v7/VuJ2dNDF2Yv9qppOePKYRP1GYQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/noticiatext/v7/VuJodNDF2Yv9qppOePKYRP12Yztd.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/noticiatext/v7/VuJpdNDF2Yv9qppOePKYRP1-3R59vw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/noticiatext/v7/VuJrdNDF2Yv9qppOePKYRP12YwPhumvV.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Noto Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"devanagari\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/notosans/v7/o-0IIpQlx3QUlC5A4PNb4g.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/notosans/v7/o-0OIpQlx3QUlC5A4PNr4DRF.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/notosans/v7/o-0NIpQlx3QUlC5A4PNjXhFlYw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/notosans/v7/o-0TIpQlx3QUlC5A4PNr4Az5ZtyE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Noto Serif\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/notoserif/v6/ga6Iaw1J5X9T9RW6j9bNTFA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/notoserif/v6/ga6Kaw1J5X9T9RW6j9bNfFIWbQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/notoserif/v6/ga6Law1J5X9T9RW6j9bNdOwzTRA.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/notoserif/v6/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nova Cut\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/novacut/v9/KFOkCnSYu8mL-39LkWxP.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nova Flat\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/novaflat/v9/QdVUSTc-JgqpytEbVebEuQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nova Mono\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"greek\",\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/novamono/v8/Cn-0JtiGWQ5Ajb--MRKfYA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nova Oval\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/novaoval/v9/jAnEgHdmANHvPenMaswCMQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nova Round\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/novaround/v9/flU9Rqquw5UhEnlwTJYTYYc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nova Script\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/novascript/v10/7Au7p_IpkSWSTWaFWkumvmQN.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nova Slim\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/novaslim/v9/Z9XUDmZNQAuem8jyZcn-yA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nova Square\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/novasquare/v9/RrQUbo9-9DV7b06QHgSWsZhA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Numans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/numans/v7/SlGRmQmGupYAfH8IYQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nunito\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofA-sekZg.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN5MZ-vN.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAnsSkZg.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN4oZOvN.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/nunito/v9/XRXV3I6Li01BKof4Mg.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/nunito/v9/XRXX3I6Li01BKofIMOaE.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofA6sKkZg.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN5cYuvN.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAjsOkZg.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN44Y-vN.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAksCkZg.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN4kYOvN.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAtsGkZg.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN4AYevN.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Nunito Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc9yAv5q.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4GxZrU1Q.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8WAf5q.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G3JoU1Q.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe0qMImSLYBIv1o4X1M8cfe6.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe0oMImSLYBIv1o4X1M8cce4I94.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc9iB_5q.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4GwZuU1Q.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8GBv5q.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G2JvU1Q.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8aBf5q.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G35sU1Q.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8-BP5q.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G1ptU1Q.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Odor Mean Chey\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/odormeanchey/v9/raxkHiKDttkTe1aOGcJMR1A_4mrY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Offside\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/offside/v5/HI_KiYMWKa9QrAykQ5E.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Old Standard TT\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/oldstandardtt/v9/MwQubh3o1vLImiwAVvYawgcf2eVurQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/oldstandardtt/v9/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/oldstandardtt/v9/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Oldenburg\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/oldenburg/v5/fC1jPY5JYWzbywv7c4V6UQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Oleo Script\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/oleoscript/v6/rax5HieDvtMOe0iICsUccBha.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/oleoscript/v6/raxkHieDvtMOe0iICsUccCDmnmrY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Oleo Script Swash Caps\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/oleoscriptswashcaps/v5/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXo.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/oleoscriptswashcaps/v5/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Open Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v15\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8-VQ.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKWyV-hs.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-U1Ug.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/opensans/v15/mem6YaGs126MiZpBA-UFUJ0e.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirk-VQ.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKXGUehs.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rg-VQ.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKWiUOhs.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN8rs-VQ.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKW-U-hs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Open Sans Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/opensanscondensed/v12/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhPuI.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/opensanscondensed/v12/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suDMQg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/opensanscondensed/v12/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmPuI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Oranienbaum\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/oranienbaum/v6/OZpHg_txtzZKMuXLIVrx-3zn.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Orbitron\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/orbitron/v9/yMJRMIlzdpvBhQQL_Tq8.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/orbitron/v9/yMJWMIlzdpvBhQQL_QJIVAhx.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/orbitron/v9/yMJWMIlzdpvBhQQL_QIAUghx.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/orbitron/v9/yMJWMIlzdpvBhQQL_QI4UAhx.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Oregano\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/oregano/v5/If2IXTPxciS3H4S2kZc.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/oregano/v5/If2KXTPxciS3H4S2oZXVOw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Orienta\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/orienta/v5/PlI9FlK4Jrl5Y9zNeyc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Original Surfer\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/originalsurfer/v6/RWmQoKGZ9vIirYntXJ3_MbekzNMiDA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Oswald\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v16\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-1h4jvQ.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-sh0jvQ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/oswald/v16/TK3iWkUHHAIjg75GHg.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-6hwjvQ.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-xhsjvQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-ohojvQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Over the Rainbow\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/overtherainbow/v8/11haGoXG1k_HKhMLUWz7Mc7vvW5upvM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Overlock\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/overlock/v7/Z9XVDmdMWRiN1_T9Z4Te.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/overlock/v7/Z9XTDmdMWRiN1_T9Z7Tc6Ok.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/overlock/v7/Z9XSDmdMWRiN1_T9Z7xizcmM.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/overlock/v7/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrk.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/overlock/v7/Z9XSDmdMWRiN1_T9Z7xaz8mM.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/overlock/v7/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Overlock SC\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/overlocksc/v6/1cX3aUHKGZrstGAY8nwVzHGA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Overpass\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/overpass/v2/qFdB35WCmI96Ajtm81nGU94.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/overpass/v2/qFdD35WCmI96Ajtm81Gga7rqwg.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81lqcv7K.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81GgaxbL4h8.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81kOcf7K.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81Gga3LI4h8.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/overpass/v2/qFdH35WCmI96Ajtm82Gi.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/overpass/v2/qFdB35WCmI96Ajtm81GgU94.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81l6d_7K.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81GgawbO4h8.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81kedv7K.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81Gga2LP4h8.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81kCdf7K.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81Gga37M4h8.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81kmdP7K.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81Gga1rN4h8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Overpass Mono\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/overpassmono/v3/_Xm3-H86tzKDdAPa-KPQZ-AC3oSWk_c.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/overpassmono/v3/_Xmq-H86tzKDdAPa-KPQZ-AC5ig.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/overpassmono/v3/_Xm3-H86tzKDdAPa-KPQZ-AC3vCQk_c.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/overpassmono/v3/_Xm3-H86tzKDdAPa-KPQZ-AC3pSRk_c.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ovo\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ovo/v8/yYLl0h7Wyfzjyw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Oxygen\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/oxygen/v7/2sDcZG1Wl4LcnbuCJW8Dbw.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/oxygen/v7/2sDfZG1Wl4Lcnbu6iQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/oxygen/v7/2sDcZG1Wl4LcnbuCNWgDbw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Oxygen Mono\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/oxygenmono/v5/h0GsssGg9FxgDgCjLeAd7ijf.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"PT Mono\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ptmono/v5/9oRONYoBnWILk-9ArCg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"PT Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ptsans/v9/jizaRExUiTo99u79P0U.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/ptsans/v9/jizYRExUiTo99u79D0eEwA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ptsans/v9/jizfRExUiTo99u79B_mh4Ok.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/ptsans/v9/jizdRExUiTo99u79D0e8fOytKA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"PT Sans Caption\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ptsanscaption/v10/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ptsanscaption/v10/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"PT Sans Narrow\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ptsansnarrow/v8/BngRUXNadjH0qYEzV7ab-oWlsYCB.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ptsansnarrow/v8/BngSUXNadjH0qYEzV7ab-oWlsbg95DiC.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"PT Serif\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ptserif/v9/EJRVQgYoZZY2vCFuvDFR.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/ptserif/v9/EJRTQgYoZZY2vCFuvAFTzro.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ptserif/v9/EJRSQgYoZZY2vCFuvAnt65qV.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/ptserif/v9/EJRQQgYoZZY2vCFuvAFT9gaQVy4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"PT Serif Caption\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ptserifcaption/v9/ieVl2ZhbGCW-JoW6S34pSDpqYKU059U.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/ptserifcaption/v9/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Pacifico\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ96A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Padauk\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"myanmar\",\n    \"latin\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/padauk/v4/RrQRboJg-id7OnbBaw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/padauk/v4/RrQSboJg-id7Onb512DE1A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Palanquin\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/palanquin/v3/9XUhlJ90n1fBFg7ceXwUEltI.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/palanquin/v3/9XUilJ90n1fBFg7ceXwUvnpoxA.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/palanquin/v3/9XUilJ90n1fBFg7ceXwU2nloxA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/palanquin/v3/9XUnlJ90n1fBFg7ceXwsdg.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/palanquin/v3/9XUilJ90n1fBFg7ceXwUgnhoxA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/palanquin/v3/9XUilJ90n1fBFg7ceXwUrn9oxA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/palanquin/v3/9XUilJ90n1fBFg7ceXwUyn5oxA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Palanquin Dark\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/palanquindark/v3/xn75YHgl1nqmANMB-26xC7yuF_6O.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/palanquindark/v3/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/palanquindark/v3/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/palanquindark/v3/xn76YHgl1nqmANMB-26xC7yuF8YyY241.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Pangolin\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pangolin/v3/cY9GfjGcW0FPpi-tWPfK.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Paprika\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/paprika/v5/8QIJdijZitv49rDfuIg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Parisienne\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/parisienne/v5/E21i_d3kivvAkxhLEVZpcy8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Passero One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/passeroone/v9/JTUTjIko8DOq5FeaeEAjgE5B.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Passion One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/passionone/v8/PbynFmL8HhTPqbjUzux3JHuW.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/passionone/v8/Pby6FmL8HhTPqbjUzux3JEMq037o.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/passionone/v8/Pby6FmL8HhTPqbjUzux3JEMS0X7o.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Pathway Gothic One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pathwaygothicone/v6/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Patrick Hand\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/patrickhand/v11/LDI1apSQOAYtSuYWp8ZhfYeMWQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Patrick Hand SC\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/patrickhandsc/v5/0nkwC9f7MfsBiWcLtY65AWDK873ViQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Pattaya\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pattaya/v2/ea8ZadcqV_zkHY-XNdA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Patua One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/patuaone/v7/ZXuke1cDvLCKLDcimxBI5A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Pavanam\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"tamil\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pavanam/v2/BXRrvF_aiezLh0xPDOs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Paytone One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/paytoneone/v10/0nksC9P7MfYHj2oFtYm2CiTq.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Peddana\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/peddana/v5/aFTU7PBhaX89UcKWhh0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Peralta\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/peralta/v5/hYkJPu0-RP_9d3kRGxA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Permanent Marker\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/permanentmarker/v7/Fh4uPib9Iyv2ucM6pGQMWimMp004Hao.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Petit Formal Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/petitformalscript/v5/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Petrona\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/petrona/v6/mtG64_NXL7bZo9XXsXU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Philosopher\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/philosopher/v9/vEFV2_5QCwIS4_Dhez5jcVBp.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/philosopher/v9/vEFX2_5QCwIS4_Dhez5jcWBrT0g.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/philosopher/v9/vEFI2_5QCwIS4_Dhez5jcWjVamgc.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/philosopher/v9/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Piedra\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/piedra/v6/ke8kOg8aN0Bn7hTunA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Pinyon Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pinyonscript/v7/6xKpdSJbL9-e9LuoeQiDRQR8aOI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Pirata One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pirataone/v5/I_urMpiDvgLdLh0fAtoftig.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Plaster\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/plaster/v9/DdTm79QatW80eRh4Ei4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Play\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/play/v9/6aez4K2oVqwIjtI.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/play/v9/6ae84K2oVqwItm4TOpc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Playball\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/playball/v7/TK3gWksYAxQ7jbsKcj8D.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Playfair Display\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v13\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFiD-vYSZviVYUb_rj3ij__anPXPTs.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFkD-vYSZviVYUb_rj3ij__anPXDTnYhQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9pWk.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwe4w.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFlD-vYSZviVYUb_rj3ij__anPXBb__pWk.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFnD-vYSZviVYUb_rj3ij__anPXDTngAW4e4w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Playfair Display SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcs.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XKw.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcs.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXKw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Podkova\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/podkova/v11/K2FxfZ1EmftJSV9VWJ4.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/podkova/v11/K2F0fZ1EmftJSV9VYGrQAoo.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/podkova/v11/K2F0fZ1EmftJSV9VYEbXAoo.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/podkova/v11/K2F0fZ1EmftJSV9VYCLWAoo.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/podkova/v11/K2F0fZ1EmftJSV9VYD7VAoo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Poiret One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/poiretone/v5/UqyVK80NJXN4zfRgbdfbk5k.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Poller One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pollerone/v7/ahccv82n0TN3gia5E4Bud-k.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Poly\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/poly/v8/MQpb-W6wKNitRLA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/poly/v8/MQpV-W6wKNitdLKKrw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Pompiere\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pompiere/v7/VEMyRoxis5Dwuyeov6Wt.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Pontano Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pontanosans/v5/qFdD35GdgYR8EzR6oBLDHa3qwg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Poor Story\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/poorstory/v3/jizfREFUsnUct9P6cDfd4Ok.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Poppins\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/poppins/v5/pxiGyp8kv8JHgFVrLPTedw.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/poppins/v5/pxiAyp8kv8JHgFVrJJLmE3tF.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLFj_V1s.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmv1plEA.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLDz8V1s.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLm21llEA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/poppins/v5/pxiEyp8kv8JHgFVrFJA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/poppins/v5/pxiGyp8kv8JHgFVrJJLedw.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLGT9V1s.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmg1hlEA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLEj6V1s.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmr19lEA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLCz7V1s.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmy15lEA.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLDD4V1s.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLm111lEA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLBT5V1s.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLm81xlEA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Port Lligat Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/portlligatsans/v6/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7M.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Port Lligat Slab\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/portlligatslab/v6/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7o.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Pragati Narrow\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pragatinarrow/v3/vm8vdRf0T0bS1ffgsPB7WZ-mD17_.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/pragatinarrow/v3/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Prata\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/prata/v8/6xKhdSpbNNCT-vWI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Preahvihear\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/preahvihear/v9/6NUS8F-dNQeEYhzj7uluxswE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Press Start 2P\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/pressstart2p/v6/e3t4euO8T-267oIAQAu6jDQyK0nS.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Pridi\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/pridi/v3/2sDdZG5JnZLfkc1SiE0j.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/pridi/v3/2sDdZG5JnZLfkc02i00j.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/pridi/v3/2sDQZG5JnZLfkfWa.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/pridi/v3/2sDdZG5JnZLfkc1uik0j.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/pridi/v3/2sDdZG5JnZLfkc1CjU0j.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/pridi/v3/2sDdZG5JnZLfkc0mjE0j.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Princess Sofia\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/princesssofia/v5/qWczB6yguIb8DZ_GXZst16n7GRz7.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Prociono\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/prociono/v7/r05YGLlR-KxAf9GGO8up.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Prompt\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/prompt/v2/-W_9XJnvUD7dzB2CA9oY.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/prompt/v2/-W_7XJnvUD7dzB2KZeJ8TkM.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2Cr_s4bg.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeLQb2Mr.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2Cy_g4bg.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeK0bGMr.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/prompt/v2/-W__XJnvUD7dzB26Zw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/prompt/v2/-W_9XJnvUD7dzB2KZdoY.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2Ck_k4bg.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeLsbWMr.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2Cv_44bg.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeLAamMr.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2C2_84bg.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeKka2Mr.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2Cx_w4bg.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeK4aGMr.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2C4_04bg.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeKcaWMr.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Prosto One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/prostoone/v6/OpNJno4VhNfK-RgpwWWxpio.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Proza Libre\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/prozalibre/v2/LYjGdGHgj0k1DIQRyUEyyHov.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/prozalibre/v2/LYjEdGHgj0k1DIQRyUEyyEotdN8.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/prozalibre/v2/LYjbdGHgj0k1DIQRyUEyyELbV__f.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/prozalibre/v2/LYjZdGHgj0k1DIQRyUEyyEotTCvceJQ.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/prozalibre/v2/LYjbdGHgj0k1DIQRyUEyyEL3UP_f.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/prozalibre/v2/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/prozalibre/v2/LYjbdGHgj0k1DIQRyUEyyEKTUf_f.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/prozalibre/v2/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJQ.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/prozalibre/v2/LYjbdGHgj0k1DIQRyUEyyEKPUv_f.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/prozalibre/v2/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Puritan\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/puritan/v9/845YNMgkAJ2VTtIo9Jo.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/puritan/v9/845aNMgkAJ2VTtIoxJj6QQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/puritan/v9/845dNMgkAJ2VTtIozCbfYd4.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/puritan/v9/845fNMgkAJ2VTtIoxJjC_dup_w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Purple Purse\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/purplepurse/v6/qWctB66gv53iAp-Vfs4My6qyeA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Quando\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/quando/v6/xMQVuFNaVa6YuW0pCw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Quantico\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/quantico/v6/rax-HiSdp9cPL3KIF4xs.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/quantico/v6/rax4HiSdp9cPL3KIF7xuJDg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/quantico/v6/rax5HiSdp9cPL3KIF7TQARha.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/quantico/v6/rax7HiSdp9cPL3KIF7xuHIRfu0o.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Quattrocento\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/quattrocento/v9/OZpEg_xvsDZQL_LKIF7q4jPHxA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/quattrocento/v9/OZpbg_xvsDZQL_LKIF7q4jP_eE3fdw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Quattrocento Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/quattrocentosans/v10/va9c4lja2NVIDdIAAoMR5MfuElaRB3zO.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/quattrocentosans/v10/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0o.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/quattrocentosans/v10/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrW.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/quattrocentosans/v10/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Questrial\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/questrial/v7/QdVUSTchPBm7nuUeVf7EuQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Quicksand\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/quicksand/v7/6xKodSZaM9iE8KbpRA_pgHYoSA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/quicksand/v7/6xKtdSZaM9iE8KbpRA_RLA.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/quicksand/v7/6xKodSZaM9iE8KbpRA_p2HcoSA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/quicksand/v7/6xKodSZaM9iE8KbpRA_pkHEoSA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Quintessential\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/quintessential/v5/fdNn9sOGq31Yjnh3qWU14DdtjY5w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Qwigley\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/qwigley/v7/1cXzaU3UGJb5tGoCuVw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Racing Sans One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/racingsansone/v5/sykr-yRtm7EvTrXNxkv5jfKKyDCwLw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Radley\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/radley/v12/LYjDdGzinEIjCN19oA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/radley/v12/LYjBdGzinEIjCN1NogNA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rajdhani\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pasEcOs.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/rajdhani/v7/LDIxapCSOBg7S-QT7q4A.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pb0EMOs.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pbYF8Os.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pa8FsOs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rakkas\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rakkas/v4/Qw3cZQlNHiblL3j_lg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Raleway\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptsg8zYS_SKggPNwE4ISg.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptqg8zYS_SKggPNyCgwLoFv.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwOIpaqE.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwgqBPBQ.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwIYqaqE.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgw5qNPBQ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptug8zYS_SKggPN-Co.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptsg8zYS_SKggPNyCgISg.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwN4raqE.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwvqJPBQ.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwPIsaqE.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwkqVPBQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwJYtaqE.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgw9qRPBQ.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwIouaqE.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgw6qdPBQ.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwK4vaqE.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwzqZPBQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Raleway Dots\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ralewaydots/v5/6NUR8FifJg6AfQvzpshgwJ8kyQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ramabhadra\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ramabhadra/v6/EYq2maBOwqRW9P1SQ83LehM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ramaraja\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ramaraja/v2/SlGTmQearpYAYG1CABIk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rambla\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rambla/v5/snfrs0ip98hx6mr0Iw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/rambla/v5/snfps0ip98hx6mrEIbgK.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/rambla/v5/snfos0ip98hx6mrMn50qPg.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/rambla/v5/snfus0ip98hx6mrEIYC2O_l8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rammetto One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rammettoone/v6/LhWiMV3HOfMbMetJG3lQDpp9Mg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ranchers\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ranchers/v5/zrfm0H3Lx-P2Xvs2AoDY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rancho\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rancho/v8/46kulbzmXjLaqZRlbQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ranga\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ranga/v3/C8ct4cYisGb28p6C.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ranga/v3/C8cg4cYisGb28qY-AxgR.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rasa\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"gujarati\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/rasa/v3/xn7gYHIn1mWmdg52sgA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/rasa/v3/xn7vYHIn1mWmTqI.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/rasa/v3/xn7gYHIn1mWmdlZ3sgA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/rasa/v3/xn7gYHIn1mWmdnpwsgA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/rasa/v3/xn7gYHIn1mWmdh5xsgA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rationale\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rationale/v8/9XUnlJ92n0_JFxHIfHcsdg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ravi Prakash\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/raviprakash/v4/gokpH6fsDkVrF9Bv9X8SOAKHmA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Redressed\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/redressed/v8/x3dickHUbrmJ7wMy9MsBfA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Reem Kufi\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/reemkufi/v4/2sDcZGJLip7W2J7v7wQDbw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Reenie Beanie\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/reeniebeanie/v8/z7NSdR76eDkaJKZJFkkjuvWxbP0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Revalia\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/revalia/v5/WwkexPimBE2-4ZPEeVo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rhodium Libre\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rhodiumlibre/v2/1q2AY5adA0tn_ukeHcQHqpx6pEQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ribeye\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ribeye/v6/L0x8DFMxk1MP9R3RvA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ribeye Marrow\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ribeyemarrow/v7/GFDsWApshnqMRO2JdtRZ2d0vEAw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Righteous\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/righteous/v6/1cXxaUPXBpj2rGoU7C9mjw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Risque\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/risque/v5/VdGfAZUfHosahXxoCQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Roboto\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"700\",\n    \"700italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v18\",\n   \"lastModified\": \"2017-10-16\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1MmgWxP.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/roboto/v18/KFOiCnqEu92Fr1Mu51QrIzc.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5vAw.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TjARc9.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Me5Q.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu52xP.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9vAw.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51S7ABc9.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlvAw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TzBhc9.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmYUtvAw.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TLBBc9.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Roboto Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v16\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCM.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/robotocondensed/v16/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYag.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-59U.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/robotocondensed/v16/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCM.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/robotocondensed/v16/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYag.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Roboto Mono\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/robotomono/v5/L0x7DF4xlVMF-BfR8bXMIjAoq3o.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/robotomono/v5/L0xlDF4xlVMF-BfR8bXMIjhOkx6WXw.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/robotomono/v5/L0xkDF4xlVMF-BfR8bXMIjDgiVq2.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/robotomono/v5/L0xmDF4xlVMF-BfR8bXMIjhOk9a0f7o.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/robotomono/v5/L0x5DF4xlVMF-BfR8bXMIghM.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/robotomono/v5/L0x7DF4xlVMF-BfR8bXMIjhOq3o.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/robotomono/v5/L0xkDF4xlVMF-BfR8bXMIjC4iFq2.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/robotomono/v5/L0xmDF4xlVMF-BfR8bXMIjhOk461f7o.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/robotomono/v5/L0xkDF4xlVMF-BfR8bXMIjDwjlq2.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/robotomono/v5/L0xmDF4xlVMF-BfR8bXMIjhOk8azf7o.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Roboto Slab\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"100\",\n    \"300\",\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/robotoslab/v7/BngOUXZYTXPIvIBgJJSb6u-u5qA.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/robotoslab/v7/BngRUXZYTXPIvIBgJJSb6u9mxICB.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/robotoslab/v7/BngMUXZYTXPIvIBgJJSb6tfK.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/robotoslab/v7/BngRUXZYTXPIvIBgJJSb6u92w4CB.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rochester\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rochester/v8/6ae-4KCqVa4Zy6Fif-Uy3w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rock Salt\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rocksalt/v8/MwQ0bhv11fWD6QsAVOZbsA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rokkitt\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/rokkitt/v12/qFdG35qfgYFjGy5hmCWCcw.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmImjU94.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmO2gU94.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/rokkitt/v12/qFdE35qfgYFjGy5hoEE.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmLWhU94.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmJmmU94.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmP2nU94.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmOGkU94.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmMWlU94.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Romanesco\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/romanesco/v6/w8gYH2ozQOY7_r_J7mSn3A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ropa Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ropasans/v7/EYqxmaNOzLlWtsZSScyKWg.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/ropasans/v7/EYq3maNOzLlWtsZSScy6WDNs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rosario\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rosario/v12/xfux0WDhWW_fOEoY6FQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/rosario/v12/xfuz0WDhWW_fOEoY2Fb9yA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/rosario/v12/xfu00WDhWW_fOEoY0OjY6AY.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/rosario/v12/xfu20WDhWW_fOEoY2FbFdAPivA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rosarivo\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rosarivo/v5/PlI-Fl2lO6N9f8HaNAeC.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/rosarivo/v5/PlI4Fl2lO6N9f8HaNDeA0Hw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rouge Script\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rougescript/v6/LYjFdGbiklMoCIQOw1Ep3S4PVA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rozha One\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rozhaone/v4/AlZy_zVFtYP12Zncg2khdQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rubik\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"700\",\n    \"700italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"hebrew\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7Fqj1ma.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nEldWY8WU.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/rubik/v7/iJWKBXyIfDnIV4nG.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/rubik/v7/iJWEBXyIfDnIV7nErXk.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7Eyjlma.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nElY2Z8WU.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7F6iFma.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nElcWf8WU.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7FCilma.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nElf2d8WU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rubik Mono One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rubikmonoone/v6/UqyJK8kPP3hjw6ANTdfRk9YSN-8w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ruda\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ruda/v9/k3kfo8YQJOpFmn8.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ruda/v9/k3kQo8YQJOpFosM4Td4.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/ruda/v9/k3kQo8YQJOpFovs6Td4.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rufina\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rufina/v5/Yq6V-LyURyLy-aKyow.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/rufina/v5/Yq6W-LyURyLy-aKKHztAvA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ruge Boogie\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rugeboogie/v8/JIA3UVFwbHRF_GIWSMhKNROi.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ruluko\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ruluko/v5/xMQVuFNZVaODtm0pCw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rum Raisin\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rumraisin/v5/nwpRtKu3Ih8D5avB4h2uJ38.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ruslan Display\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ruslandisplay/v8/Gw6jwczl81XcIZuckK_e3Upfdzxr.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Russo One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/russoone/v6/Z9XUDmZRWg6M1LvRYsH-yA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ruthie\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ruthie/v7/gokvH63sGkdqXuU9lA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Rye\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/rye/v5/r05XGLJT86YDFg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sacramento\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sacramento/v5/buEzpo6gcdjy0EiZMBUG0Co.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sahitya\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sahitya/v2/6qLAKZkOuhnuqlJAaSc.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sahitya/v2/6qLFKZkOuhnuqlJAUZsqGyQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sail\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sail/v8/DPEjYwiBxwYJFBQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Saira\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/saira/v2/mem-Ya2wxmKQyNFETZY.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNHobLYV.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNGMb7YV.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/saira/v2/memwYa2wxmKQyOkg.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNHUbrYV.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNH4abYV.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNGcaLYV.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNGAa7YV.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNGkarYV.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Saira Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/sairacondensed/v3/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8A.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8A.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/sairacondensed/v3/EJROQgErUN8XuHNEtX81i9TmEkrfpQ.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8A.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8A.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8A.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8A.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Saira Extra Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3A.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3A.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT7w.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3A.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3A.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3A.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3A.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Saira Semi Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMW.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMW.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8L.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MW.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMW.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMW.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMW.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MW.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Salsa\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/salsa/v7/gNMKW3FiRpKj-imY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sanchez\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sanchez/v5/Ycm2sZJORluHnXbITm4.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/sanchez/v5/Ycm0sZJORluHnXbIfmxR-A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sancreek\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sancreek/v8/pxiHypAnsdxUm159X7D-.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sansita\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sansita/v2/QldONTRRphEb_-V7HBk.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/sansita/v2/QldMNTRRphEb_-V7LBuxSQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sansita/v2/QldLNTRRphEb_-V7JKWUaXk.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/sansita/v2/QldJNTRRphEb_-V7LBuJ9Xx-xg.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/sansita/v2/QldLNTRRphEb_-V7JLmXaXk.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/sansita/v2/QldJNTRRphEb_-V7LBuJ6X9-xg.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/sansita/v2/QldLNTRRphEb_-V7JJ2WaXk.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/sansita/v2/QldJNTRRphEb_-V7LBuJzX5-xg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sarala\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sarala/v2/uK_y4riEZv4o1w9RCg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sarala/v2/uK_x4riEZv4o1w9ptjI3Og.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sarina\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sarina/v6/-F6wfjF3ITQwasLhLg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sarpanch\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sarpanch/v3/hESy6Xt4NCpRuk6Pzh2A.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/sarpanch/v3/hES16Xt4NCpRuk6PziV0ba7f.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/sarpanch/v3/hES16Xt4NCpRuk6PziVYaq7f.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sarpanch/v3/hES16Xt4NCpRuk6PziU8a67f.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/sarpanch/v3/hES16Xt4NCpRuk6PziUgaK7f.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/sarpanch/v3/hES16Xt4NCpRuk6PziUEaa7f.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Satisfy\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/satisfy/v8/rP2Hp2yn6lkG50LoOZQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Scada\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/scada/v6/RLpxK5Pv5qumeWJo.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/scada/v6/RLp_K5Pv5qumeVJqzTE.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/scada/v6/RLp8K5Pv5qumeVrU6BEg.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/scada/v6/RLp6K5Pv5qumeVJq9Y0lT1M.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Scheherazade\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\"\n   ],\n   \"version\": \"v14\",\n   \"lastModified\": \"2018-02-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/scheherazade/v14/YA9Ur0yF4ETZN60keViq1kQgtw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/scheherazade/v14/YA9Lr0yF4ETZN60keViq1kQYC7yMjg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Schoolbell\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/schoolbell/v8/92zQtBZWOrcgoe-fgnJIVxI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Scope One\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/scopeone/v3/WBLnrEXKYFlGHrOKmGD1Ww.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Seaweed Script\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/seaweedscript/v5/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Secular One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"hebrew\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/secularone/v2/8QINdiTajsj_87rMuMdKypDl.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sedgwick Ave\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sedgwickave/v3/uK_04rKEYuguzAcSYRdWTJq8Xg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sedgwick Ave Display\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sedgwickavedisplay/v3/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2cz.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sevillana\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sevillana/v5/KFOlCnWFscmDt1Bfiy1vAw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Seymour One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/seymourone/v5/4iCp6Khla9xbjQpoWGGd0myI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Shadows Into Light\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/shadowsintolight/v7/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Shadows Into Light Two\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/shadowsintolighttwo/v5/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Shanti\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/shanti/v9/t5thIREMM4uSDgzgUw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Share\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/share/v8/i7dEIFliZjKNF5VN.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/share/v8/i7dKIFliZjKNF6VPFr4.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/share/v8/i7dJIFliZjKNF63xM56-.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/share/v8/i7dPIFliZjKNF6VPLgK7UEY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Share Tech\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sharetech/v7/7cHtv4Uyi5K0OeZ7bohUwHo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Share Tech Mono\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sharetechmono/v7/J7aHnp1uDWRBEqV98dVQztYldFc7pA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Shojumaru\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/shojumaru/v5/rax_HiWfutkLLnaKCtlMBA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Short Stack\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/shortstack/v7/bMrzmS2X6p0jZC6EcmPFX-SS.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Shrikhand\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"gujarati\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/shrikhand/v3/a8IbNovtLWfR7T7bMJwbBA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Siemreap\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/siemreap/v10/Gg82N5oFbgLvHAfNl2Yb.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sigmar One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sigmarone/v8/co3DmWZ8kjZuErj9Ta3dk6M.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Signika\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/signika/v8/vEFU2_JTCgwQ5ejvE_oEI3A.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/signika/v8/vEFR2_JTCgwQ5ejvK1Y.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/signika/v8/vEFU2_JTCgwQ5ejvE44CI3A.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/signika/v8/vEFU2_JTCgwQ5ejvE-oDI3A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Signika Negative\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/signikanegative/v7/E217_cfngu7HiRpPX3ZpNE4kY5zKal6DipE.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/signikanegative/v7/E218_cfngu7HiRpPX3ZpNE4kY5zKUvI.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/signikanegative/v7/E217_cfngu7HiRpPX3ZpNE4kY5zKaiqFipE.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/signikanegative/v7/E217_cfngu7HiRpPX3ZpNE4kY5zKak6EipE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Simonetta\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/simonetta/v7/x3dickHVYrCU5BU15c4BfA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/simonetta/v7/x3dkckHVYrCU5BU15c4xfvoG.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/simonetta/v7/x3dnckHVYrCU5BU15c45-N0mtw.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/simonetta/v7/x3d5ckHVYrCU5BU15c4xfsKCsA7t.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sintony\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sintony/v5/XoHm2YDqR7-98cVUITQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sintony/v5/XoHj2YDqR7-98cVUGYgIn9c.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sirin Stencil\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sirinstencil/v6/mem4YaWwznmLx-lzGfN7MdRydcg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Six Caps\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sixcaps/v8/6ae_4KGrU7VR7bNmabcS.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Skranji\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/skranji/v5/OZpDg_dtriVFNerMYzs.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/skranji/v5/OZpGg_dtriVFNerMW4eBtlw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Slabo 13px\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/slabo13px/v4/11hEGp_azEvXZUdSBzzRcKc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Slabo 27px\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/slabo27px/v4/mFT0WbgBwKPR_Z4hGN2qsxg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Slackey\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/slackey/v8/N0bV2SdQO-5yM0-dKlQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Smokum\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/smokum/v8/TK3iWkUbAhopmrdGHg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Smythe\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/smythe/v8/MwQ3bhT01--coT1BOA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sniglet\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sniglet/v9/cIf9MaFLtkE3UjaJxCk.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/sniglet/v9/cIf4MaFLtkE3UjaJ_ImHRGE.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Snippet\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/snippet/v7/bWt47f7XfQH9Gupu2v8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Snowburst One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/snowburstone/v5/MQpS-WezKdujBsXY3B7I-UT7eZ8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sofadi One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sofadione/v6/JIA2UVBxdnVBuElZaMFGcDM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sofia\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sofia/v6/8QIHdirahM3j_vu-.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Song Myung\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/songmyung/v3/1cX2aUDWAJH5-EIC7DIhr1E.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sonsie One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sonsieone/v6/PbymFmP_EAnPqbKaoc18YVs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sorts Mill Goudy\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sortsmillgoudy/v7/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/sortsmillgoudy/v7/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8Eig.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Source Code Pro\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/sourcecodepro/v7/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt8srztA.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/sourcecodepro/v7/HI_XiYsKILxRpg3hIP6sJ7fM7PqtlsnztA.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/sourcecodepro/v7/HI_SiYsKILxRpg3hIP6sJ7fM7PqVOg.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/sourcecodepro/v7/HI_XiYsKILxRpg3hIP6sJ7fM7PqtzsjztA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/sourcecodepro/v7/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt4s_ztA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sourcecodepro/v7/HI_XiYsKILxRpg3hIP6sJ7fM7Pqths7ztA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/sourcecodepro/v7/HI_XiYsKILxRpg3hIP6sJ7fM7PqtvszztA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Source Sans Pro\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkA.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkA.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3aPw.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7g.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkA.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkA.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkA.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Source Serif Pro\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sourceserifpro/v5/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/sourceserifpro/v5/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSs.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sourceserifpro/v5/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Space Mono\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/spacemono/v2/i7dPIFZifjKcF5UAWdDRUEY.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/spacemono/v2/i7dNIFZifjKcF5UAWdDRYER8QA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/spacemono/v2/i7dMIFZifjKcF5UAWdDRaPpZYFI.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/spacemono/v2/i7dSIFZifjKcF5UAWdDRYERE_FeaGw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Special Elite\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/specialelite/v8/XLYgIZbkc4JPUL5CVArUVL0nhnc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Spectral\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9v2s13G.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qrXHafM.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9uSsF3G.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qtHEafM.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/spectral/v4/rnCr-xNNww_2s0amA-M-.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/spectral/v4/rnCt-xNNww_2s0amA9M8kn0.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9vKsV3G.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qonFafM.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9vmtl3G.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qqXCafM.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9uCt13G.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qsHDafM.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9uetF3G.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qt3AafM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Spectral SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk0ALCRZonmalTgyPmRfs1qwkTX.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk2ALCRZonmalTgyPmRfsWg26zWN4M.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk0ALCRZonmalTgyPmRfs0OwUTX.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk2ALCRZonmalTgyPmRfsWg28jVN4M.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/spectralsc/v2/KtkpALCRZonmalTgyPmRfvWi.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/spectralsc/v2/KtkrALCRZonmalTgyPmRfsWg42Q.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk0ALCRZonmalTgyPmRfs1WwETX.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk2ALCRZonmalTgyPmRfsWg25DUN4M.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk0ALCRZonmalTgyPmRfs16x0TX.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk2ALCRZonmalTgyPmRfsWg27zTN4M.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk0ALCRZonmalTgyPmRfs0exkTX.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk2ALCRZonmalTgyPmRfsWg29jSN4M.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk0ALCRZonmalTgyPmRfs0CxUTX.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/spectralsc/v2/Ktk2ALCRZonmalTgyPmRfsWg28TRN4M.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Spicy Rice\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/spicyrice/v6/uK_24rSEd-Uqwk4jY1RyGv8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Spinnaker\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/spinnaker/v9/w8gYH2oyX-I0_rvR6Hmn3A.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Spirax\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/spirax/v6/buE3poKgYNLy0F3cXg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Squada One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/squadaone/v6/BCasqZ8XsOrx4mcOk6MtWaA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sree Krushnadevaraya\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sreekrushnadevaraya/v5/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sriracha\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sriracha/v2/0nkrC9D4IuYBgWcI9ObY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Stalemate\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/stalemate/v5/taiIGmZ_EJq97-UfkZRpug.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Stalinist One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/stalinistone/v10/MQpS-WezM9W4Dd7D3B7I-UT7eZ8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Stardos Stencil\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/stardosstencil/v7/X7n94bcuGPC8hrvEOHXOgaKCc2TR7w.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/stardosstencil/v7/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Stint Ultra Condensed\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/stintultracondensed/v6/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Stint Ultra Expanded\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/stintultraexpanded/v5/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Stoke\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/stoke/v7/z7NXdRb7aTMfKNvFVgxC.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/stoke/v7/z7NadRb7aTMfKONp.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Strait\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/strait/v5/DtViJxy6WaEr1LZzeA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Stylish\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/stylish/v3/m8JSjfhPYriQkk7-fo0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sue Ellen Francisco\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sueellenfrancisco/v8/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9roo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Suez One\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"hebrew\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/suezone/v2/taiJGmd_EZ6rqscQgNFJ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sumana\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sumana/v2/4UaDrE5TqRBjGj-G8A.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sumana/v2/4UaArE5TqRBjGj--TDfG5w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sunflower\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"500\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/sunflower/v4/RWmPoKeF8fUjqIj7Vc-06MfiqQ.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/sunflower/v4/RWmPoKeF8fUjqIj7Vc-0sMbiqQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sunflower/v4/RWmPoKeF8fUjqIj7Vc-0-MDiqQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sunshiney\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sunshiney/v8/LDIwapGTLBwsS-wT4vcgEw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Supermercado One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/supermercadoone/v7/OpNXnpQWg8jc_xps_Gi14kVVEXOn60Y.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Sura\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/sura/v2/SZc23FL5PbyzFf4.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/sura/v2/SZc53FL5PbyzLUJ7fz0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Suranna\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/suranna/v5/gokuH6ztGkFjWe58tBQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Suravaram\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/suravaram/v4/_gP61R_usiY7SCym4xIAiw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Suwannaphum\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/suwannaphum/v11/jAnCgHV7GtDvc8jbe8hXXIWl.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Swanky and Moo Moo\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/swankyandmoomoo/v7/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Syncopate\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/syncopate/v9/pe0sMIuPIYBCpEV5eFdyAg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/syncopate/v9/pe0pMIuPIYBCpEV5eFdKvtKaAw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Tajawal\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"arabic\",\n    \"latin\"\n   ],\n   \"version\": \"v1\",\n   \"lastModified\": \"2018-04-04\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l_6gLrY.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l5qjLrY.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/tajawal/v1/Iura6YBj_oCad4k1rzY.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l8KiLrY.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l4qkLrY.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l5anLrY.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l7KmLrY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Tangerine\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/tangerine/v9/IurY6Y5j_oScZZow4VOBDg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/tangerine/v9/Iurd6Y5j_oScZZow4VO5srNpjA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Taprom\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"khmer\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/taprom/v9/UcCn3F82JHycULbFQw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Tauri\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/tauri/v5/TwMA-IISS0AM3IpV.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Taviraj\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/taviraj/v3/ahcbv8Cj3ylylTXzRIorVw.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/taviraj/v3/ahcdv8Cj3ylylTXzTOwTM8lx.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRCYKd-k.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwTn-hRhQ.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzREIJd-k.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwT--tRhQ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/taviraj/v3/ahcZv8Cj3ylylTXzfO4.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/taviraj/v3/ahcbv8Cj3ylylTXzTOwrVw.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRBoId-k.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwTo-pRhQ.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRDYPd-k.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwTj-1RhQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRFIOd-k.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwT6-xRhQ.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRE4Nd-k.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwT9-9RhQ.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRGoMd-k.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwT0-5RhQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Teko\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdQhfgCM.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/teko/v7/LYjNdG7kmE0gTaQ.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdVBegCM.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdXxZgCM.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdRhYgCM.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Telex\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/telex/v6/ieVw2Y1fKWmIO9fT.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Tenali Ramakrishna\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/tenaliramakrishna/v4/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Tenor Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/tenorsans/v8/bx6ANxqUneKx06UkIXISr3I.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Text Me One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/textmeone/v5/i7dOIFdlayuLUvgoFvHQFWZc.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"The Girl Next Door\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/thegirlnextdoor/v8/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIVw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Tienne\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/tienne/v10/AYCKpX7pe9YCRP0LkA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/tienne/v10/AYCJpX7pe9YCRP0zLGzjQA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/tienne/v10/AYCJpX7pe9YCRP0zFG7jQA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Tillana\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/tillana/v3/VuJxdNvf35P4qJ1OeKY.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/tillana/v3/VuJ0dNvf35P4qJ1OQFL-HIk.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/tillana/v3/VuJ0dNvf35P4qJ1OQH75HIk.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/tillana/v3/VuJ0dNvf35P4qJ1OQBr4HIk.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/tillana/v3/VuJ0dNvf35P4qJ1OQAb7HIk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Timmana\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"telugu\",\n    \"latin\"\n   ],\n   \"version\": \"v2\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/timmana/v2/6xKvdShfL9yK-rvpCms.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Tinos\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"hebrew\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/tinos/v11/buE4poGnedXvwgX8.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/tinos/v11/buE2poGnedXvwjX-fmE.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/tinos/v11/buE1poGnedXvwj1AW0Fp.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/tinos/v11/buEzpoGnedXvwjX-Rt1s0Co.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Titan One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/titanone/v5/mFTzWbsGxbbS_J5cQcjykw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Titillium Web\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIw.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZg.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIw.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/titilliumweb/v6/NaPecZTIAOhVxoMyOr9n_E7fRMQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/titilliumweb/v6/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCA.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIw.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZg.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Trade Winds\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/tradewinds/v6/AYCPpXPpYNIIT7h8-QenM3Jq.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Trirong\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"100\",\n    \"100italic\",\n    \"200\",\n    \"200italic\",\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"800\",\n    \"800italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"thai\",\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/trirong/v3/7r3EqXNgp8wxdOdOl-go3Q.ttf\",\n    \"100italic\": \"http://fonts.gstatic.com/s/trirong/v3/7r3CqXNgp8wxdOdOn44QuY5h.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOl0QJ_a4.ttf\",\n    \"200italic\": \"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QFa9B4g.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOlyAK_a4.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QcaxB4g.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/trirong/v3/7r3GqXNgp8wxdOdOr4w.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/trirong/v3/7r3EqXNgp8wxdOdOn44o3Q.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOl3gL_a4.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QKa1B4g.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOl1QM_a4.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QBapB4g.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOlzAN_a4.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QYatB4g.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOlywO_a4.ttf\",\n    \"800italic\": \"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QfahB4g.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOlwgP_a4.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QWalB4g.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Trocchi\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/trocchi/v6/qWcqB6WkuIDxDZLcDrs.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Trochut\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/trochut/v5/CHyjV-fDDlP9bDIw5nQ.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/trochut/v5/CHyhV-fDDlP9bDIw1naCeQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/trochut/v5/CHymV-fDDlP9bDIw3sinWVo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Trykker\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/trykker/v6/KtktALyWZJXudUPzhNk.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Tulpen One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/tulpenone/v7/dFa6ZfeC474skLgesc0CWj0.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ubuntu\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v11\",\n   \"lastModified\": \"2017-10-11\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/ubuntu/v11/4iCv6KVjbNBYlgoC1CzTtw.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/ubuntu/v11/4iCp6KVjbNBYlgoKejZftWyI.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/ubuntu/v11/4iCs6KVjbNBYlgo6eA.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/ubuntu/v11/4iCu6KVjbNBYlgoKeg7z.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/ubuntu/v11/4iCv6KVjbNBYlgoCjC3Ttw.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/ubuntu/v11/4iCp6KVjbNBYlgoKejYHtGyI.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ubuntu/v11/4iCv6KVjbNBYlgoCxCvTtw.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/ubuntu/v11/4iCp6KVjbNBYlgoKejZPsmyI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ubuntu Condensed\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ubuntucondensed/v8/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-c.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ubuntu Mono\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"cyrillic\",\n    \"greek-ext\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ubuntumono/v7/KFOjCneDtsqEr0keqCMhbBc9.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/ubuntumono/v7/KFOhCneDtsqEr0keqCMhbCc_CsE.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/ubuntumono/v7/KFO-CneDtsqEr0keqCMhbC-BL-Hy.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/ubuntumono/v7/KFO8CneDtsqEr0keqCMhbCc_Mn33tYg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Ultra\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/ultra/v10/zOLy4prXmrtY-tT6.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Uncial Antiqua\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/uncialantiqua/v5/N0bM2S5WOex4OUbESzoESK-i-PfR.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Underdog\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/underdog/v6/CHygV-jCElj7diMroVSi.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Unica One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/unicaone/v5/DPEuYwWHyAYGVTSmalshdg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"UnifrakturCook\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"700\": \"http://fonts.gstatic.com/s/unifrakturcook/v9/IurA6Yli8YOdcoky-0PTTdkm56n05Uw1.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"UnifrakturMaguntia\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/unifrakturmaguntia/v8/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVunw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Unkempt\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/unkempt/v9/2EbnL-Z2DFZue0DSSYY.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/unkempt/v9/2EbiL-Z2DFZue0DScTow1zU.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Unlock\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/unlock/v7/7Au-p_8ykD-cDl7GKA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Unna\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v10\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/unna/v10/AYCEpXzofN0NCpg.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/unna/v10/AYCKpXzofN0NOpoLkA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/unna/v10/AYCLpXzofN0NMiQusGk.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/unna/v10/AYCJpXzofN0NOpozLGzjQA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"VT323\",\n   \"category\": \"monospace\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/vt323/v9/pxiKyp0ihIEF2hsY.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Vampiro One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/vampiroone/v8/gokqH6DoDl5yXvJytFsdLkqn.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Varela\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/varela/v8/DPEtYwqExx0AWHXJBA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Varela Round\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"hebrew\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/varelaround/v9/w8gdH283Tvk__Lua32TysjIvoA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Vast Shadow\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/vastshadow/v7/pe0qMImKOZ1V62ZwbVY9dfe6.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Vesper Libre\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"500\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/vesperlibre/v9/bx6CNxyWnf-uxPdXDHUD_Rd4Dw.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/vesperlibre/v9/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0g.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/vesperlibre/v9/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0g.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/vesperlibre/v9/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0g.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Vibur\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/vibur/v8/DPEiYwmEzw0QRjTp.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Vidaloka\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/vidaloka/v9/7cHrv4c3ipenMKlEass8.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Viga\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/viga/v6/xMQbuFFdSaiX_QI.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Voces\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/voces/v7/-F6_fjJyLyU8d4PB.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Volkhov\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/volkhov/v9/SlGQmQieoJcKemNeQTI.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/volkhov/v9/SlGSmQieoJcKemNecTAEgA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/volkhov/v9/SlGVmQieoJcKemNeeY4hoHQ.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/volkhov/v9/SlGXmQieoJcKemNecTA8PHFSaA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Vollkorn\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\",\n    \"900\",\n    \"900italic\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"greek\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/vollkorn/v8/0yb9GDoxxrvAnPhYGyku.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/vollkorn/v8/0yb7GDoxxrvAnPhYGxksaEg.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/vollkorn/v8/0yb6GDoxxrvAnPhYGxH2TGg-.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/vollkorn/v8/0yb4GDoxxrvAnPhYGxksUJA6jBA.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/vollkorn/v8/0yb6GDoxxrvAnPhYGxGSTWg-.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/vollkorn/v8/0yb4GDoxxrvAnPhYGxksUPQ7jBA.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/vollkorn/v8/0yb6GDoxxrvAnPhYGxGqT2g-.ttf\",\n    \"900italic\": \"http://fonts.gstatic.com/s/vollkorn/v8/0yb4GDoxxrvAnPhYGxksUMw5jBA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Vollkorn SC\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"regular\",\n    \"600\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v1\",\n   \"lastModified\": \"2017-11-07\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/vollkornsc/v1/j8_v6-zQ3rXpceZj9cqnVhF5.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/vollkornsc/v1/j8_y6-zQ3rXpceZj9cqnVimhGluq.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/vollkornsc/v1/j8_y6-zQ3rXpceZj9cqnVinFG1uq.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/vollkornsc/v1/j8_y6-zQ3rXpceZj9cqnVin9GVuq.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Voltaire\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/voltaire/v7/1Pttg8PcRfSblAvGvQoo.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Waiting for the Sunrise\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/waitingforthesunrise/v8/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Wallpoet\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/wallpoet/v9/f0X10em2_8RnXVVdUNbu.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Walter Turncoat\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/walterturncoat/v8/snfys0Gs98ln43n0d-14ULoToe67YA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Warnes\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-09\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/warnes/v7/pONn1hc0GsW6sW5Opg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Wellfleet\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/wellfleet/v5/nuF7D_LfQJb3VYgX6eyT4w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Wendy One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v5\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/wendyone/v5/2sDcZGJOipXfgfXV5wgDbw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Wire One\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/wireone/v8/qFdH35Wah5htUhV75WGi.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Work Sans\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\",\n    \"800\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/worksans/v3/QGYqz_wNahGAdqQ43Rh3H6Ds.ttf\",\n    \"200\": \"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3s4HMnw.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh314LMnw.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/worksans/v3/QGYsz_wNahGAdqQ43RhPew.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3j4PMnw.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3o4TMnw.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3x4XMnw.ttf\",\n    \"800\": \"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh324bMnw.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3_4fMnw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Yanone Kaffeesatz\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"200\",\n    \"300\",\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v9\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"200\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y9-6aknfjLm_3lMKjiMgmUUYBs04YfUPs-t.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y9-6aknfjLm_3lMKjiMgmUUYBs04YewPc-t.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y976aknfjLm_3lMKjiMgmUUYBs04b8c.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y9-6aknfjLm_3lMKjiMgmUUYBs04YegOs-t.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Yantramanav\",\n   \"category\": \"sans-serif\",\n   \"variants\": [\n    \"100\",\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"700\",\n    \"900\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"100\": \"http://fonts.gstatic.com/s/yantramanav/v3/flU-Rqu5zY00QEpyWJYWN5-QXeM.ttf\",\n    \"300\": \"http://fonts.gstatic.com/s/yantramanav/v3/flUhRqu5zY00QEpyWJYWN59Yf8NZ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/yantramanav/v3/flU8Rqu5zY00QEpyWJYWN6f0.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/yantramanav/v3/flUhRqu5zY00QEpyWJYWN58AfsNZ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/yantramanav/v3/flUhRqu5zY00QEpyWJYWN59IeMNZ.ttf\",\n    \"900\": \"http://fonts.gstatic.com/s/yantramanav/v3/flUhRqu5zY00QEpyWJYWN59wesNZ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Yatra One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"devanagari\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/yatraone/v4/C8ch4copsHzj8p7NaF0xww.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Yellowtail\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v8\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/yellowtail/v8/OZpGg_pnoDtINPfRIlLotlw.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Yeon Sung\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"korean\",\n    \"latin\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2018-06-20\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/yeonsung/v3/QldMNTpbohAGtsJvUn6xSQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Yeseva One\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"cyrillic-ext\",\n    \"vietnamese\",\n    \"cyrillic\",\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v12\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/yesevaone/v12/OpNJno4ck8vc-xYpwWWxpio.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Yesteryear\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v6\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/yesteryear/v6/dg4g_p78rroaKl8kRKo1r7w.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Yrsa\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"regular\",\n    \"500\",\n    \"600\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3af93IQ.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/yrsa/v3/wlp-gwnQFlxs5Qs.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3f_83IQ.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3dP73IQ.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3bf63IQ.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Zeyada\",\n   \"category\": \"handwriting\",\n   \"variants\": [\n    \"regular\"\n   ],\n   \"subsets\": [\n    \"latin\"\n   ],\n   \"version\": \"v7\",\n   \"lastModified\": \"2017-10-10\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/zeyada/v7/11hAGpPTxVPUbgZDNA.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Zilla Slab\",\n   \"category\": \"serif\",\n   \"variants\": [\n    \"300\",\n    \"300italic\",\n    \"regular\",\n    \"italic\",\n    \"500\",\n    \"500italic\",\n    \"600\",\n    \"600italic\",\n    \"700\",\n    \"700italic\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v3\",\n   \"lastModified\": \"2017-11-21\",\n   \"files\": {\n    \"300\": \"http://fonts.gstatic.com/s/zillaslab/v3/dFa5ZfeM_74wlPZtksIFYpEY2HQ.ttf\",\n    \"300italic\": \"http://fonts.gstatic.com/s/zillaslab/v3/dFanZfeM_74wlPZtksIFaj8CVHapXg.ttf\",\n    \"regular\": \"http://fonts.gstatic.com/s/zillaslab/v3/dFa6ZfeM_74wlPZtksIFWj0.ttf\",\n    \"italic\": \"http://fonts.gstatic.com/s/zillaslab/v3/dFa4ZfeM_74wlPZtksIFaj86-A.ttf\",\n    \"500\": \"http://fonts.gstatic.com/s/zillaslab/v3/dFa5ZfeM_74wlPZtksIFYskZ2HQ.ttf\",\n    \"500italic\": \"http://fonts.gstatic.com/s/zillaslab/v3/dFanZfeM_74wlPZtksIFaj8CDHepXg.ttf\",\n    \"600\": \"http://fonts.gstatic.com/s/zillaslab/v3/dFa5ZfeM_74wlPZtksIFYuUe2HQ.ttf\",\n    \"600italic\": \"http://fonts.gstatic.com/s/zillaslab/v3/dFanZfeM_74wlPZtksIFaj8CIHCpXg.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/zillaslab/v3/dFa5ZfeM_74wlPZtksIFYoEf2HQ.ttf\",\n    \"700italic\": \"http://fonts.gstatic.com/s/zillaslab/v3/dFanZfeM_74wlPZtksIFaj8CRHGpXg.ttf\"\n   }\n  },\n  {\n   \"kind\": \"webfonts#webfont\",\n   \"family\": \"Zilla Slab Highlight\",\n   \"category\": \"display\",\n   \"variants\": [\n    \"regular\",\n    \"700\"\n   ],\n   \"subsets\": [\n    \"latin\",\n    \"latin-ext\"\n   ],\n   \"version\": \"v4\",\n   \"lastModified\": \"2018-06-28\",\n   \"files\": {\n    \"regular\": \"http://fonts.gstatic.com/s/zillaslabhighlight/v4/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtI.ttf\",\n    \"700\": \"http://fonts.gstatic.com/s/zillaslabhighlight/v4/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4.ttf\"\n   }\n  }\n ]\n}\n','yes'),(756,'dcec58179625d8b554d9314d08efc122','a:2:{s:7:\"timeout\";i:1532026007;s:5:\"value\";s:2991:\"{\"new_version\":\"1.6\",\"stable_version\":\"1.6\",\"name\":\"Divi Extended Google Fonts\",\"slug\":\"emp-licensing\",\"url\":\"https:\\/\\/elegantmarketplace.com\\/downloads\\/divi-extended-google-fonts\\/?changelog=1\",\"last_updated\":\"2017-10-19 05:36:47\",\"homepage\":\"https:\\/\\/elegantmarketplace.com\\/downloads\\/divi-extended-google-fonts\\/\",\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"<p>This plugin does a very simple job... it extends the number of Google Fonts offered by Divi significantly. There\'s no settings page to clog up the interface or any setting up to do at all. Simply activate the plugin and when you customise the site via the \'Divi theme customizer\', Theme options panel or any Divi Builder font selection list\\u00a0you\'ll see not 50 fonts there but over 700!<\\/p>\\n\",\"changelog\":\"<p>*<br \\/>\\n* V1.1<br \\/>\\n* - Initial Release<br \\/>\\n*<br \\/>\\n* V1.2 - 15\\/3\\/17<br \\/>\\n* - Added ability to select the number of fonts used on the site via the new settings page<br \\/>\\n*<br \\/>\\n* V1.3 - 16\\/3\\/17<br \\/>\\n* - Added ability to select fonts using the customizer for H2-H6 individually<br \\/>\\n*<br \\/>\\n* V1.4 - 15\\/6\\/17<br \\/>\\n* - Added \'sync\' with server function to keep the fonts as up to date as possible.<br \\/>\\n* - Moved from a stylesheet and a .txt file to a DB option for added speed<br \\/>\\n*<br \\/>\\n* V1.5 - 13\\/9\\/17<br \\/>\\n* - Removed call to et_get_one_font_languages which wasn\'t used but caused an error on some installs.<br \\/>\\n* - Added class_exists call to prevent occasional error on some installs<br \\/>\\n*<br \\/>\\n* V1.6 - 20\\/9\\/17<br \\/>\\n* - Fixed function call error around the licensing page.<br \\/>\\n*<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"description\":[\"<p>This plugin does a very simple job... it extends the number of Google Fonts offered by Divi significantly. There\'s no settings page to clog up the interface or any setting up to do at all. Simply activate the plugin and when you customise the site via the \'Divi theme customizer\', Theme options panel or any Divi Builder font selection list\\u00a0you\'ll see not 50 fonts there but over 700!<\\/p>\\n\"],\"changelog\":[\"<p>*<br \\/>\\n* V1.1<br \\/>\\n* - Initial Release<br \\/>\\n*<br \\/>\\n* V1.2 - 15\\/3\\/17<br \\/>\\n* - Added ability to select the number of fonts used on the site via the new settings page<br \\/>\\n*<br \\/>\\n* V1.3 - 16\\/3\\/17<br \\/>\\n* - Added ability to select fonts using the customizer for H2-H6 individually<br \\/>\\n*<br \\/>\\n* V1.4 - 15\\/6\\/17<br \\/>\\n* - Added \'sync\' with server function to keep the fonts as up to date as possible.<br \\/>\\n* - Moved from a stylesheet and a .txt file to a DB option for added speed<br \\/>\\n*<br \\/>\\n* V1.5 - 13\\/9\\/17<br \\/>\\n* - Removed call to et_get_one_font_languages which wasn\'t used but caused an error on some installs.<br \\/>\\n* - Added class_exists call to prevent occasional error on some installs<br \\/>\\n*<br \\/>\\n* V1.6 - 20\\/9\\/17<br \\/>\\n* - Fixed function call error around the licensing page.<br \\/>\\n*<\\/p>\\n\"]}\";}','yes'),(763,'sb_et_egf_license_key','cf7258f1dac05e7b32d20dec94ee36be','yes'),(764,'sb_et_egf_license_status','valid','yes'),(765,'sb_et_egf_license_data','O:8:\"stdClass\":13:{s:7:\"success\";b:1;s:7:\"license\";s:5:\"valid\";s:7:\"item_id\";b:0;s:9:\"item_name\";s:26:\"Divi+Extended+Google+Fonts\";s:13:\"license_limit\";i:0;s:10:\"site_count\";i:3;s:7:\"expires\";s:8:\"lifetime\";s:16:\"activations_left\";s:9:\"unlimited\";s:8:\"checksum\";s:32:\"957d907df68094223e54dfedad21f6b2\";s:10:\"payment_id\";i:302224;s:13:\"customer_name\";s:12:\"Rocky Swartz\";s:14:\"customer_email\";s:28:\"consulting@randalstewart.com\";s:8:\"price_id\";s:1:\"0\";}','yes'),(766,'sb_egf_font_selection','','yes'),(1038,'910a09d3cf28e9dac80e7da17909f8d2','a:2:{s:7:\"timeout\";i:1538421383;s:5:\"value\";s:3656:\"{\"new_version\":\"1.6\",\"stable_version\":\"1.6\",\"name\":\"Divi Extended Google Fonts\",\"slug\":\"emp-licensing\",\"url\":\"https:\\/\\/elegantmarketplace.com\\/downloads\\/divi-extended-google-fonts\\/?changelog=1\",\"last_updated\":\"2017-10-19 05:36:47\",\"homepage\":\"https:\\/\\/elegantmarketplace.com\\/downloads\\/divi-extended-google-fonts\\/\",\"package\":\"https:\\/\\/elegantmarketplace.com\\/edd-sl\\/package_download\\/MTUzODU1ODE4MzpjZjcyNThmMWRhYzA1ZTdiMzJkMjBkZWM5NGVlMzZiZTo1MDIzMDozNDFmNTMxYmE1ZjhjODkyODNlZWNmMzA2ZWQxZWRhMzpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"download_link\":\"https:\\/\\/elegantmarketplace.com\\/edd-sl\\/package_download\\/MTUzODU1ODE4MzpjZjcyNThmMWRhYzA1ZTdiMzJkMjBkZWM5NGVlMzZiZTo1MDIzMDozNDFmNTMxYmE1ZjhjODkyODNlZWNmMzA2ZWQxZWRhMzpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"sections\":{\"description\":\"<p>This plugin does a very simple job... it extends the number of Google Fonts offered by Divi significantly. There\'s no settings page to clog up the interface or any setting up to do at all. Simply activate the plugin and when you customise the site via the \'Divi theme customizer\', Theme options panel or any Divi Builder font selection list\\u00a0you\'ll see not 50 fonts there but over 700!<\\/p>\\n\",\"changelog\":\"<p>*<br \\/>\\n* V1.1<br \\/>\\n* - Initial Release<br \\/>\\n*<br \\/>\\n* V1.2 - 15\\/3\\/17<br \\/>\\n* - Added ability to select the number of fonts used on the site via the new settings page<br \\/>\\n*<br \\/>\\n* V1.3 - 16\\/3\\/17<br \\/>\\n* - Added ability to select fonts using the customizer for H2-H6 individually<br \\/>\\n*<br \\/>\\n* V1.4 - 15\\/6\\/17<br \\/>\\n* - Added \'sync\' with server function to keep the fonts as up to date as possible.<br \\/>\\n* - Moved from a stylesheet and a .txt file to a DB option for added speed<br \\/>\\n*<br \\/>\\n* V1.5 - 13\\/9\\/17<br \\/>\\n* - Removed call to et_get_one_font_languages which wasn\'t used but caused an error on some installs.<br \\/>\\n* - Added class_exists call to prevent occasional error on some installs<br \\/>\\n*<br \\/>\\n* V1.6 - 20\\/9\\/17<br \\/>\\n* - Fixed function call error around the licensing page.<br \\/>\\n*<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:2:{s:2:\\\"1x\\\";s:88:\\\"https:\\/\\/elegantmarketplace.com\\/wp-content\\/uploads\\/2016\\/06\\/Divi-Extended-Google-Fonts.png\\\";s:2:\\\"2x\\\";s:88:\\\"https:\\/\\/elegantmarketplace.com\\/wp-content\\/uploads\\/2016\\/06\\/Divi-Extended-Google-Fonts.png\\\";}\",\"description\":[\"<p>This plugin does a very simple job... it extends the number of Google Fonts offered by Divi significantly. There\'s no settings page to clog up the interface or any setting up to do at all. Simply activate the plugin and when you customise the site via the \'Divi theme customizer\', Theme options panel or any Divi Builder font selection list\\u00a0you\'ll see not 50 fonts there but over 700!<\\/p>\\n\"],\"changelog\":[\"<p>*<br \\/>\\n* V1.1<br \\/>\\n* - Initial Release<br \\/>\\n*<br \\/>\\n* V1.2 - 15\\/3\\/17<br \\/>\\n* - Added ability to select the number of fonts used on the site via the new settings page<br \\/>\\n*<br \\/>\\n* V1.3 - 16\\/3\\/17<br \\/>\\n* - Added ability to select fonts using the customizer for H2-H6 individually<br \\/>\\n*<br \\/>\\n* V1.4 - 15\\/6\\/17<br \\/>\\n* - Added \'sync\' with server function to keep the fonts as up to date as possible.<br \\/>\\n* - Moved from a stylesheet and a .txt file to a DB option for added speed<br \\/>\\n*<br \\/>\\n* V1.5 - 13\\/9\\/17<br \\/>\\n* - Removed call to et_get_one_font_languages which wasn\'t used but caused an error on some installs.<br \\/>\\n* - Added class_exists call to prevent occasional error on some installs<br \\/>\\n*<br \\/>\\n* V1.6 - 20\\/9\\/17<br \\/>\\n* - Fixed function call error around the licensing page.<br \\/>\\n*<\\/p>\\n\"]}\";}','yes'),(1456,'f01dfd2b52939c7ed1074f169e3517dd','a:2:{s:7:\"timeout\";i:1562072740;s:5:\"value\";s:4340:\"{\"new_version\":\"1.06\",\"stable_version\":\"1.06\",\"name\":\"Zapier\",\"slug\":\"formidable-zapier\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/?changelog=1\",\"last_updated\":\"2019-05-07 15:56:46\",\"homepage\":\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTU2MjEzMDMzOTpkOWY3NmNiODNjMzMzNzQ4MmUyYzY5YjNiMDM5YTQ2MDoxNzA2NDU6MTQxZjAyNGY2ZDM3ZWUzOWEyMDNmMWRhNDg0YzMyNjQ6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTU2MjEzMDMzOTpkOWY3NmNiODNjMzMzNzQ4MmUyYzY5YjNiMDM5YTQ2MDoxNzA2NDU6MTQxZjAyNGY2ZDM3ZWUzOWEyMDNmMWRhNDg0YzMyNjQ6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"sections\":{\"description\":\"<p>Connect with hundreds of applications through Zapier. Automatically insert a Google spreadsheet row, tweet, or upload to Dropbox.<\\/p>\\n\",\"changelog\":\"<p><h4>v1.06 - February 6, 2019<\\/h4>\\r\\n<ul>\\n<li>Add a new fallback for authentication with the API key in the url. When the API key continues to say it is missing, add add_filter( \'frm_zap_url_auth\', \'__return_true\' ); in the theme functions.php.<br \\/>\\nThen use this url in Zapier:<br \\/>\\nhttps:\\/\\/yoursite.com\\/API-KEY-GOES-HERE\\/\\n<\\/li>\\n<li>New: Add frm_zap_sent hook to run after an entry is sent to Zapier<\\/li>\\n<li>Fix: Don\'t send draft entries to Zapier<\\/li>\\n<li>Added automation to release new versions<\\/li>\\n<\\/ul>\\n<h4>v1.05 - July 31, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add frmzap_entry_array filter to customize the entry values sent to Zapier<\\/li>\\n<li>New: Add logging of Zapier responses into the Logs addon<\\/li>\\n<li>Fix: Prevent a blank response when fetching the list of forms. This was happening on some sites with a lot of forms<\\/li>\\n<\\/ul>\\n<h4>v1.04 - July 31, 2017<\\/h4>\\r\\n<p>Fix a conflict with API keys between the Zapier and API addons on a multisite network. This solves the issue with the incorrect API key error message in Zapier.<\\/p>\\n<h4>v1.03 - June 5, 2017<\\/h4>\\r\\n<ul>\\n<li>Allow field ids to be used in Zapier mapping instead of only field keys<\\/li>\\n<li>Increase the limit of triggered zaps per form from 5 to 40<\\/li>\\n<li>Fix overloaded property error when setting the user for authentication<\\/li>\\n<li>Prevent error reporting during API calls so the response is formatted correctly<\\/li>\\n<\\/ul>\\n<h4>v1.02 - November 13, 2015<\\/h4>\\r\\n<ul>\\n<li>Prevent error when Formidable is disabled<\\/li>\\n<li>Use static classes for fields and forms<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:0:{}\",\"description\":[\"<p>Connect with hundreds of applications through Zapier. Automatically insert a Google spreadsheet row, tweet, or upload to Dropbox.<\\/p>\\n\"],\"changelog\":[\"<p><h4>v1.06 - February 6, 2019<\\/h4>\\r\\n<ul>\\n<li>Add a new fallback for authentication with the API key in the url. When the API key continues to say it is missing, add add_filter( \'frm_zap_url_auth\', \'__return_true\' ); in the theme functions.php.<br \\/>\\nThen use this url in Zapier:<br \\/>\\nhttps:\\/\\/yoursite.com\\/API-KEY-GOES-HERE\\/\\n<\\/li>\\n<li>New: Add frm_zap_sent hook to run after an entry is sent to Zapier<\\/li>\\n<li>Fix: Don\'t send draft entries to Zapier<\\/li>\\n<li>Added automation to release new versions<\\/li>\\n<\\/ul>\\n<h4>v1.05 - July 31, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add frmzap_entry_array filter to customize the entry values sent to Zapier<\\/li>\\n<li>New: Add logging of Zapier responses into the Logs addon<\\/li>\\n<li>Fix: Prevent a blank response when fetching the list of forms. This was happening on some sites with a lot of forms<\\/li>\\n<\\/ul>\\n<h4>v1.04 - July 31, 2017<\\/h4>\\r\\n<p>Fix a conflict with API keys between the Zapier and API addons on a multisite network. This solves the issue with the incorrect API key error message in Zapier.<\\/p>\\n<h4>v1.03 - June 5, 2017<\\/h4>\\r\\n<ul>\\n<li>Allow field ids to be used in Zapier mapping instead of only field keys<\\/li>\\n<li>Increase the limit of triggered zaps per form from 5 to 40<\\/li>\\n<li>Fix overloaded property error when setting the user for authentication<\\/li>\\n<li>Prevent error reporting during API calls so the response is formatted correctly<\\/li>\\n<\\/ul>\\n<h4>v1.02 - November 13, 2015<\\/h4>\\r\\n<ul>\\n<li>Prevent error when Formidable is disabled<\\/li>\\n<li>Use static classes for fields and forms<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"]}\";}','no'),(1457,'547f36ab66d68abf589fdf355fabaee7','a:2:{s:7:\"timeout\";i:1535804587;s:5:\"value\";s:5770:\"{\"new_version\":\"1.05.01\",\"stable_version\":\"1.05.01\",\"name\":\"Formidable API\",\"slug\":\"formidable-api\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/?changelog=1\",\"last_updated\":\"2018-08-22 16:40:13\",\"homepage\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzNTg2MjE4NjozZGNkMGJiYzE0OTVkYzg3YTMxYzdiZDZkYmY2MmZiMzoxNjgwNzI6OTdkMjc2ZTBkNzg2ODgwNjIzZWU1ZjI4ZTk4YmViOTE6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzNTg2MjE4NjozZGNkMGJiYzE0OTVkYzg3YTMxYzdiZDZkYmY2MmZiMzoxNjgwNzI6OTdkMjc2ZTBkNzg2ODgwNjIzZWU1ZjI4ZTk4YmViOTE6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"sections\":{\"description\":\"<p>Send submissions to other sites with REST APIs including from one Formidable Forms site to another. Add a full forms API for forms, form fields, views, and entries.<\\/p>\\n\",\"changelog\":\"<p><h4>v1.05.01 - August 22, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix issue with file fields not saving the received value<\\/li>\\n<\\/ul>\\n<h4>v1.05 - July 27, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add start_date and end_date parameters to filter the route to get entries<\\/li>\\n<li>Fix: Add better functionality to the search parameter in the route to get entries<\\/li>\\n<li>Fix: Allow the registration validation to trigger during API call<\\/li>\\n<li>Fix: reCaptcha was returning an error when creating an entry<\\/li>\\n<li>Fix: Creating an entry that included dynamic fields was causing a fatal error by using deprecated functions<\\/li>\\n<li>Fix: The route to create a form wasn\'t working correctly<\\/li>\\n<li>Remove old sslverify =&gt; false lines since they are no longer recommended<\\/li>\\n<\\/ul>\\n<h4>v1.04 - April 5, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow entry keys in routes like frm\\/v2\\/entries\\/#<\\/li>\\n<li>New: Allow form key in frm\\/v2\\/forms\\/#\\/entries<\\/li>\\n<li>Fix: Correctly update entries with repeating and embedded forms<\\/li>\\n<li>Fix: Correctly update an entry with a date when the date format is something other than Y-d-m<\\/li>\\n<li>Fix: Correctly process wp shortcodes in [shortcode]content[\\/shortcode] format when preparing the outbound API form action<\\/li>\\n<li>Fix: Remove the DELETE routes for frm\\/v2\\/entries and frm\\/v2\\/forms\\/#\\/entries. These didn\'t have any functionality behind them.<\\/li>\\n<li>Fix: Return a better response when an entry isn\'t found with frm\\/v2\\/entries\\/#<\\/li>\\n<li>Fix: Correct the nonce values when creating and updating entries so it won\'t block submissions<\\/li>\\n<\\/ul>\\n<h4>v1.03.01 - November 10, 2017<\\/h4>\\r\\n<ul>\\n<li>Only double encode line breaks inside of field values instead of the whole raw request<\\/li>\\n<li>Add a couple more parameters to the frmapi_post_response hook<\\/li>\\n<\\/ul>\\n<h4>v1.03 - October 26, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Fix unique field validation on edit.<\\/li>\\n<li>Fix: Double escape \\/r\\/n\\/ in json.<\\/li>\\n<li>Fix: Prevent cookie from being created during api call<\\/li>\\n<li>Fix: Update deprecated validation call.<\\/li>\\n<li>Fix: Allow quotes in shortcodes within API action.<\\/li>\\n<li>Fix: Include custom headers in logging.<\\/li>\\n<li>Fix: Include post values when updating an entry.<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"description\":[\"<p>Send submissions to other sites with REST APIs including from one Formidable Forms site to another. Add a full forms API for forms, form fields, views, and entries.<\\/p>\\n\"],\"changelog\":[\"<p><h4>v1.05.01 - August 22, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix issue with file fields not saving the received value<\\/li>\\n<\\/ul>\\n<h4>v1.05 - July 27, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add start_date and end_date parameters to filter the route to get entries<\\/li>\\n<li>Fix: Add better functionality to the search parameter in the route to get entries<\\/li>\\n<li>Fix: Allow the registration validation to trigger during API call<\\/li>\\n<li>Fix: reCaptcha was returning an error when creating an entry<\\/li>\\n<li>Fix: Creating an entry that included dynamic fields was causing a fatal error by using deprecated functions<\\/li>\\n<li>Fix: The route to create a form wasn\'t working correctly<\\/li>\\n<li>Remove old sslverify =&gt; false lines since they are no longer recommended<\\/li>\\n<\\/ul>\\n<h4>v1.04 - April 5, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow entry keys in routes like frm\\/v2\\/entries\\/#<\\/li>\\n<li>New: Allow form key in frm\\/v2\\/forms\\/#\\/entries<\\/li>\\n<li>Fix: Correctly update entries with repeating and embedded forms<\\/li>\\n<li>Fix: Correctly update an entry with a date when the date format is something other than Y-d-m<\\/li>\\n<li>Fix: Correctly process wp shortcodes in [shortcode]content[\\/shortcode] format when preparing the outbound API form action<\\/li>\\n<li>Fix: Remove the DELETE routes for frm\\/v2\\/entries and frm\\/v2\\/forms\\/#\\/entries. These didn\'t have any functionality behind them.<\\/li>\\n<li>Fix: Return a better response when an entry isn\'t found with frm\\/v2\\/entries\\/#<\\/li>\\n<li>Fix: Correct the nonce values when creating and updating entries so it won\'t block submissions<\\/li>\\n<\\/ul>\\n<h4>v1.03.01 - November 10, 2017<\\/h4>\\r\\n<ul>\\n<li>Only double encode line breaks inside of field values instead of the whole raw request<\\/li>\\n<li>Add a couple more parameters to the frmapi_post_response hook<\\/li>\\n<\\/ul>\\n<h4>v1.03 - October 26, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Fix unique field validation on edit.<\\/li>\\n<li>Fix: Double escape \\/r\\/n\\/ in json.<\\/li>\\n<li>Fix: Prevent cookie from being created during api call<\\/li>\\n<li>Fix: Update deprecated validation call.<\\/li>\\n<li>Fix: Allow quotes in shortcodes within API action.<\\/li>\\n<li>Fix: Include custom headers in logging.<\\/li>\\n<li>Fix: Include post values when updating an entry.<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"]}\";}','no'),(1514,'widget_frm_reg_login','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1515,'frm_reg_db','3','yes'),(1535,'edd_user_registration_license_key','1ebb0439a69639d11b608290859f93ed','yes'),(1536,'edd_user_registration_license_active','valid','yes'),(1537,'frm_4d7b7c457c03cb34feca8a99de70b45f','2020-04-19 00:06:25','yes'),(1544,'5a4b08933de49668e617605553e01563','a:2:{s:7:\"timeout\";i:1537601556;s:5:\"value\";s:9248:\"{\"new_version\":\"2.02\",\"stable_version\":\"2.02\",\"name\":\"User Registration\",\"slug\":\"formidable-registration\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/?changelog=1\",\"last_updated\":\"2018-09-14 17:28:26\",\"homepage\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzNzY1OTE1NjoxZWJiMDQzOWE2OTYzOWQxMWI2MDgyOTA4NTlmOTNlZDoxNzM5ODQ6NjVlOGY4ZWVjMmIyODM0NDZhYjFiYmRlOGEyNzA1OTk6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzNzY1OTE1NjoxZWJiMDQzOWE2OTYzOWQxMWI2MDgyOTA4NTlmOTNlZDoxNzM5ODQ6NjVlOGY4ZWVjMmIyODM0NDZhYjFiYmRlOGEyNzA1OTk6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"sections\":{\"description\":\"<p>Give new users access to your site as quickly and painlessly as possible. Allow users to register, edit and be able to login to their profiles on your site from the front end in a clean, customized registration form.<\\/p>\\n\",\"changelog\":\"<p><h4>v2.02 - September 14, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Get the page source to check if the page includes the form specified in the global settings (login form, reset password, or registration). This allows for these forms to be included in a sidebar or footer without returning error messages when the global settings are saved.<\\/li>\\n<li>New: Add hooks to change selected pages: frmreg_login_page_id, frmreg_resetpass_page_id, frmreg_register_page_id<\\/li>\\n<li>New: Allow a subsite to be created by a logged in user<\\/li>\\n<li>Fix: Allow user creation via API call<\\/li>\\n<li>Fix: Allow either set password by email or user moderation, but not both<\\/li>\\n<li>Fix: Issue with losing parameters when redirecting for login<\\/li>\\n<li>Fix: The user ID field was defaulting to the current user on registration forms when it should be empty<\\/li>\\n<li>Fix: If an error message is included in the url for password reset, show it instead of an unknown error<\\/li>\\n<li>Fix: Update for WP 3.9 compatibility<\\/li>\\n<li>Fix: Update for deprecated functions: save_settings, FrmForm::get_id_by_key, FrmProFieldsHelper::get_displayed_file_html<\\/li>\\n<li>New: Add Chinese translations<\\/li>\\n<\\/ul>\\n<h4>v2.01.01 - October 26, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add frmreg_after_create_subsite action.<\\/li>\\n<li>New: Add Norwegian translation.<\\/li>\\n<li>New: Add frmreg_login_error filter.<\\/li>\\n<li>Fix: Make sure show lost password and layout settings apply to widget.<\\/li>\\n<li>Fix: Convert special characters to standard characters in subdomain.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - October 4, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add global registration page setting.<\\/li>\\n<li>Enhancement: Allow radio and select fields for display name.<\\/li>\\n<li>Enhancement: Change field label in lost password form.<\\/li>\\n<li>Enhancement: Show hidden field type in Subdirectory or Subdomain settings.<\\/li>\\n<li>Enhancement: Always allow administrators to edit profiles through registration form.<\\/li>\\n<li>Enhancement: Redirect to login page if activation link is clicked again after activation.<\\/li>\\n<li>Fix: Show error messages in reset password form.<\\/li>\\n<li>Fix: Set logout label parameter correctly in shortcode builder.<\\/li>\\n<li>Fix: Passwords with special characters not saving as expected.<\\/li>\\n<\\/ul>\\n<h4>v2.0.01 - July 31, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Sliding login form in IE and Edge<\\/li>\\n<li>Fix: Set the login form and reset password form action the same way WordPress does<\\/li>\\n<li>Fix: Include lostpassword_form action in lost password form<\\/li>\\n<li>Fix: Allow HTML in login error messages<\\/li>\\n<\\/ul>\\n<h4>v2.0 - June 26, 2017<\\/h4>\\r\\n<ul>\\n<li>New: In multi-site, allow subsite creation<\\/li>\\n<li>New: Add global message settings<\\/li>\\n<li>New: Add reset and lost password forms<\\/li>\\n<li>New: Add option to create users on import<\\/li>\\n<li>New: Allow other actions to trigger registration action<\\/li>\\n<li>New: Add registration trigger to API action<\\/li>\\n<li>New: Allow selected roles to create new users with registration form<\\/li>\\n<li>New: Class parameter for frm-login shortcode<\\/li>\\n<li>New: Add parameter to set lost password text in frm-login shortcode<\\/li>\\n<li>New: Add lost password option to widget settings<\\/li>\\n<li>New: Add frmreg_password_field_types hook<\\/li>\\n<li>New: Add frmreg_after_create_user action that fires after a user is created<\\/li>\\n<li>New: Add shortcode for primary site URL<\\/li>\\n<li>Enhancement: Add migration for pre Formidable 2.0 settings<\\/li>\\n<li>Enhancement: Create new user and admin notification with migration<\\/li>\\n<li>Enhancement: Adjust login form HTML so it matches Formidable form HTML and classes<\\/li>\\n<li>Enhancement: Allow captcha addition to login form from plugins that affect the regular WordPress login form<\\/li>\\n<li>Fix: Validate registration fields only when registration action is triggered<\\/li>\\n<li>Fix: Make sure redirect option isn\'t lost on invalid login<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"description\":[\"<p>Give new users access to your site as quickly and painlessly as possible. Allow users to register, edit and be able to login to their profiles on your site from the front end in a clean, customized registration form.<\\/p>\\n\"],\"changelog\":[\"<p><h4>v2.02 - September 14, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Get the page source to check if the page includes the form specified in the global settings (login form, reset password, or registration). This allows for these forms to be included in a sidebar or footer without returning error messages when the global settings are saved.<\\/li>\\n<li>New: Add hooks to change selected pages: frmreg_login_page_id, frmreg_resetpass_page_id, frmreg_register_page_id<\\/li>\\n<li>New: Allow a subsite to be created by a logged in user<\\/li>\\n<li>Fix: Allow user creation via API call<\\/li>\\n<li>Fix: Allow either set password by email or user moderation, but not both<\\/li>\\n<li>Fix: Issue with losing parameters when redirecting for login<\\/li>\\n<li>Fix: The user ID field was defaulting to the current user on registration forms when it should be empty<\\/li>\\n<li>Fix: If an error message is included in the url for password reset, show it instead of an unknown error<\\/li>\\n<li>Fix: Update for WP 3.9 compatibility<\\/li>\\n<li>Fix: Update for deprecated functions: save_settings, FrmForm::get_id_by_key, FrmProFieldsHelper::get_displayed_file_html<\\/li>\\n<li>New: Add Chinese translations<\\/li>\\n<\\/ul>\\n<h4>v2.01.01 - October 26, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add frmreg_after_create_subsite action.<\\/li>\\n<li>New: Add Norwegian translation.<\\/li>\\n<li>New: Add frmreg_login_error filter.<\\/li>\\n<li>Fix: Make sure show lost password and layout settings apply to widget.<\\/li>\\n<li>Fix: Convert special characters to standard characters in subdomain.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - October 4, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add global registration page setting.<\\/li>\\n<li>Enhancement: Allow radio and select fields for display name.<\\/li>\\n<li>Enhancement: Change field label in lost password form.<\\/li>\\n<li>Enhancement: Show hidden field type in Subdirectory or Subdomain settings.<\\/li>\\n<li>Enhancement: Always allow administrators to edit profiles through registration form.<\\/li>\\n<li>Enhancement: Redirect to login page if activation link is clicked again after activation.<\\/li>\\n<li>Fix: Show error messages in reset password form.<\\/li>\\n<li>Fix: Set logout label parameter correctly in shortcode builder.<\\/li>\\n<li>Fix: Passwords with special characters not saving as expected.<\\/li>\\n<\\/ul>\\n<h4>v2.0.01 - July 31, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Sliding login form in IE and Edge<\\/li>\\n<li>Fix: Set the login form and reset password form action the same way WordPress does<\\/li>\\n<li>Fix: Include lostpassword_form action in lost password form<\\/li>\\n<li>Fix: Allow HTML in login error messages<\\/li>\\n<\\/ul>\\n<h4>v2.0 - June 26, 2017<\\/h4>\\r\\n<ul>\\n<li>New: In multi-site, allow subsite creation<\\/li>\\n<li>New: Add global message settings<\\/li>\\n<li>New: Add reset and lost password forms<\\/li>\\n<li>New: Add option to create users on import<\\/li>\\n<li>New: Allow other actions to trigger registration action<\\/li>\\n<li>New: Add registration trigger to API action<\\/li>\\n<li>New: Allow selected roles to create new users with registration form<\\/li>\\n<li>New: Class parameter for frm-login shortcode<\\/li>\\n<li>New: Add parameter to set lost password text in frm-login shortcode<\\/li>\\n<li>New: Add lost password option to widget settings<\\/li>\\n<li>New: Add frmreg_password_field_types hook<\\/li>\\n<li>New: Add frmreg_after_create_user action that fires after a user is created<\\/li>\\n<li>New: Add shortcode for primary site URL<\\/li>\\n<li>Enhancement: Add migration for pre Formidable 2.0 settings<\\/li>\\n<li>Enhancement: Create new user and admin notification with migration<\\/li>\\n<li>Enhancement: Adjust login form HTML so it matches Formidable form HTML and classes<\\/li>\\n<li>Enhancement: Allow captcha addition to login form from plugins that affect the regular WordPress login form<\\/li>\\n<li>Fix: Validate registration fields only when registration action is triggered<\\/li>\\n<li>Fix: Make sure redirect option isn\'t lost on invalid login<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"]}\";}','no'),(1555,'widget_theme-my-login','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1556,'_tml_installed_at','1533208973','no'),(1557,'_tml_updated_at','1533208973','no'),(1558,'_tml_version','7.0.9','no'),(2010,'58741c202192f9940ce17a49a8732a72','a:2:{s:7:\"timeout\";i:1534986260;s:5:\"value\";s:38453:\"{\"new_version\":\"3.03.01\",\"stable_version\":\"3.03.01\",\"name\":\"Formidable Pro\",\"slug\":\"formidable-pro\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro\\/?changelog=1\",\"last_updated\":\"2018-08-21 12:46:37\",\"homepage\":\"https:\\/\\/formidableforms.com\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzNTA0Mzg2MDpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDpjMzc4YmFkNWU0NjNkZWExNDNhNGMxMzRjMGQ0YWNjOTpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzNTA0Mzg2MDpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDpjMzc4YmFkNWU0NjNkZWExNDNhNGMxMzRjMGQ0YWNjOTpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"sections\":{\"description\":\"<p>= The best WordPress form builder plugin for custom forms =\\nFormidable Forms is a flexible and free WordPress forms plugin. Easily create contact forms, polls and surveys, lead generation forms, email forms, and any other forms you imagine. Start with a pre-built contact form template or create totally custom forms. From the smallest sidebar opt-in form to large job and employment application forms, Formidable Forms is built to do it all. Learn more about Formidable Forms at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"FormidableForms.com\\\">FormidableForms.com<\\/a><\\/p>\\n<p>Create a professional WordPress contact form without any code. Get mobile-friendly and responsive forms that look great on any screen size. Additionally, it\'s simple to change the form layout with included layout classes. For more advanced customizations, take control of the form HTML and CSS.<\\/p>\\n<p><a href=\\\"https:\\/\\/formidableforms.com\\/knowledgebase\\/\\\" title=\\\"View form builder Documentation\\\">View form builder Documentation<\\/a><\\/p>\\n<p>= All the features you need for beautiful WordPress forms =\\nCreate unlimited forms with all the essential field types.<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<li>reCaptcha (Invisible or one-click checkbox)<\\/li>\\n<\\/ul>\\n<p>= Form templates =\\nCreate forms in seconds with <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/\\\">pre-built form templates<\\/a>. Or add your own form templates and export the forms to share. A free contact form template is included when you install Formidable Forms. We also have a growing library of <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/\\\">downloadable form templates<\\/a>.<\\/p>\\n<p>= Customize your WordPress forms =\\nWhether you start from scratch or from a form template, customize your forms however you would like.<\\/p>\\n<ul>\\n<li>Send <strong>unlimited form email notifications and autoresponders<\\/strong>.<\\/li>\\n<li>Use <strong>input placeholder text<\\/strong> in form fields that clear when typing starts.<\\/li>\\n<li>Use our ready-made CSS classes (or your own custom CSS classes) to arrange your form fields and create <strong>multi-column forms<\\/strong><\\/li>\\n<li><strong>Modify the form HTML<\\/strong> for your individual needs.<\\/li>\\n<li>Customize the form success message and submit button text.<\\/li>\\n<li>Redirect to another page after submit or show content from a protected page.<\\/li>\\n<\\/ul>\\n<p>= Style your WordPress contact forms with no code =\\nUse the built-in <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">visual form style generator<\\/a> to instantly customize the look and feel of your WordPress forms. With just a few clicks, your forms can be transformed to match your personal style. A single form styling template will be applied to all the forms on your site. But if you decide you need different styles for different forms, Formidable Forms Pro is waiting.<\\/p>\\n<p>= Publish WordPress forms with ease =\\nOnce your WP form is built and designed just the way you like it, publish with an easy-to-use <strong>shortcode builder<\\/strong> UI. Direct links are also available on a blank page for <strong>form previews<\\/strong> and <strong>email surveys<\\/strong>.<\\/p>\\n<p><strong>Honeypot spam protection<\\/strong> is included in every website form. Or add Invisible reCAPTCHA, one-click reCAPTCHA, and Akismet for extra Spam control in your contact forms.<\\/p>\\n<p>= Save every form submission =\\nYou may already know it, but sending emails with your self-hosted WordPress website isn\'t 100% reliable. But every lead captured in your online contact forms is important. Don\'t lose a single one! This is why Formidable saves every contact form submission in your WordPress database and lists them on your Formidable -&gt; Entries page. Now even if a form email notification fails, you won\\u2019t lose a lead.<\\/p>\\n<p>Looking for <strong>GDPR compliance for forms<\\/strong>? No problem. Turn off IP tracking or stop saving form submissions. Or add a checkbox field to your form to collect consent.<\\/p>\\n<p>Need to import your leads to another service like MailChimp? No problem. <strong>Export form leads to a CSV<\\/strong> then open it in Excel or import anywhere.<\\/p>\\n<p>Plus, don\'t lose leads by accidentally deleting a form. <strong>Send forms to the trash<\\/strong> and recover them if needed.<\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8<\\/a><\\/p>\\n<p>= Pro Form Builder Plugin Features =\\nFormidable Forms Pro is an upgrade that adds even more power to your free forms. Multi-page forms, conditional logic, payment form integrations, data management, front-end post submissions for user-generated content, front-end editing, and boat loads more. <\\/p>\\n<p>Other WordPress form builder plugins only let you collect data. But our Pro forms also add options to display form submissions on the front-end of your site. Input, display, edit and filter data on the front-end without any additional plugins. Formidable Forms is a powerful solution for purchase forms, order forms, member directories, user registration forms, event calendars, and more.<\\/p>\\n<ul>\\n<li><strong>Even more field types<\\/strong>: Page breaks, section headings, repeating field groups (repeaters), multiple file uploads, rich text, datepicker, time, scale, star ratings, slider, toggle, dynamic fields populated from other forms, password, tags, address, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Multi-Step forms with progress bar<\\/a>: Create beautiful paged forms with rootline and progress indicators. Use conditional logic on page breaks for branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Conditional logic for smart forms<\\/a>: Show or hide fields in your form based on user selections or the role of the user.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in your form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/\\\">Calculated Fields<\\/a>: create basic and complex calculations, and even combine text from multiple fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">Visual form styler with multiple templates<\\/a>: Create multiple form styling templates and assign them to any of your forms. Need Bootstrap form styling? We\\u2019ve got you covered.<\\/li>\\n<li>Entry management: Flexibly and powerfully display, edit, and delete entries from anywhere on your site, and specify who has permission to do so.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/\\\" title=\\\"Display form data with Views\\\">Display form data with Views<\\/a>: Format, filter and display the data submitted in your WordPress forms in custom Views.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/\\\">Graphs and charts for data visualization<\\/a>: Display statistics from form entries, and graph your data in a variety of eye catching styles with graphs that automatically update as new data is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/\\\">User submitted front-end posts and pages<\\/a>: Create and edit WordPress posts, pages, and even custom post types from front-end online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/\\\">Front-end editing<\\/a>: allow users to edit their form entries and posts from the front-end of your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/\\\">Saved and continue partial submissions<\\/a>: logged-in users can save form progress and return later.<\\/li>\\n<li>Form permission settings: limit form visibility based on user role.<\\/li>\\n<li>Conditionally redirect after form submission.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/\\\">Fill out forms automatically<\\/a> with user meta or values from your posts including custom fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/\\\">Import and Export form submissions<\\/a> with CSV.<\\/li>\\n<li>Limit the number of form entries per user, IP, or cookie.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/demos\\/\\\">pre-built form\\/view demo templates<\\/a> as a starting point or a final product.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/\\\" title=\\\"White labeling\\\">White labeling<\\/a>: Replace the Formidable branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/\\\">World Class Support<\\/a>: have questions or need guidance on how to set up your application? We are happy to help. Our purpose with Formidable Forms is to help you <strong>take on bigger projects, earn more clients, and grow your business<\\/strong>.<\\/li>\\n<\\/ul>\\n<p>= Form add-on library =<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\\\" title=\\\"User registration forms\\\">User registration Forms<\\/a>. Register users and create subdomains when using WordPress multisite.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/\\\" title=\\\"Form action automation\\\">Form action automation<\\/a>. Schedule email notifications, SMS messages, and API actions.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/\\\" title=\\\"Digital Signature Forms\\\">Digital Signature Forms<\\/a>. Add a signature field to your form. The user may write their signature with a trackpad\\/mouse or just type it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\\\" title=\\\"Formidable Forms API\\\">Formidable Forms API<\\/a>. Send entry results to any other site that has a Rest API. This includes the option of sending entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/\\\" title=\\\"PayPal Forms\\\">PayPal Forms<\\/a>. Automate your business by collecting instant payments from your clients. Collect information, calculate a total, and send clients on to PayPal.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/\\\" title=\\\"Stripe Forms\\\">Stripe Forms<\\/a>. Any Formidable forms on your site can accept credit card payments without users ever leaving your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/\\\" title=\\\"Authorize.net AIM Forms\\\">Authorize.net AIM Forms<\\/a>. Accept one-time payments directly on your site, using Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/\\\" title=\\\"MailChimp Forms\\\">MailChimp Forms<\\/a>. Add leads to a MailChimp mailing list when they submit forms and update their information along with the entry.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/\\\" title=\\\"Aweber Forms\\\">Aweber Forms<\\/a>. Subscribe users to an AWeber mailing list when they submit a form. AWeber is a powerful email marketing service.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/\\\" title=\\\"Highrise Forms\\\">Highrise Forms<\\/a>. Add your leads to your Highrise CRM account any time a Formidable form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/\\\" title=\\\"Twilio for SMS Forms\\\">Twilio for SMS Forms<\\/a>. Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when form entries are submitted or updated.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/\\\" title=\\\"WPML Forms\\\">WPML Forms<\\/a>. Translate your forms into multiple languages using the Formidable-integrated WPML plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/\\\" title=\\\"Polylang Forms\\\">Polylang Forms<\\/a>. Create bilingual or multilingual forms with help from Polylang.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/\\\" title=\\\"Bootstrap Form Styles\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap styling to all your Formidable forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/\\\" title=\\\"Bootstrap Modal Form\\\">Bootstrap Modal Form<\\/a>. Open forms, views, other shortcodes, or sections of content in a Bootstrap modal popup.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/\\\" title=\\\"Salesforce Forms\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your WordPress forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\\\" title=\\\"Zapier Forms\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.<\\/li>\\n<\\/ul>\\n<p>Learn more at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"Formidable Forms\\\">Formidable Forms<\\/a><\\/p>\\n<p><a href=\\\"https:\\/\\/github.com\\/Strategy11\\/formidable-forms\\\" title=\\\"Contribute on Github\\\">Contribute on Github<\\/a><\\/p>\",\"changelog\":\"<p><h4>v3.03.01 - August 6, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Accept mod operator (%) inside of frm-math processes<\\/li>\\n<li>New: Allow type=return_raw to return an unfiltered value<\\/li>\\n<li>Fix: Don\'t allow the first row to be removed in a repeater when icons are used to add and remove rows<\\/li>\\n<li>Fix: Show all values from a field in a repeating section with the frm-field-value shortcode instead of only the first value<\\/li>\\n<li>Fix: If a file is moved out of the WP file system, show it anyway when editing an entry form with a file upload<\\/li>\\n<li>Fix: Product images were being removed when importing into WooCommerce<\\/li>\\n<li>Fix: When javascript validation and ajax submit are off, the password strength indicator was showing all red after form validation<\\/li>\\n<li>Add more escaping for translated strings<\\/li>\\n<\\/ul>\\n<h4>v3.03 - July 3, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add frm-math shortcode for inline math calculations<\\/li>\\n<li>New: Add password strength meter that appears on the front-end<\\/li>\\n<li>New: Add parent_id filter to frm-stats shortcode<\\/li>\\n<li>Fix: Allow users to save draft even when the submit button is hidden or disabled with conditional logic<\\/li>\\n<li>Fix: The gallery shortcode wasn\'t always showing the images uploaded in a form<\\/li>\\n<li>Fix: Date fields were not triggering the changes correctly. This also reverts the change from previous release that gives date field focus after selecting a date since it wasn\'t cross-browser compatible.<\\/li>\\n<li>Fix: Prevent extra queries for views where no entries are returned<\\/li>\\n<li>Fix: &gt; and &lt; characters were being sanitized in calculations<\\/li>\\n<li>Move the default jQuery UI css from free to pro<\\/li>\\n<\\/ul>\\n<h4>v3.02.01 - June 13, 2018<\\/h4>\\r\\n<ul>\\n<li>New: If the submit button is conditionally hidden\\/disabled, prevent submit from hitting enter<\\/li>\\n<li>Fix: If a dropdown field has a default value selected, validate correctly during javascript validation<\\/li>\\n<li>Fix: Remove outdated sslverify references<\\/li>\\n<li>Fix: Javascript error in IE 11 when javascript validation was turned on in a form with a password field<\\/li>\\n<li>Fix: Javascript error appearing with some themes on the view settings page right after creating a view<\\/li>\\n<li>Fix: If a view is filtered for the current user, don\'t show any entries when a user if logged out. This was showing entries submitted by logged out users.<\\/li>\\n<li>Fix: Add focus back on the date field after a date is selected in datepicker<\\/li>\\n<li>Fix: More accurately check if going back a page before running javascript validation<\\/li>\\n<li>Fix: Don\'t include Formidable file uploads in the WorePress attachment REST API listings<\\/li>\\n<li>Fix: The [formresults id=x google=1] table wasn\'t appearing if the form included a dropdown field with only one option<\\/li>\\n<li>Fix: When multiple file ids are returned with [frm-field-value field_id=x show=id], don\'t include an HTML container<\\/li>\\n<li>Fix: Checkbox fields with separate values were showing the saved value in both entries columns when multiple options were selected<\\/li>\\n<li>Fix: Infinite loop was created when the step in a time field was set to a non-numeric value<\\/li>\\n<li>Fix: Time fields in a repeater on the second page of a form did not always have the correct values selected when editing the entry<\\/li>\\n<\\/ul>\\n<h4>v3.02.02 - June 13, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix: Javascript error was appearing when editing an entry<\\/li>\\n<li>Fix: Multiple \'other\' options were not being saved in a checkbox field<\\/li>\\n<\\/ul>\\n<h4>v3.02 - May 25, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add conditional logic to submit button. This allows for the button to be hidden or disabled when the conditions match or don\'t match. This logic applies to the final button in a form and not the next button for multi page forms.<\\/li>\\n<li>New: Include the parent entry ID in a CSV export of Repeaters.<\\/li>\\n<li>New: Add an option to require a strong password in a password field.<\\/li>\\n<li>Fix: Allow the no entries message in a view to be set to \'0\'<\\/li>\\n<li>Fix: Graph titles that include &amp; now show correctly instead of showing &amp;<\\/li>\\n<li>Fix: When the exclude_fields option was used with multiple fields in the editlink, the option was ignored<\\/li>\\n<\\/ul>\\n<\\/p>\\n\",\"installation\":\"<ol>\\n<li>Go to your Plugins -&gt; Add New page in your WordPress admin<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to create a new form<\\/li>\\n<li>Insert your forms on a page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> in your page template<\\/li>\\n<\\/ol>\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-772x250.png\"},\"stable_tag\":\"3.03.01\",\"contributors\":[\"formidableforms\",\"sswells\",\"srwells\",\"jamie.wahlin\"],\"description\":[\"<p>= The best WordPress form builder plugin for custom forms =\\nFormidable Forms is a flexible and free WordPress forms plugin. Easily create contact forms, polls and surveys, lead generation forms, email forms, and any other forms you imagine. Start with a pre-built contact form template or create totally custom forms. From the smallest sidebar opt-in form to large job and employment application forms, Formidable Forms is built to do it all. Learn more about Formidable Forms at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"FormidableForms.com\\\">FormidableForms.com<\\/a><\\/p>\\n<p>Create a professional WordPress contact form without any code. Get mobile-friendly and responsive forms that look great on any screen size. Additionally, it\'s simple to change the form layout with included layout classes. For more advanced customizations, take control of the form HTML and CSS.<\\/p>\\n<p><a href=\\\"https:\\/\\/formidableforms.com\\/knowledgebase\\/\\\" title=\\\"View form builder Documentation\\\">View form builder Documentation<\\/a><\\/p>\\n<p>= All the features you need for beautiful WordPress forms =\\nCreate unlimited forms with all the essential field types.<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<li>reCaptcha (Invisible or one-click checkbox)<\\/li>\\n<\\/ul>\\n<p>= Form templates =\\nCreate forms in seconds with <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/\\\">pre-built form templates<\\/a>. Or add your own form templates and export the forms to share. A free contact form template is included when you install Formidable Forms. We also have a growing library of <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/\\\">downloadable form templates<\\/a>.<\\/p>\\n<p>= Customize your WordPress forms =\\nWhether you start from scratch or from a form template, customize your forms however you would like.<\\/p>\\n<ul>\\n<li>Send <strong>unlimited form email notifications and autoresponders<\\/strong>.<\\/li>\\n<li>Use <strong>input placeholder text<\\/strong> in form fields that clear when typing starts.<\\/li>\\n<li>Use our ready-made CSS classes (or your own custom CSS classes) to arrange your form fields and create <strong>multi-column forms<\\/strong><\\/li>\\n<li><strong>Modify the form HTML<\\/strong> for your individual needs.<\\/li>\\n<li>Customize the form success message and submit button text.<\\/li>\\n<li>Redirect to another page after submit or show content from a protected page.<\\/li>\\n<\\/ul>\\n<p>= Style your WordPress contact forms with no code =\\nUse the built-in <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">visual form style generator<\\/a> to instantly customize the look and feel of your WordPress forms. With just a few clicks, your forms can be transformed to match your personal style. A single form styling template will be applied to all the forms on your site. But if you decide you need different styles for different forms, Formidable Forms Pro is waiting.<\\/p>\\n<p>= Publish WordPress forms with ease =\\nOnce your WP form is built and designed just the way you like it, publish with an easy-to-use <strong>shortcode builder<\\/strong> UI. Direct links are also available on a blank page for <strong>form previews<\\/strong> and <strong>email surveys<\\/strong>.<\\/p>\\n<p><strong>Honeypot spam protection<\\/strong> is included in every website form. Or add Invisible reCAPTCHA, one-click reCAPTCHA, and Akismet for extra Spam control in your contact forms.<\\/p>\\n<p>= Save every form submission =\\nYou may already know it, but sending emails with your self-hosted WordPress website isn\'t 100% reliable. But every lead captured in your online contact forms is important. Don\'t lose a single one! This is why Formidable saves every contact form submission in your WordPress database and lists them on your Formidable -&gt; Entries page. Now even if a form email notification fails, you won\\u2019t lose a lead.<\\/p>\\n<p>Looking for <strong>GDPR compliance for forms<\\/strong>? No problem. Turn off IP tracking or stop saving form submissions. Or add a checkbox field to your form to collect consent.<\\/p>\\n<p>Need to import your leads to another service like MailChimp? No problem. <strong>Export form leads to a CSV<\\/strong> then open it in Excel or import anywhere.<\\/p>\\n<p>Plus, don\'t lose leads by accidentally deleting a form. <strong>Send forms to the trash<\\/strong> and recover them if needed.<\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8<\\/a><\\/p>\\n<p>= Pro Form Builder Plugin Features =\\nFormidable Forms Pro is an upgrade that adds even more power to your free forms. Multi-page forms, conditional logic, payment form integrations, data management, front-end post submissions for user-generated content, front-end editing, and boat loads more. <\\/p>\\n<p>Other WordPress form builder plugins only let you collect data. But our Pro forms also add options to display form submissions on the front-end of your site. Input, display, edit and filter data on the front-end without any additional plugins. Formidable Forms is a powerful solution for purchase forms, order forms, member directories, user registration forms, event calendars, and more.<\\/p>\\n<ul>\\n<li><strong>Even more field types<\\/strong>: Page breaks, section headings, repeating field groups (repeaters), multiple file uploads, rich text, datepicker, time, scale, star ratings, slider, toggle, dynamic fields populated from other forms, password, tags, address, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Multi-Step forms with progress bar<\\/a>: Create beautiful paged forms with rootline and progress indicators. Use conditional logic on page breaks for branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Conditional logic for smart forms<\\/a>: Show or hide fields in your form based on user selections or the role of the user.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in your form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/\\\">Calculated Fields<\\/a>: create basic and complex calculations, and even combine text from multiple fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">Visual form styler with multiple templates<\\/a>: Create multiple form styling templates and assign them to any of your forms. Need Bootstrap form styling? We\\u2019ve got you covered.<\\/li>\\n<li>Entry management: Flexibly and powerfully display, edit, and delete entries from anywhere on your site, and specify who has permission to do so.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/\\\" title=\\\"Display form data with Views\\\">Display form data with Views<\\/a>: Format, filter and display the data submitted in your WordPress forms in custom Views.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/\\\">Graphs and charts for data visualization<\\/a>: Display statistics from form entries, and graph your data in a variety of eye catching styles with graphs that automatically update as new data is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/\\\">User submitted front-end posts and pages<\\/a>: Create and edit WordPress posts, pages, and even custom post types from front-end online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/\\\">Front-end editing<\\/a>: allow users to edit their form entries and posts from the front-end of your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/\\\">Saved and continue partial submissions<\\/a>: logged-in users can save form progress and return later.<\\/li>\\n<li>Form permission settings: limit form visibility based on user role.<\\/li>\\n<li>Conditionally redirect after form submission.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/\\\">Fill out forms automatically<\\/a> with user meta or values from your posts including custom fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/\\\">Import and Export form submissions<\\/a> with CSV.<\\/li>\\n<li>Limit the number of form entries per user, IP, or cookie.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/demos\\/\\\">pre-built form\\/view demo templates<\\/a> as a starting point or a final product.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/\\\" title=\\\"White labeling\\\">White labeling<\\/a>: Replace the Formidable branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/\\\">World Class Support<\\/a>: have questions or need guidance on how to set up your application? We are happy to help. Our purpose with Formidable Forms is to help you <strong>take on bigger projects, earn more clients, and grow your business<\\/strong>.<\\/li>\\n<\\/ul>\\n<p>= Form add-on library =<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\\\" title=\\\"User registration forms\\\">User registration Forms<\\/a>. Register users and create subdomains when using WordPress multisite.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/\\\" title=\\\"Form action automation\\\">Form action automation<\\/a>. Schedule email notifications, SMS messages, and API actions.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/\\\" title=\\\"Digital Signature Forms\\\">Digital Signature Forms<\\/a>. Add a signature field to your form. The user may write their signature with a trackpad\\/mouse or just type it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\\\" title=\\\"Formidable Forms API\\\">Formidable Forms API<\\/a>. Send entry results to any other site that has a Rest API. This includes the option of sending entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/\\\" title=\\\"PayPal Forms\\\">PayPal Forms<\\/a>. Automate your business by collecting instant payments from your clients. Collect information, calculate a total, and send clients on to PayPal.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/\\\" title=\\\"Stripe Forms\\\">Stripe Forms<\\/a>. Any Formidable forms on your site can accept credit card payments without users ever leaving your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/\\\" title=\\\"Authorize.net AIM Forms\\\">Authorize.net AIM Forms<\\/a>. Accept one-time payments directly on your site, using Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/\\\" title=\\\"MailChimp Forms\\\">MailChimp Forms<\\/a>. Add leads to a MailChimp mailing list when they submit forms and update their information along with the entry.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/\\\" title=\\\"Aweber Forms\\\">Aweber Forms<\\/a>. Subscribe users to an AWeber mailing list when they submit a form. AWeber is a powerful email marketing service.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/\\\" title=\\\"Highrise Forms\\\">Highrise Forms<\\/a>. Add your leads to your Highrise CRM account any time a Formidable form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/\\\" title=\\\"Twilio for SMS Forms\\\">Twilio for SMS Forms<\\/a>. Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when form entries are submitted or updated.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/\\\" title=\\\"WPML Forms\\\">WPML Forms<\\/a>. Translate your forms into multiple languages using the Formidable-integrated WPML plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/\\\" title=\\\"Polylang Forms\\\">Polylang Forms<\\/a>. Create bilingual or multilingual forms with help from Polylang.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/\\\" title=\\\"Bootstrap Form Styles\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap styling to all your Formidable forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/\\\" title=\\\"Bootstrap Modal Form\\\">Bootstrap Modal Form<\\/a>. Open forms, views, other shortcodes, or sections of content in a Bootstrap modal popup.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/\\\" title=\\\"Salesforce Forms\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your WordPress forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\\\" title=\\\"Zapier Forms\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.<\\/li>\\n<\\/ul>\\n<p>Learn more at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"Formidable Forms\\\">Formidable Forms<\\/a><\\/p>\\n<p><a href=\\\"https:\\/\\/github.com\\/Strategy11\\/formidable-forms\\\" title=\\\"Contribute on Github\\\">Contribute on Github<\\/a><\\/p>\"],\"changelog\":[\"<p><h4>v3.03.01 - August 6, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Accept mod operator (%) inside of frm-math processes<\\/li>\\n<li>New: Allow type=return_raw to return an unfiltered value<\\/li>\\n<li>Fix: Don\'t allow the first row to be removed in a repeater when icons are used to add and remove rows<\\/li>\\n<li>Fix: Show all values from a field in a repeating section with the frm-field-value shortcode instead of only the first value<\\/li>\\n<li>Fix: If a file is moved out of the WP file system, show it anyway when editing an entry form with a file upload<\\/li>\\n<li>Fix: Product images were being removed when importing into WooCommerce<\\/li>\\n<li>Fix: When javascript validation and ajax submit are off, the password strength indicator was showing all red after form validation<\\/li>\\n<li>Add more escaping for translated strings<\\/li>\\n<\\/ul>\\n<h4>v3.03 - July 3, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add frm-math shortcode for inline math calculations<\\/li>\\n<li>New: Add password strength meter that appears on the front-end<\\/li>\\n<li>New: Add parent_id filter to frm-stats shortcode<\\/li>\\n<li>Fix: Allow users to save draft even when the submit button is hidden or disabled with conditional logic<\\/li>\\n<li>Fix: The gallery shortcode wasn\'t always showing the images uploaded in a form<\\/li>\\n<li>Fix: Date fields were not triggering the changes correctly. This also reverts the change from previous release that gives date field focus after selecting a date since it wasn\'t cross-browser compatible.<\\/li>\\n<li>Fix: Prevent extra queries for views where no entries are returned<\\/li>\\n<li>Fix: &gt; and &lt; characters were being sanitized in calculations<\\/li>\\n<li>Move the default jQuery UI css from free to pro<\\/li>\\n<\\/ul>\\n<h4>v3.02.01 - June 13, 2018<\\/h4>\\r\\n<ul>\\n<li>New: If the submit button is conditionally hidden\\/disabled, prevent submit from hitting enter<\\/li>\\n<li>Fix: If a dropdown field has a default value selected, validate correctly during javascript validation<\\/li>\\n<li>Fix: Remove outdated sslverify references<\\/li>\\n<li>Fix: Javascript error in IE 11 when javascript validation was turned on in a form with a password field<\\/li>\\n<li>Fix: Javascript error appearing with some themes on the view settings page right after creating a view<\\/li>\\n<li>Fix: If a view is filtered for the current user, don\'t show any entries when a user if logged out. This was showing entries submitted by logged out users.<\\/li>\\n<li>Fix: Add focus back on the date field after a date is selected in datepicker<\\/li>\\n<li>Fix: More accurately check if going back a page before running javascript validation<\\/li>\\n<li>Fix: Don\'t include Formidable file uploads in the WorePress attachment REST API listings<\\/li>\\n<li>Fix: The [formresults id=x google=1] table wasn\'t appearing if the form included a dropdown field with only one option<\\/li>\\n<li>Fix: When multiple file ids are returned with [frm-field-value field_id=x show=id], don\'t include an HTML container<\\/li>\\n<li>Fix: Checkbox fields with separate values were showing the saved value in both entries columns when multiple options were selected<\\/li>\\n<li>Fix: Infinite loop was created when the step in a time field was set to a non-numeric value<\\/li>\\n<li>Fix: Time fields in a repeater on the second page of a form did not always have the correct values selected when editing the entry<\\/li>\\n<\\/ul>\\n<h4>v3.02.02 - June 13, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix: Javascript error was appearing when editing an entry<\\/li>\\n<li>Fix: Multiple \'other\' options were not being saved in a checkbox field<\\/li>\\n<\\/ul>\\n<h4>v3.02 - May 25, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add conditional logic to submit button. This allows for the button to be hidden or disabled when the conditions match or don\'t match. This logic applies to the final button in a form and not the next button for multi page forms.<\\/li>\\n<li>New: Include the parent entry ID in a CSV export of Repeaters.<\\/li>\\n<li>New: Add an option to require a strong password in a password field.<\\/li>\\n<li>Fix: Allow the no entries message in a view to be set to \'0\'<\\/li>\\n<li>Fix: Graph titles that include &amp; now show correctly instead of showing &amp;<\\/li>\\n<li>Fix: When the exclude_fields option was used with multiple fields in the editlink, the option was ignored<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"],\"installation\":[\"<ol>\\n<li>Go to your Plugins -&gt; Add New page in your WordPress admin<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to create a new form<\\/li>\\n<li>Insert your forms on a page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> in your page template<\\/li>\\n<\\/ol>\"]}\";}','no'),(2050,'69e1242493de51d95065a57b12a1609b','a:2:{s:7:\"timeout\";i:1536886605;s:5:\"value\";s:38695:\"{\"new_version\":\"3.03.02\",\"stable_version\":\"3.03.02\",\"name\":\"Formidable Pro\",\"slug\":\"formidable-pro\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro\\/?changelog=1\",\"last_updated\":\"2018-09-12 11:55:52\",\"homepage\":\"https:\\/\\/formidableforms.com\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzNjk0NDIwNTpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDozNDg5N2I4MTE0OGJhY2Q4MWMzZjI4YWZkNmQ0ZWUwODpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzNjk0NDIwNTpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDozNDg5N2I4MTE0OGJhY2Q4MWMzZjI4YWZkNmQ0ZWUwODpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"sections\":{\"description\":\"<p>= The best WordPress form builder plugin for custom forms =\\nFormidable Forms is a flexible and free WordPress forms plugin. Easily create contact forms, polls and surveys, lead generation forms, email forms, and any other forms you imagine. Start with a pre-built contact form template or create totally custom forms. From the smallest sidebar opt-in form to large job and employment application forms, Formidable Forms is built to do it all. Learn more about Formidable Forms at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"FormidableForms.com\\\">FormidableForms.com<\\/a><\\/p>\\n<p>Create a professional WordPress contact form without any code. Get mobile-friendly and responsive forms that look great on any screen size. Additionally, it\'s simple to change the form layout with included layout classes. For more advanced customizations, take control of the form HTML and CSS.<\\/p>\\n<p><a href=\\\"https:\\/\\/formidableforms.com\\/knowledgebase\\/\\\" title=\\\"View form builder Documentation\\\">View form builder Documentation<\\/a><\\/p>\\n<p>= All the features you need for beautiful WordPress forms =\\nCreate unlimited forms with all the essential field types.<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<li>reCaptcha (Invisible or one-click checkbox)<\\/li>\\n<\\/ul>\\n<p>= Form templates =\\nCreate forms in seconds with <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/\\\">pre-built form templates<\\/a>. Or add your own form templates and export the forms to share. A free contact form template is included when you install Formidable Forms. We also have a growing library of <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/\\\">downloadable form templates<\\/a>.<\\/p>\\n<p>= Customize your WordPress forms =\\nWhether you start from scratch or from a form template, customize your forms however you would like.<\\/p>\\n<ul>\\n<li>Send <strong>unlimited form email notifications and autoresponders<\\/strong>.<\\/li>\\n<li>Use <strong>input placeholder text<\\/strong> in form fields that clear when typing starts.<\\/li>\\n<li>Use our ready-made CSS classes (or your own custom CSS classes) to arrange your form fields and create <strong>multi-column forms<\\/strong><\\/li>\\n<li><strong>Modify the form HTML<\\/strong> for your individual needs.<\\/li>\\n<li>Customize the form success message and submit button text.<\\/li>\\n<li>Redirect to another page after submit or show content from a protected page.<\\/li>\\n<\\/ul>\\n<p>= Style your WordPress contact forms with no code =\\nUse the built-in <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">visual form style generator<\\/a> to instantly customize the look and feel of your WordPress forms. With just a few clicks, your forms can be transformed to match your personal style. A single form styling template will be applied to all the forms on your site. But if you decide you need different styles for different forms, Formidable Forms Pro is waiting.<\\/p>\\n<p>= Publish WordPress forms with ease =\\nOnce your WP form is built and designed just the way you like it, publish with an easy-to-use <strong>shortcode builder<\\/strong> UI. Direct links are also available on a blank page for <strong>form previews<\\/strong> and <strong>email surveys<\\/strong>.<\\/p>\\n<p><strong>Honeypot spam protection<\\/strong> is included in every website form. Or add Invisible reCAPTCHA, one-click reCAPTCHA, and Akismet for extra Spam control in your contact forms.<\\/p>\\n<p>= Save every form submission =\\nYou may already know it, but sending emails with your self-hosted WordPress website isn\'t 100% reliable. But every lead captured in your online contact forms is important. Don\'t lose a single one! This is why Formidable saves every contact form submission in your WordPress database and lists them on your Formidable -&gt; Entries page. Now even if a form email notification fails, you won\\u2019t lose a lead.<\\/p>\\n<p>Looking for <strong>GDPR compliance for forms<\\/strong>? No problem. Turn off IP tracking or stop saving form submissions. Or add a checkbox field to your form to collect consent.<\\/p>\\n<p>Need to import your leads to another service like MailChimp? No problem. <strong>Export form leads to a CSV<\\/strong> then open it in Excel or import anywhere.<\\/p>\\n<p>Plus, don\'t lose leads by accidentally deleting a form. <strong>Send forms to the trash<\\/strong> and recover them if needed.<\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8<\\/a><\\/p>\\n<p>= Pro Form Builder Plugin Features =\\nFormidable Forms Pro is an upgrade that adds even more power to your free forms. Multi-page forms, conditional logic, payment form integrations, data management, front-end post submissions for user-generated content, front-end editing, and boat loads more. <\\/p>\\n<p>Other WordPress form builder plugins only let you collect data. But our Pro forms also add options to display form submissions on the front-end of your site. Input, display, edit and filter data on the front-end without any additional plugins. Formidable Forms is a powerful solution for purchase forms, order forms, member directories, user registration forms, event calendars, and more.<\\/p>\\n<ul>\\n<li><strong>Even more field types<\\/strong>: Page breaks, section headings, repeating field groups (repeaters), multiple file uploads, rich text, datepicker, time, scale, star ratings, slider, toggle, dynamic fields populated from other forms, password, tags, address, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Multi-Step forms with progress bar<\\/a>: Create beautiful paged forms with rootline and progress indicators. Use conditional logic on page breaks for branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Conditional logic for smart forms<\\/a>: Show or hide fields in your form based on user selections or the role of the user.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in your form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/\\\">Calculated Fields<\\/a>: create basic and complex calculations, and even combine text from multiple fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">Visual form styler with multiple templates<\\/a>: Create multiple form styling templates and assign them to any of your forms. Need Bootstrap form styling? We\\u2019ve got you covered.<\\/li>\\n<li>Entry management: Flexibly and powerfully display, edit, and delete entries from anywhere on your site, and specify who has permission to do so.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/\\\" title=\\\"Display form data with Views\\\">Display form data with Views<\\/a>: Format, filter and display the data submitted in your WordPress forms in custom Views.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/\\\">Graphs and charts for data visualization<\\/a>: Display statistics from form entries, and graph your data in a variety of eye catching styles with graphs that automatically update as new data is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/\\\">User submitted front-end posts and pages<\\/a>: Create and edit WordPress posts, pages, and even custom post types from front-end online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/\\\">Front-end editing<\\/a>: allow users to edit their form entries and posts from the front-end of your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/\\\">Saved and continue partial submissions<\\/a>: logged-in users can save form progress and return later.<\\/li>\\n<li>Form permission settings: limit form visibility based on user role.<\\/li>\\n<li>Conditionally redirect after form submission.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/\\\">Fill out forms automatically<\\/a> with user meta or values from your posts including custom fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/\\\">Import and Export form submissions<\\/a> with CSV.<\\/li>\\n<li>Limit the number of form entries per user, IP, or cookie.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/demos\\/\\\">pre-built form\\/view demo templates<\\/a> as a starting point or a final product.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/\\\" title=\\\"White labeling\\\">White labeling<\\/a>: Replace the Formidable branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/\\\">World Class Support<\\/a>: have questions or need guidance on how to set up your application? We are happy to help. Our purpose with Formidable Forms is to help you <strong>take on bigger projects, earn more clients, and grow your business<\\/strong>.<\\/li>\\n<\\/ul>\\n<p>= Form add-on library =<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\\\" title=\\\"User registration forms\\\">User registration Forms<\\/a>. Register users and create subdomains when using WordPress multisite.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/\\\" title=\\\"Form action automation\\\">Form action automation<\\/a>. Schedule email notifications, SMS messages, and API actions.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/\\\" title=\\\"Digital Signature Forms\\\">Digital Signature Forms<\\/a>. Add a signature field to your form. The user may write their signature with a trackpad\\/mouse or just type it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\\\" title=\\\"Formidable Forms API\\\">Formidable Forms API<\\/a>. Send entry results to any other site that has a Rest API. This includes the option of sending entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/\\\" title=\\\"PayPal Forms\\\">PayPal Forms<\\/a>. Automate your business by collecting instant payments from your clients. Collect information, calculate a total, and send clients on to PayPal.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/\\\" title=\\\"Stripe Forms\\\">Stripe Forms<\\/a>. Any Formidable forms on your site can accept credit card payments without users ever leaving your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/\\\" title=\\\"Authorize.net AIM Forms\\\">Authorize.net AIM Forms<\\/a>. Accept one-time payments directly on your site, using Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/\\\" title=\\\"MailChimp Forms\\\">MailChimp Forms<\\/a>. Add leads to a MailChimp mailing list when they submit forms and update their information along with the entry.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/\\\" title=\\\"Aweber Forms\\\">Aweber Forms<\\/a>. Subscribe users to an AWeber mailing list when they submit a form. AWeber is a powerful email marketing service.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/\\\" title=\\\"Highrise Forms\\\">Highrise Forms<\\/a>. Add your leads to your Highrise CRM account any time a Formidable form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/\\\" title=\\\"Twilio for SMS Forms\\\">Twilio for SMS Forms<\\/a>. Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when form entries are submitted or updated.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/\\\" title=\\\"WPML Forms\\\">WPML Forms<\\/a>. Translate your forms into multiple languages using the Formidable-integrated WPML plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/\\\" title=\\\"Polylang Forms\\\">Polylang Forms<\\/a>. Create bilingual or multilingual forms with help from Polylang.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/\\\" title=\\\"Bootstrap Form Styles\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap styling to all your Formidable forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/\\\" title=\\\"Bootstrap Modal Form\\\">Bootstrap Modal Form<\\/a>. Open forms, views, other shortcodes, or sections of content in a Bootstrap modal popup.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/\\\" title=\\\"Salesforce Forms\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your WordPress forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\\\" title=\\\"Zapier Forms\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.<\\/li>\\n<\\/ul>\\n<p>Learn more at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"Formidable Forms\\\">Formidable Forms<\\/a><\\/p>\\n<p><a href=\\\"https:\\/\\/github.com\\/Strategy11\\/formidable-forms\\\" title=\\\"Contribute on Github\\\">Contribute on Github<\\/a><\\/p>\",\"changelog\":\"<p><h4>v3.03.02 - September 12, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow view ordering by entry key since this is faster than ordering by a field value.<\\/li>\\n<li>Tweak: If no value in the field used for a calculation, show nothing instead of 0.<\\/li>\\n<li>Tweak: Add lookup_field to array included in frm_filtered_lookup_options hook<\\/li>\\n<li>Fix: Dates weren\'t validating correctly with end year \'1\' instead of \'+1\'<\\/li>\\n<li>Fix: A combination of default values and conditional logic for Other fields was a causing javascript error. Now if an other field has a default value and conditional logic, the default value it correctly set when the field is displayed.<\\/li>\\n<li>Fix: Javascript errors were appearing with some date code customizations.<\\/li>\\n<li>Fix: Hide the first remove button in a repeater when the form styling is off.<\\/li>\\n<\\/ul>\\n<h4>v3.03.01 - August 6, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Accept mod operator (%) inside of frm-math processes<\\/li>\\n<li>New: Allow type=return_raw to return an unfiltered value<\\/li>\\n<li>Fix: Don\'t allow the first row to be removed in a repeater when icons are used to add and remove rows<\\/li>\\n<li>Fix: Show all values from a field in a repeating section with the frm-field-value shortcode instead of only the first value<\\/li>\\n<li>Fix: If a file is moved out of the WP file system, show it anyway when editing an entry form with a file upload<\\/li>\\n<li>Fix: Product images were being removed when importing into WooCommerce<\\/li>\\n<li>Fix: When javascript validation and ajax submit are off, the password strength indicator was showing all red after form validation<\\/li>\\n<li>Add more escaping for translated strings<\\/li>\\n<\\/ul>\\n<h4>v3.03 - July 3, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add frm-math shortcode for inline math calculations<\\/li>\\n<li>New: Add password strength meter that appears on the front-end<\\/li>\\n<li>New: Add parent_id filter to frm-stats shortcode<\\/li>\\n<li>Fix: Allow users to save draft even when the submit button is hidden or disabled with conditional logic<\\/li>\\n<li>Fix: The gallery shortcode wasn\'t always showing the images uploaded in a form<\\/li>\\n<li>Fix: Date fields were not triggering the changes correctly. This also reverts the change from previous release that gives date field focus after selecting a date since it wasn\'t cross-browser compatible.<\\/li>\\n<li>Fix: Prevent extra queries for views where no entries are returned<\\/li>\\n<li>Fix: &gt; and &lt; characters were being sanitized in calculations<\\/li>\\n<li>Move the default jQuery UI css from free to pro<\\/li>\\n<\\/ul>\\n<h4>v3.02.01 - June 13, 2018<\\/h4>\\r\\n<ul>\\n<li>New: If the submit button is conditionally hidden\\/disabled, prevent submit from hitting enter<\\/li>\\n<li>Fix: If a dropdown field has a default value selected, validate correctly during javascript validation<\\/li>\\n<li>Fix: Remove outdated sslverify references<\\/li>\\n<li>Fix: Javascript error in IE 11 when javascript validation was turned on in a form with a password field<\\/li>\\n<li>Fix: Javascript error appearing with some themes on the view settings page right after creating a view<\\/li>\\n<li>Fix: If a view is filtered for the current user, don\'t show any entries when a user if logged out. This was showing entries submitted by logged out users.<\\/li>\\n<li>Fix: Add focus back on the date field after a date is selected in datepicker<\\/li>\\n<li>Fix: More accurately check if going back a page before running javascript validation<\\/li>\\n<li>Fix: Don\'t include Formidable file uploads in the WorePress attachment REST API listings<\\/li>\\n<li>Fix: The [formresults id=x google=1] table wasn\'t appearing if the form included a dropdown field with only one option<\\/li>\\n<li>Fix: When multiple file ids are returned with [frm-field-value field_id=x show=id], don\'t include an HTML container<\\/li>\\n<li>Fix: Checkbox fields with separate values were showing the saved value in both entries columns when multiple options were selected<\\/li>\\n<li>Fix: Infinite loop was created when the step in a time field was set to a non-numeric value<\\/li>\\n<li>Fix: Time fields in a repeater on the second page of a form did not always have the correct values selected when editing the entry<\\/li>\\n<\\/ul>\\n<h4>v3.02.02 - June 13, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix: Javascript error was appearing when editing an entry<\\/li>\\n<li>Fix: Multiple \'other\' options were not being saved in a checkbox field<\\/li>\\n<\\/ul>\\n<\\/p>\\n\",\"installation\":\"<ol>\\n<li>Go to your Plugins -&gt; Add New page in your WordPress admin<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to create a new form<\\/li>\\n<li>Insert your forms on a page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> in your page template<\\/li>\\n<\\/ol>\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-772x250.png\"},\"stable_tag\":\"3.03.01\",\"contributors\":[\"formidableforms\",\"sswells\",\"srwells\",\"jamie.wahlin\"],\"description\":[\"<p>= The best WordPress form builder plugin for custom forms =\\nFormidable Forms is a flexible and free WordPress forms plugin. Easily create contact forms, polls and surveys, lead generation forms, email forms, and any other forms you imagine. Start with a pre-built contact form template or create totally custom forms. From the smallest sidebar opt-in form to large job and employment application forms, Formidable Forms is built to do it all. Learn more about Formidable Forms at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"FormidableForms.com\\\">FormidableForms.com<\\/a><\\/p>\\n<p>Create a professional WordPress contact form without any code. Get mobile-friendly and responsive forms that look great on any screen size. Additionally, it\'s simple to change the form layout with included layout classes. For more advanced customizations, take control of the form HTML and CSS.<\\/p>\\n<p><a href=\\\"https:\\/\\/formidableforms.com\\/knowledgebase\\/\\\" title=\\\"View form builder Documentation\\\">View form builder Documentation<\\/a><\\/p>\\n<p>= All the features you need for beautiful WordPress forms =\\nCreate unlimited forms with all the essential field types.<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<li>reCaptcha (Invisible or one-click checkbox)<\\/li>\\n<\\/ul>\\n<p>= Form templates =\\nCreate forms in seconds with <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/\\\">pre-built form templates<\\/a>. Or add your own form templates and export the forms to share. A free contact form template is included when you install Formidable Forms. We also have a growing library of <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/\\\">downloadable form templates<\\/a>.<\\/p>\\n<p>= Customize your WordPress forms =\\nWhether you start from scratch or from a form template, customize your forms however you would like.<\\/p>\\n<ul>\\n<li>Send <strong>unlimited form email notifications and autoresponders<\\/strong>.<\\/li>\\n<li>Use <strong>input placeholder text<\\/strong> in form fields that clear when typing starts.<\\/li>\\n<li>Use our ready-made CSS classes (or your own custom CSS classes) to arrange your form fields and create <strong>multi-column forms<\\/strong><\\/li>\\n<li><strong>Modify the form HTML<\\/strong> for your individual needs.<\\/li>\\n<li>Customize the form success message and submit button text.<\\/li>\\n<li>Redirect to another page after submit or show content from a protected page.<\\/li>\\n<\\/ul>\\n<p>= Style your WordPress contact forms with no code =\\nUse the built-in <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">visual form style generator<\\/a> to instantly customize the look and feel of your WordPress forms. With just a few clicks, your forms can be transformed to match your personal style. A single form styling template will be applied to all the forms on your site. But if you decide you need different styles for different forms, Formidable Forms Pro is waiting.<\\/p>\\n<p>= Publish WordPress forms with ease =\\nOnce your WP form is built and designed just the way you like it, publish with an easy-to-use <strong>shortcode builder<\\/strong> UI. Direct links are also available on a blank page for <strong>form previews<\\/strong> and <strong>email surveys<\\/strong>.<\\/p>\\n<p><strong>Honeypot spam protection<\\/strong> is included in every website form. Or add Invisible reCAPTCHA, one-click reCAPTCHA, and Akismet for extra Spam control in your contact forms.<\\/p>\\n<p>= Save every form submission =\\nYou may already know it, but sending emails with your self-hosted WordPress website isn\'t 100% reliable. But every lead captured in your online contact forms is important. Don\'t lose a single one! This is why Formidable saves every contact form submission in your WordPress database and lists them on your Formidable -&gt; Entries page. Now even if a form email notification fails, you won\\u2019t lose a lead.<\\/p>\\n<p>Looking for <strong>GDPR compliance for forms<\\/strong>? No problem. Turn off IP tracking or stop saving form submissions. Or add a checkbox field to your form to collect consent.<\\/p>\\n<p>Need to import your leads to another service like MailChimp? No problem. <strong>Export form leads to a CSV<\\/strong> then open it in Excel or import anywhere.<\\/p>\\n<p>Plus, don\'t lose leads by accidentally deleting a form. <strong>Send forms to the trash<\\/strong> and recover them if needed.<\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8<\\/a><\\/p>\\n<p>= Pro Form Builder Plugin Features =\\nFormidable Forms Pro is an upgrade that adds even more power to your free forms. Multi-page forms, conditional logic, payment form integrations, data management, front-end post submissions for user-generated content, front-end editing, and boat loads more. <\\/p>\\n<p>Other WordPress form builder plugins only let you collect data. But our Pro forms also add options to display form submissions on the front-end of your site. Input, display, edit and filter data on the front-end without any additional plugins. Formidable Forms is a powerful solution for purchase forms, order forms, member directories, user registration forms, event calendars, and more.<\\/p>\\n<ul>\\n<li><strong>Even more field types<\\/strong>: Page breaks, section headings, repeating field groups (repeaters), multiple file uploads, rich text, datepicker, time, scale, star ratings, slider, toggle, dynamic fields populated from other forms, password, tags, address, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Multi-Step forms with progress bar<\\/a>: Create beautiful paged forms with rootline and progress indicators. Use conditional logic on page breaks for branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Conditional logic for smart forms<\\/a>: Show or hide fields in your form based on user selections or the role of the user.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in your form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/\\\">Calculated Fields<\\/a>: create basic and complex calculations, and even combine text from multiple fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">Visual form styler with multiple templates<\\/a>: Create multiple form styling templates and assign them to any of your forms. Need Bootstrap form styling? We\\u2019ve got you covered.<\\/li>\\n<li>Entry management: Flexibly and powerfully display, edit, and delete entries from anywhere on your site, and specify who has permission to do so.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/\\\" title=\\\"Display form data with Views\\\">Display form data with Views<\\/a>: Format, filter and display the data submitted in your WordPress forms in custom Views.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/\\\">Graphs and charts for data visualization<\\/a>: Display statistics from form entries, and graph your data in a variety of eye catching styles with graphs that automatically update as new data is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/\\\">User submitted front-end posts and pages<\\/a>: Create and edit WordPress posts, pages, and even custom post types from front-end online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/\\\">Front-end editing<\\/a>: allow users to edit their form entries and posts from the front-end of your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/\\\">Saved and continue partial submissions<\\/a>: logged-in users can save form progress and return later.<\\/li>\\n<li>Form permission settings: limit form visibility based on user role.<\\/li>\\n<li>Conditionally redirect after form submission.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/\\\">Fill out forms automatically<\\/a> with user meta or values from your posts including custom fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/\\\">Import and Export form submissions<\\/a> with CSV.<\\/li>\\n<li>Limit the number of form entries per user, IP, or cookie.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/demos\\/\\\">pre-built form\\/view demo templates<\\/a> as a starting point or a final product.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/\\\" title=\\\"White labeling\\\">White labeling<\\/a>: Replace the Formidable branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/\\\">World Class Support<\\/a>: have questions or need guidance on how to set up your application? We are happy to help. Our purpose with Formidable Forms is to help you <strong>take on bigger projects, earn more clients, and grow your business<\\/strong>.<\\/li>\\n<\\/ul>\\n<p>= Form add-on library =<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\\\" title=\\\"User registration forms\\\">User registration Forms<\\/a>. Register users and create subdomains when using WordPress multisite.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/\\\" title=\\\"Form action automation\\\">Form action automation<\\/a>. Schedule email notifications, SMS messages, and API actions.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/\\\" title=\\\"Digital Signature Forms\\\">Digital Signature Forms<\\/a>. Add a signature field to your form. The user may write their signature with a trackpad\\/mouse or just type it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\\\" title=\\\"Formidable Forms API\\\">Formidable Forms API<\\/a>. Send entry results to any other site that has a Rest API. This includes the option of sending entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/\\\" title=\\\"PayPal Forms\\\">PayPal Forms<\\/a>. Automate your business by collecting instant payments from your clients. Collect information, calculate a total, and send clients on to PayPal.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/\\\" title=\\\"Stripe Forms\\\">Stripe Forms<\\/a>. Any Formidable forms on your site can accept credit card payments without users ever leaving your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/\\\" title=\\\"Authorize.net AIM Forms\\\">Authorize.net AIM Forms<\\/a>. Accept one-time payments directly on your site, using Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/\\\" title=\\\"MailChimp Forms\\\">MailChimp Forms<\\/a>. Add leads to a MailChimp mailing list when they submit forms and update their information along with the entry.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/\\\" title=\\\"Aweber Forms\\\">Aweber Forms<\\/a>. Subscribe users to an AWeber mailing list when they submit a form. AWeber is a powerful email marketing service.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/\\\" title=\\\"Highrise Forms\\\">Highrise Forms<\\/a>. Add your leads to your Highrise CRM account any time a Formidable form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/\\\" title=\\\"Twilio for SMS Forms\\\">Twilio for SMS Forms<\\/a>. Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when form entries are submitted or updated.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/\\\" title=\\\"WPML Forms\\\">WPML Forms<\\/a>. Translate your forms into multiple languages using the Formidable-integrated WPML plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/\\\" title=\\\"Polylang Forms\\\">Polylang Forms<\\/a>. Create bilingual or multilingual forms with help from Polylang.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/\\\" title=\\\"Bootstrap Form Styles\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap styling to all your Formidable forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/\\\" title=\\\"Bootstrap Modal Form\\\">Bootstrap Modal Form<\\/a>. Open forms, views, other shortcodes, or sections of content in a Bootstrap modal popup.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/\\\" title=\\\"Salesforce Forms\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your WordPress forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\\\" title=\\\"Zapier Forms\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.<\\/li>\\n<\\/ul>\\n<p>Learn more at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"Formidable Forms\\\">Formidable Forms<\\/a><\\/p>\\n<p><a href=\\\"https:\\/\\/github.com\\/Strategy11\\/formidable-forms\\\" title=\\\"Contribute on Github\\\">Contribute on Github<\\/a><\\/p>\"],\"changelog\":[\"<p><h4>v3.03.02 - September 12, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow view ordering by entry key since this is faster than ordering by a field value.<\\/li>\\n<li>Tweak: If no value in the field used for a calculation, show nothing instead of 0.<\\/li>\\n<li>Tweak: Add lookup_field to array included in frm_filtered_lookup_options hook<\\/li>\\n<li>Fix: Dates weren\'t validating correctly with end year \'1\' instead of \'+1\'<\\/li>\\n<li>Fix: A combination of default values and conditional logic for Other fields was a causing javascript error. Now if an other field has a default value and conditional logic, the default value it correctly set when the field is displayed.<\\/li>\\n<li>Fix: Javascript errors were appearing with some date code customizations.<\\/li>\\n<li>Fix: Hide the first remove button in a repeater when the form styling is off.<\\/li>\\n<\\/ul>\\n<h4>v3.03.01 - August 6, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Accept mod operator (%) inside of frm-math processes<\\/li>\\n<li>New: Allow type=return_raw to return an unfiltered value<\\/li>\\n<li>Fix: Don\'t allow the first row to be removed in a repeater when icons are used to add and remove rows<\\/li>\\n<li>Fix: Show all values from a field in a repeating section with the frm-field-value shortcode instead of only the first value<\\/li>\\n<li>Fix: If a file is moved out of the WP file system, show it anyway when editing an entry form with a file upload<\\/li>\\n<li>Fix: Product images were being removed when importing into WooCommerce<\\/li>\\n<li>Fix: When javascript validation and ajax submit are off, the password strength indicator was showing all red after form validation<\\/li>\\n<li>Add more escaping for translated strings<\\/li>\\n<\\/ul>\\n<h4>v3.03 - July 3, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add frm-math shortcode for inline math calculations<\\/li>\\n<li>New: Add password strength meter that appears on the front-end<\\/li>\\n<li>New: Add parent_id filter to frm-stats shortcode<\\/li>\\n<li>Fix: Allow users to save draft even when the submit button is hidden or disabled with conditional logic<\\/li>\\n<li>Fix: The gallery shortcode wasn\'t always showing the images uploaded in a form<\\/li>\\n<li>Fix: Date fields were not triggering the changes correctly. This also reverts the change from previous release that gives date field focus after selecting a date since it wasn\'t cross-browser compatible.<\\/li>\\n<li>Fix: Prevent extra queries for views where no entries are returned<\\/li>\\n<li>Fix: &gt; and &lt; characters were being sanitized in calculations<\\/li>\\n<li>Move the default jQuery UI css from free to pro<\\/li>\\n<\\/ul>\\n<h4>v3.02.01 - June 13, 2018<\\/h4>\\r\\n<ul>\\n<li>New: If the submit button is conditionally hidden\\/disabled, prevent submit from hitting enter<\\/li>\\n<li>Fix: If a dropdown field has a default value selected, validate correctly during javascript validation<\\/li>\\n<li>Fix: Remove outdated sslverify references<\\/li>\\n<li>Fix: Javascript error in IE 11 when javascript validation was turned on in a form with a password field<\\/li>\\n<li>Fix: Javascript error appearing with some themes on the view settings page right after creating a view<\\/li>\\n<li>Fix: If a view is filtered for the current user, don\'t show any entries when a user if logged out. This was showing entries submitted by logged out users.<\\/li>\\n<li>Fix: Add focus back on the date field after a date is selected in datepicker<\\/li>\\n<li>Fix: More accurately check if going back a page before running javascript validation<\\/li>\\n<li>Fix: Don\'t include Formidable file uploads in the WorePress attachment REST API listings<\\/li>\\n<li>Fix: The [formresults id=x google=1] table wasn\'t appearing if the form included a dropdown field with only one option<\\/li>\\n<li>Fix: When multiple file ids are returned with [frm-field-value field_id=x show=id], don\'t include an HTML container<\\/li>\\n<li>Fix: Checkbox fields with separate values were showing the saved value in both entries columns when multiple options were selected<\\/li>\\n<li>Fix: Infinite loop was created when the step in a time field was set to a non-numeric value<\\/li>\\n<li>Fix: Time fields in a repeater on the second page of a form did not always have the correct values selected when editing the entry<\\/li>\\n<\\/ul>\\n<h4>v3.02.02 - June 13, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix: Javascript error was appearing when editing an entry<\\/li>\\n<li>Fix: Multiple \'other\' options were not being saved in a checkbox field<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"],\"installation\":[\"<ol>\\n<li>Go to your Plugins -&gt; Add New page in your WordPress admin<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to create a new form<\\/li>\\n<li>Insert your forms on a page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> in your page template<\\/li>\\n<\\/ol>\"]}\";}','no'),(2280,'85b429446490ded110acdd5a8d42c3e9','a:2:{s:7:\"timeout\";i:1539785545;s:5:\"value\";s:5829:\"{\"new_version\":\"1.06\",\"stable_version\":\"1.06\",\"name\":\"Formidable API\",\"slug\":\"formidable-api\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/?changelog=1\",\"last_updated\":\"2018-10-08 14:40:38\",\"homepage\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzOTg0MzE0NTozZGNkMGJiYzE0OTVkYzg3YTMxYzdiZDZkYmY2MmZiMzoxNjgwNzI6MjljNDE0MTU4ZmZkZGZlNzhlY2JkYjRmZTlmOGY5NjY6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzOTg0MzE0NTozZGNkMGJiYzE0OTVkYzg3YTMxYzdiZDZkYmY2MmZiMzoxNjgwNzI6MjljNDE0MTU4ZmZkZGZlNzhlY2JkYjRmZTlmOGY5NjY6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"sections\":{\"description\":\"<p>Send submissions to other sites with REST APIs including from one Formidable Forms site to another. Add a full forms API for forms, form fields, views, and entries.<\\/p>\\n\",\"changelog\":\"<p><h4>v1.06 - October 8, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add image importing via the REST API. Now an image can be uploaded from another site when the URL is included in the API request.<\\/li>\\n<li>Fix: Prevent CORS error with ajax calls. This resolves issues with double submissions, redirecting with validation errors, and adding rows in a repeater.<\\/li>\\n<li>Fix: The returned form object was different after a form was edited than after create or get.<\\/li>\\n<\\/ul>\\n<h4>v1.05.01 - August 22, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix issue with file fields not saving the received value<\\/li>\\n<\\/ul>\\n<h4>v1.05 - July 27, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add start_date and end_date parameters to filter the route to get entries<\\/li>\\n<li>Fix: Add better functionality to the search parameter in the route to get entries<\\/li>\\n<li>Fix: Allow the registration validation to trigger during API call<\\/li>\\n<li>Fix: reCaptcha was returning an error when creating an entry<\\/li>\\n<li>Fix: Creating an entry that included dynamic fields was causing a fatal error by using deprecated functions<\\/li>\\n<li>Fix: The route to create a form wasn\'t working correctly<\\/li>\\n<li>Remove old sslverify =&gt; false lines since they are no longer recommended<\\/li>\\n<\\/ul>\\n<h4>v1.04 - April 5, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow entry keys in routes like frm\\/v2\\/entries\\/#<\\/li>\\n<li>New: Allow form key in frm\\/v2\\/forms\\/#\\/entries<\\/li>\\n<li>Fix: Correctly update entries with repeating and embedded forms<\\/li>\\n<li>Fix: Correctly update an entry with a date when the date format is something other than Y-d-m<\\/li>\\n<li>Fix: Correctly process wp shortcodes in [shortcode]content[\\/shortcode] format when preparing the outbound API form action<\\/li>\\n<li>Fix: Remove the DELETE routes for frm\\/v2\\/entries and frm\\/v2\\/forms\\/#\\/entries. These didn\'t have any functionality behind them.<\\/li>\\n<li>Fix: Return a better response when an entry isn\'t found with frm\\/v2\\/entries\\/#<\\/li>\\n<li>Fix: Correct the nonce values when creating and updating entries so it won\'t block submissions<\\/li>\\n<\\/ul>\\n<h4>v1.03.01 - November 10, 2017<\\/h4>\\r\\n<ul>\\n<li>Only double encode line breaks inside of field values instead of the whole raw request<\\/li>\\n<li>Add a couple more parameters to the frmapi_post_response hook<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:0:{}\",\"description\":[\"<p>Send submissions to other sites with REST APIs including from one Formidable Forms site to another. Add a full forms API for forms, form fields, views, and entries.<\\/p>\\n\"],\"changelog\":[\"<p><h4>v1.06 - October 8, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add image importing via the REST API. Now an image can be uploaded from another site when the URL is included in the API request.<\\/li>\\n<li>Fix: Prevent CORS error with ajax calls. This resolves issues with double submissions, redirecting with validation errors, and adding rows in a repeater.<\\/li>\\n<li>Fix: The returned form object was different after a form was edited than after create or get.<\\/li>\\n<\\/ul>\\n<h4>v1.05.01 - August 22, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix issue with file fields not saving the received value<\\/li>\\n<\\/ul>\\n<h4>v1.05 - July 27, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add start_date and end_date parameters to filter the route to get entries<\\/li>\\n<li>Fix: Add better functionality to the search parameter in the route to get entries<\\/li>\\n<li>Fix: Allow the registration validation to trigger during API call<\\/li>\\n<li>Fix: reCaptcha was returning an error when creating an entry<\\/li>\\n<li>Fix: Creating an entry that included dynamic fields was causing a fatal error by using deprecated functions<\\/li>\\n<li>Fix: The route to create a form wasn\'t working correctly<\\/li>\\n<li>Remove old sslverify =&gt; false lines since they are no longer recommended<\\/li>\\n<\\/ul>\\n<h4>v1.04 - April 5, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow entry keys in routes like frm\\/v2\\/entries\\/#<\\/li>\\n<li>New: Allow form key in frm\\/v2\\/forms\\/#\\/entries<\\/li>\\n<li>Fix: Correctly update entries with repeating and embedded forms<\\/li>\\n<li>Fix: Correctly update an entry with a date when the date format is something other than Y-d-m<\\/li>\\n<li>Fix: Correctly process wp shortcodes in [shortcode]content[\\/shortcode] format when preparing the outbound API form action<\\/li>\\n<li>Fix: Remove the DELETE routes for frm\\/v2\\/entries and frm\\/v2\\/forms\\/#\\/entries. These didn\'t have any functionality behind them.<\\/li>\\n<li>Fix: Return a better response when an entry isn\'t found with frm\\/v2\\/entries\\/#<\\/li>\\n<li>Fix: Correct the nonce values when creating and updating entries so it won\'t block submissions<\\/li>\\n<\\/ul>\\n<h4>v1.03.01 - November 10, 2017<\\/h4>\\r\\n<ul>\\n<li>Only double encode line breaks inside of field values instead of the whole raw request<\\/li>\\n<li>Add a couple more parameters to the frmapi_post_response hook<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"]}\";}','no'),(2587,'duplicate_post_copytitle','1','yes'),(2588,'duplicate_post_copydate','0','yes'),(2589,'duplicate_post_copystatus','0','yes'),(2590,'duplicate_post_copyslug','1','yes'),(2591,'duplicate_post_copyexcerpt','1','yes'),(2592,'duplicate_post_copycontent','1','yes'),(2593,'duplicate_post_copythumbnail','1','yes'),(2594,'duplicate_post_copytemplate','1','yes'),(2595,'duplicate_post_copyformat','1','yes'),(2596,'duplicate_post_copyauthor','0','yes'),(2597,'duplicate_post_copypassword','0','yes'),(2598,'duplicate_post_copyattachments','0','yes'),(2599,'duplicate_post_copychildren','0','yes'),(2600,'duplicate_post_copycomments','0','yes'),(2601,'duplicate_post_copymenuorder','1','yes'),(2602,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(2603,'duplicate_post_blacklist','','yes'),(2604,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(2605,'duplicate_post_show_row','1','yes'),(2606,'duplicate_post_show_adminbar','1','yes'),(2607,'duplicate_post_show_submitbox','1','yes'),(2608,'duplicate_post_show_bulkactions','1','yes'),(2627,'layout_category_children','a:0:{}','yes'),(2708,'caa068453edf0349b8c10ea62e69c9aa','a:2:{s:7:\"timeout\";i:1538182829;s:5:\"value\";s:40511:\"{\"new_version\":\"3.03.03\",\"stable_version\":\"3.03.03\",\"name\":\"Formidable Pro\",\"slug\":\"formidable-pro\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro\\/?changelog=1\",\"last_updated\":\"2018-09-26 18:04:16\",\"homepage\":\"https:\\/\\/formidableforms.com\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzODI0MDQyOTpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDphMWMxMzljYzg1ZDYwMTU1YzZiOGYzOWE2Mjk0MDU3MTpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzODI0MDQyOTpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDphMWMxMzljYzg1ZDYwMTU1YzZiOGYzOWE2Mjk0MDU3MTpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"sections\":{\"description\":\"<p>= The best WordPress form builder plugin for custom forms =\\nFormidable Forms is a flexible and free WordPress forms plugin. Easily create contact forms, polls and surveys, lead generation forms, email forms, and any other forms you imagine. Start with a pre-built contact form template or create totally custom forms. From the smallest sidebar opt-in form to large job and employment application forms, Formidable Forms is built to do it all. Learn more about Formidable Forms at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"FormidableForms.com\\\">FormidableForms.com<\\/a><\\/p>\\n<p>Create a professional WordPress contact form without any code. Get mobile-friendly and responsive forms that look great on any screen size. Additionally, it\'s simple to change the form layout with included layout classes. For more advanced customizations, take control of the form HTML and CSS.<\\/p>\\n<p><a href=\\\"https:\\/\\/formidableforms.com\\/knowledgebase\\/\\\" title=\\\"View form builder Documentation\\\">View form builder Documentation<\\/a><\\/p>\\n<p>= All the features you need for beautiful WordPress forms =\\nCreate unlimited forms with all the essential field types.<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<li>reCaptcha (Invisible or one-click checkbox)<\\/li>\\n<\\/ul>\\n<p>= Form templates =\\nCreate forms in seconds with <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/\\\">pre-built form templates<\\/a>. Or add your own form templates and export the forms to share. A free contact form template is included when you install Formidable Forms. We also have a growing library of <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/\\\">downloadable form templates<\\/a>.<\\/p>\\n<p>= Customize your WordPress forms =\\nWhether you start from scratch or from a form template, customize your forms however you would like.<\\/p>\\n<ul>\\n<li>Send <strong>unlimited form email notifications and autoresponders<\\/strong>.<\\/li>\\n<li>Use <strong>input placeholder text<\\/strong> in form fields that clear when typing starts.<\\/li>\\n<li>Use our ready-made CSS classes (or your own custom CSS classes) to arrange your form fields and create <strong>multi-column forms<\\/strong><\\/li>\\n<li><strong>Modify the form HTML<\\/strong> for your individual needs.<\\/li>\\n<li>Customize the form success message and submit button text.<\\/li>\\n<li>Redirect to another page after submit or show content from a protected page.<\\/li>\\n<\\/ul>\\n<p>= Style your WordPress contact forms with no code =\\nUse the built-in <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">visual form style generator<\\/a> to instantly customize the look and feel of your WordPress forms. With just a few clicks, your forms can be transformed to match your personal style. A single form styling template will be applied to all the forms on your site. But if you decide you need different styles for different forms, Formidable Forms Pro is waiting.<\\/p>\\n<p>= Publish WordPress forms with ease =\\nOnce your WP form is built and designed just the way you like it, publish with an easy-to-use <strong>shortcode builder<\\/strong> UI. Direct links are also available on a blank page for <strong>form previews<\\/strong> and <strong>email surveys<\\/strong>.<\\/p>\\n<p><strong>Honeypot spam protection<\\/strong> is included in every website form. Or add Invisible reCAPTCHA, one-click reCAPTCHA, and Akismet for extra Spam control in your contact forms.<\\/p>\\n<p>= Save every form submission =\\nYou may already know it, but sending emails with your self-hosted WordPress website isn\'t 100% reliable. But every lead captured in your online contact forms is important. Don\'t lose a single one! This is why Formidable saves every contact form submission in your WordPress database and lists them on your Formidable -&gt; Entries page. Now even if a form email notification fails, you won\\u2019t lose a lead.<\\/p>\\n<p>Looking for <strong>GDPR compliance for forms<\\/strong>? No problem. Turn off IP tracking or stop saving form submissions. Or add a checkbox field to your form to collect consent.<\\/p>\\n<p>Need to import your leads to another service like MailChimp? No problem. <strong>Export form leads to a CSV<\\/strong> then open it in Excel or import anywhere.<\\/p>\\n<p>Plus, don\'t lose leads by accidentally deleting a form. <strong>Send forms to the trash<\\/strong> and recover them if needed.<\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8<\\/a><\\/p>\\n<p>= Pro Form Builder Plugin Features =\\nFormidable Forms Pro is an upgrade that adds even more power to your free forms. Multi-page forms, conditional logic, payment form integrations, data management, front-end post submissions for user-generated content, front-end editing, and boat loads more. <\\/p>\\n<p>Other WordPress form builder plugins only let you collect data. But our Pro forms also add options to display form submissions on the front-end of your site. Input, display, edit and filter data on the front-end without any additional plugins. Formidable Forms is a powerful solution for purchase forms, order forms, member directories, user registration forms, event calendars, and more.<\\/p>\\n<ul>\\n<li><strong>Even more field types<\\/strong>: Page breaks, section headings, repeating field groups (repeaters), multiple file uploads, rich text, datepicker, time, scale, star ratings, slider, toggle, dynamic fields populated from other forms, password, tags, address, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Multi-Step forms with progress bar<\\/a>: Create beautiful paged forms with rootline and progress indicators. Use conditional logic on page breaks for branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Conditional logic for smart forms<\\/a>: Show or hide fields in your form based on user selections or the role of the user.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in your form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/\\\">Calculated Fields<\\/a>: create basic and complex calculations, and even combine text from multiple fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">Visual form styler with multiple templates<\\/a>: Create multiple form styling templates and assign them to any of your forms. Need Bootstrap form styling? We\\u2019ve got you covered.<\\/li>\\n<li>Entry management: Flexibly and powerfully display, edit, and delete entries from anywhere on your site, and specify who has permission to do so.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/\\\" title=\\\"Display form data with Views\\\">Display form data with Views<\\/a>: Format, filter and display the data submitted in your WordPress forms in custom Views.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/\\\">Graphs and charts for data visualization<\\/a>: Display statistics from form entries, and graph your data in a variety of eye catching styles with graphs that automatically update as new data is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/\\\">User submitted front-end posts and pages<\\/a>: Create and edit WordPress posts, pages, and even custom post types from front-end online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/\\\">Front-end editing<\\/a>: allow users to edit their form entries and posts from the front-end of your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/\\\">Saved and continue partial submissions<\\/a>: logged-in users can save form progress and return later.<\\/li>\\n<li>Form permission settings: limit form visibility based on user role.<\\/li>\\n<li>Conditionally redirect after form submission.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/\\\">Fill out forms automatically<\\/a> with user meta or values from your posts including custom fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/\\\">Import and Export form submissions<\\/a> with CSV.<\\/li>\\n<li>Limit the number of form entries per user, IP, or cookie.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/demos\\/\\\">pre-built form\\/view demo templates<\\/a> as a starting point or a final product.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/\\\" title=\\\"White labeling\\\">White labeling<\\/a>: Replace the Formidable branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/\\\">World Class Support<\\/a>: have questions or need guidance on how to set up your application? We are happy to help. Our purpose with Formidable Forms is to help you <strong>take on bigger projects, earn more clients, and grow your business<\\/strong>.<\\/li>\\n<\\/ul>\\n<p>= Form add-on library =<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\\\" title=\\\"User registration forms\\\">User registration Forms<\\/a>. Register users and create subdomains when using WordPress multisite.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/\\\" title=\\\"Form action automation\\\">Form action automation<\\/a>. Schedule email notifications, SMS messages, and API actions.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/\\\" title=\\\"Digital Signature Forms\\\">Digital Signature Forms<\\/a>. Add a signature field to your form. The user may write their signature with a trackpad\\/mouse or just type it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\\\" title=\\\"Formidable Forms API\\\">Formidable Forms API<\\/a>. Send entry results to any other site that has a Rest API. This includes the option of sending entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/\\\" title=\\\"PayPal Forms\\\">PayPal Forms<\\/a>. Automate your business by collecting instant payments from your clients. Collect information, calculate a total, and send clients on to PayPal.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/\\\" title=\\\"Stripe Forms\\\">Stripe Forms<\\/a>. Any Formidable forms on your site can accept credit card payments without users ever leaving your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/\\\" title=\\\"Authorize.net AIM Forms\\\">Authorize.net AIM Forms<\\/a>. Accept one-time payments directly on your site, using Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/\\\" title=\\\"MailChimp Forms\\\">MailChimp Forms<\\/a>. Add leads to a MailChimp mailing list when they submit forms and update their information along with the entry.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/\\\" title=\\\"Aweber Forms\\\">Aweber Forms<\\/a>. Subscribe users to an AWeber mailing list when they submit a form. AWeber is a powerful email marketing service.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/\\\" title=\\\"Highrise Forms\\\">Highrise Forms<\\/a>. Add your leads to your Highrise CRM account any time a Formidable form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/\\\" title=\\\"Twilio for SMS Forms\\\">Twilio for SMS Forms<\\/a>. Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when form entries are submitted or updated.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/\\\" title=\\\"WPML Forms\\\">WPML Forms<\\/a>. Translate your forms into multiple languages using the Formidable-integrated WPML plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/\\\" title=\\\"Polylang Forms\\\">Polylang Forms<\\/a>. Create bilingual or multilingual forms with help from Polylang.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/\\\" title=\\\"Bootstrap Form Styles\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap styling to all your Formidable forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/\\\" title=\\\"Bootstrap Modal Form\\\">Bootstrap Modal Form<\\/a>. Open forms, views, other shortcodes, or sections of content in a Bootstrap modal popup.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/\\\" title=\\\"Salesforce Forms\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your WordPress forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\\\" title=\\\"Zapier Forms\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.<\\/li>\\n<\\/ul>\\n<p>Learn more at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"Formidable Forms\\\">Formidable Forms<\\/a><\\/p>\\n<p><a href=\\\"https:\\/\\/github.com\\/Strategy11\\/formidable-forms\\\" title=\\\"Contribute on Github\\\">Contribute on Github<\\/a><\\/p>\",\"changelog\":\"<p><h4>v3.03.03 - September 26, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add support for RTL progress bars<\\/li>\\n<li>Fix: Properly compare dates and times through a dynamic field. Allow [if x show=y greater_than=NOW] when y is a date field.<\\/li>\\n<li>Fix: Allow default values to be set in a checkbox\\/multiselect field when the value includes a comma-separated list with spaces<\\/li>\\n<li>Fix: Getting an attachment id from a url was sometimes failing<\\/li>\\n<li>Fix: If a form is limited to one entry per user, including the entry_id=x in the form shortcode was being ignored and returning the current user\'s entry<\\/li>\\n<li>Fix: Improve the backend search for user id fields. When a user ID field is selected for the backend search, check the user login, email, display name, and nice name.<\\/li>\\n<li>Fix: Improve the appearance of long progress bars on small screens and those with titles of varying lengths<\\/li>\\n<li>Fix: Correctly pass the $atts in the pagination filters<\\/li>\\n<li>Fix: When a time or date field is watching a lookup field, give them the values in the correct format for that field<\\/li>\\n<\\/ul>\\n<h4>v3.03.02 - September 12, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow view ordering by entry key since this is faster than ordering by a field value.<\\/li>\\n<li>Tweak: If no value in the field used for a calculation, show nothing instead of 0.<\\/li>\\n<li>Tweak: Add lookup_field to array included in frm_filtered_lookup_options hook<\\/li>\\n<li>Fix: Dates weren\'t validating correctly with end year \'1\' instead of \'+1\'<\\/li>\\n<li>Fix: A combination of default values and conditional logic for Other fields was a causing javascript error. Now if an other field has a default value and conditional logic, the default value it correctly set when the field is displayed.<\\/li>\\n<li>Fix: Javascript errors were appearing with some date code customizations.<\\/li>\\n<li>Fix: Hide the first remove button in a repeater when the form styling is off.<\\/li>\\n<\\/ul>\\n<h4>v3.03.01 - August 6, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Accept mod operator (%) inside of frm-math processes<\\/li>\\n<li>New: Allow type=return_raw to return an unfiltered value<\\/li>\\n<li>Fix: Don\'t allow the first row to be removed in a repeater when icons are used to add and remove rows<\\/li>\\n<li>Fix: Show all values from a field in a repeating section with the frm-field-value shortcode instead of only the first value<\\/li>\\n<li>Fix: If a file is moved out of the WP file system, show it anyway when editing an entry form with a file upload<\\/li>\\n<li>Fix: Product images were being removed when importing into WooCommerce<\\/li>\\n<li>Fix: When javascript validation and ajax submit are off, the password strength indicator was showing all red after form validation<\\/li>\\n<li>Add more escaping for translated strings<\\/li>\\n<\\/ul>\\n<h4>v3.03 - July 3, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add frm-math shortcode for inline math calculations<\\/li>\\n<li>New: Add password strength meter that appears on the front-end<\\/li>\\n<li>New: Add parent_id filter to frm-stats shortcode<\\/li>\\n<li>Fix: Allow users to save draft even when the submit button is hidden or disabled with conditional logic<\\/li>\\n<li>Fix: The gallery shortcode wasn\'t always showing the images uploaded in a form<\\/li>\\n<li>Fix: Date fields were not triggering the changes correctly. This also reverts the change from previous release that gives date field focus after selecting a date since it wasn\'t cross-browser compatible.<\\/li>\\n<li>Fix: Prevent extra queries for views where no entries are returned<\\/li>\\n<li>Fix: &gt; and &lt; characters were being sanitized in calculations<\\/li>\\n<li>Move the default jQuery UI css from free to pro<\\/li>\\n<\\/ul>\\n<h4>v3.02.01 - June 13, 2018<\\/h4>\\r\\n<ul>\\n<li>New: If the submit button is conditionally hidden\\/disabled, prevent submit from hitting enter<\\/li>\\n<li>Fix: If a dropdown field has a default value selected, validate correctly during javascript validation<\\/li>\\n<li>Fix: Remove outdated sslverify references<\\/li>\\n<li>Fix: Javascript error in IE 11 when javascript validation was turned on in a form with a password field<\\/li>\\n<li>Fix: Javascript error appearing with some themes on the view settings page right after creating a view<\\/li>\\n<li>Fix: If a view is filtered for the current user, don\'t show any entries when a user if logged out. This was showing entries submitted by logged out users.<\\/li>\\n<li>Fix: Add focus back on the date field after a date is selected in datepicker<\\/li>\\n<li>Fix: More accurately check if going back a page before running javascript validation<\\/li>\\n<li>Fix: Don\'t include Formidable file uploads in the WorePress attachment REST API listings<\\/li>\\n<li>Fix: The [formresults id=x google=1] table wasn\'t appearing if the form included a dropdown field with only one option<\\/li>\\n<li>Fix: When multiple file ids are returned with [frm-field-value field_id=x show=id], don\'t include an HTML container<\\/li>\\n<li>Fix: Checkbox fields with separate values were showing the saved value in both entries columns when multiple options were selected<\\/li>\\n<li>Fix: Infinite loop was created when the step in a time field was set to a non-numeric value<\\/li>\\n<li>Fix: Time fields in a repeater on the second page of a form did not always have the correct values selected when editing the entry<\\/li>\\n<\\/ul>\\n<\\/p>\\n\",\"installation\":\"<ol>\\n<li>Go to your Plugins -&gt; Add New page in your WordPress admin<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to create a new form<\\/li>\\n<li>Insert your forms on a page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> in your page template<\\/li>\\n<\\/ol>\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-772x250.png\"},\"stable_tag\":\"3.03.03\",\"contributors\":[\"formidableforms\",\"sswells\",\"srwells\",\"jamie.wahlin\"],\"description\":[\"<p>= The best WordPress form builder plugin for custom forms =\\nFormidable Forms is a flexible and free WordPress forms plugin. Easily create contact forms, polls and surveys, lead generation forms, email forms, and any other forms you imagine. Start with a pre-built contact form template or create totally custom forms. From the smallest sidebar opt-in form to large job and employment application forms, Formidable Forms is built to do it all. Learn more about Formidable Forms at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"FormidableForms.com\\\">FormidableForms.com<\\/a><\\/p>\\n<p>Create a professional WordPress contact form without any code. Get mobile-friendly and responsive forms that look great on any screen size. Additionally, it\'s simple to change the form layout with included layout classes. For more advanced customizations, take control of the form HTML and CSS.<\\/p>\\n<p><a href=\\\"https:\\/\\/formidableforms.com\\/knowledgebase\\/\\\" title=\\\"View form builder Documentation\\\">View form builder Documentation<\\/a><\\/p>\\n<p>= All the features you need for beautiful WordPress forms =\\nCreate unlimited forms with all the essential field types.<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<li>reCaptcha (Invisible or one-click checkbox)<\\/li>\\n<\\/ul>\\n<p>= Form templates =\\nCreate forms in seconds with <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/\\\">pre-built form templates<\\/a>. Or add your own form templates and export the forms to share. A free contact form template is included when you install Formidable Forms. We also have a growing library of <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/\\\">downloadable form templates<\\/a>.<\\/p>\\n<p>= Customize your WordPress forms =\\nWhether you start from scratch or from a form template, customize your forms however you would like.<\\/p>\\n<ul>\\n<li>Send <strong>unlimited form email notifications and autoresponders<\\/strong>.<\\/li>\\n<li>Use <strong>input placeholder text<\\/strong> in form fields that clear when typing starts.<\\/li>\\n<li>Use our ready-made CSS classes (or your own custom CSS classes) to arrange your form fields and create <strong>multi-column forms<\\/strong><\\/li>\\n<li><strong>Modify the form HTML<\\/strong> for your individual needs.<\\/li>\\n<li>Customize the form success message and submit button text.<\\/li>\\n<li>Redirect to another page after submit or show content from a protected page.<\\/li>\\n<\\/ul>\\n<p>= Style your WordPress contact forms with no code =\\nUse the built-in <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">visual form style generator<\\/a> to instantly customize the look and feel of your WordPress forms. With just a few clicks, your forms can be transformed to match your personal style. A single form styling template will be applied to all the forms on your site. But if you decide you need different styles for different forms, Formidable Forms Pro is waiting.<\\/p>\\n<p>= Publish WordPress forms with ease =\\nOnce your WP form is built and designed just the way you like it, publish with an easy-to-use <strong>shortcode builder<\\/strong> UI. Direct links are also available on a blank page for <strong>form previews<\\/strong> and <strong>email surveys<\\/strong>.<\\/p>\\n<p><strong>Honeypot spam protection<\\/strong> is included in every website form. Or add Invisible reCAPTCHA, one-click reCAPTCHA, and Akismet for extra Spam control in your contact forms.<\\/p>\\n<p>= Save every form submission =\\nYou may already know it, but sending emails with your self-hosted WordPress website isn\'t 100% reliable. But every lead captured in your online contact forms is important. Don\'t lose a single one! This is why Formidable saves every contact form submission in your WordPress database and lists them on your Formidable -&gt; Entries page. Now even if a form email notification fails, you won\\u2019t lose a lead.<\\/p>\\n<p>Looking for <strong>GDPR compliance for forms<\\/strong>? No problem. Turn off IP tracking or stop saving form submissions. Or add a checkbox field to your form to collect consent.<\\/p>\\n<p>Need to import your leads to another service like MailChimp? No problem. <strong>Export form leads to a CSV<\\/strong> then open it in Excel or import anywhere.<\\/p>\\n<p>Plus, don\'t lose leads by accidentally deleting a form. <strong>Send forms to the trash<\\/strong> and recover them if needed.<\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8<\\/a><\\/p>\\n<p>= Pro Form Builder Plugin Features =\\nFormidable Forms Pro is an upgrade that adds even more power to your free forms. Multi-page forms, conditional logic, payment form integrations, data management, front-end post submissions for user-generated content, front-end editing, and boat loads more. <\\/p>\\n<p>Other WordPress form builder plugins only let you collect data. But our Pro forms also add options to display form submissions on the front-end of your site. Input, display, edit and filter data on the front-end without any additional plugins. Formidable Forms is a powerful solution for purchase forms, order forms, member directories, user registration forms, event calendars, and more.<\\/p>\\n<ul>\\n<li><strong>Even more field types<\\/strong>: Page breaks, section headings, repeating field groups (repeaters), multiple file uploads, rich text, datepicker, time, scale, star ratings, slider, toggle, dynamic fields populated from other forms, password, tags, address, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Multi-Step forms with progress bar<\\/a>: Create beautiful paged forms with rootline and progress indicators. Use conditional logic on page breaks for branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Conditional logic for smart forms<\\/a>: Show or hide fields in your form based on user selections or the role of the user.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in your form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/\\\">Calculated Fields<\\/a>: create basic and complex calculations, and even combine text from multiple fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">Visual form styler with multiple templates<\\/a>: Create multiple form styling templates and assign them to any of your forms. Need Bootstrap form styling? We\\u2019ve got you covered.<\\/li>\\n<li>Entry management: Flexibly and powerfully display, edit, and delete entries from anywhere on your site, and specify who has permission to do so.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/\\\" title=\\\"Display form data with Views\\\">Display form data with Views<\\/a>: Format, filter and display the data submitted in your WordPress forms in custom Views.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/\\\">Graphs and charts for data visualization<\\/a>: Display statistics from form entries, and graph your data in a variety of eye catching styles with graphs that automatically update as new data is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/\\\">User submitted front-end posts and pages<\\/a>: Create and edit WordPress posts, pages, and even custom post types from front-end online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/\\\">Front-end editing<\\/a>: allow users to edit their form entries and posts from the front-end of your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/\\\">Saved and continue partial submissions<\\/a>: logged-in users can save form progress and return later.<\\/li>\\n<li>Form permission settings: limit form visibility based on user role.<\\/li>\\n<li>Conditionally redirect after form submission.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/\\\">Fill out forms automatically<\\/a> with user meta or values from your posts including custom fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/\\\">Import and Export form submissions<\\/a> with CSV.<\\/li>\\n<li>Limit the number of form entries per user, IP, or cookie.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/demos\\/\\\">pre-built form\\/view demo templates<\\/a> as a starting point or a final product.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/\\\" title=\\\"White labeling\\\">White labeling<\\/a>: Replace the Formidable branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/\\\">World Class Support<\\/a>: have questions or need guidance on how to set up your application? We are happy to help. Our purpose with Formidable Forms is to help you <strong>take on bigger projects, earn more clients, and grow your business<\\/strong>.<\\/li>\\n<\\/ul>\\n<p>= Form add-on library =<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\\\" title=\\\"User registration forms\\\">User registration Forms<\\/a>. Register users and create subdomains when using WordPress multisite.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/\\\" title=\\\"Form action automation\\\">Form action automation<\\/a>. Schedule email notifications, SMS messages, and API actions.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/\\\" title=\\\"Digital Signature Forms\\\">Digital Signature Forms<\\/a>. Add a signature field to your form. The user may write their signature with a trackpad\\/mouse or just type it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\\\" title=\\\"Formidable Forms API\\\">Formidable Forms API<\\/a>. Send entry results to any other site that has a Rest API. This includes the option of sending entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/\\\" title=\\\"PayPal Forms\\\">PayPal Forms<\\/a>. Automate your business by collecting instant payments from your clients. Collect information, calculate a total, and send clients on to PayPal.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/\\\" title=\\\"Stripe Forms\\\">Stripe Forms<\\/a>. Any Formidable forms on your site can accept credit card payments without users ever leaving your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/\\\" title=\\\"Authorize.net AIM Forms\\\">Authorize.net AIM Forms<\\/a>. Accept one-time payments directly on your site, using Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/\\\" title=\\\"MailChimp Forms\\\">MailChimp Forms<\\/a>. Add leads to a MailChimp mailing list when they submit forms and update their information along with the entry.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/\\\" title=\\\"Aweber Forms\\\">Aweber Forms<\\/a>. Subscribe users to an AWeber mailing list when they submit a form. AWeber is a powerful email marketing service.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/\\\" title=\\\"Highrise Forms\\\">Highrise Forms<\\/a>. Add your leads to your Highrise CRM account any time a Formidable form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/\\\" title=\\\"Twilio for SMS Forms\\\">Twilio for SMS Forms<\\/a>. Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when form entries are submitted or updated.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/\\\" title=\\\"WPML Forms\\\">WPML Forms<\\/a>. Translate your forms into multiple languages using the Formidable-integrated WPML plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/\\\" title=\\\"Polylang Forms\\\">Polylang Forms<\\/a>. Create bilingual or multilingual forms with help from Polylang.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/\\\" title=\\\"Bootstrap Form Styles\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap styling to all your Formidable forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/\\\" title=\\\"Bootstrap Modal Form\\\">Bootstrap Modal Form<\\/a>. Open forms, views, other shortcodes, or sections of content in a Bootstrap modal popup.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/\\\" title=\\\"Salesforce Forms\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your WordPress forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\\\" title=\\\"Zapier Forms\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.<\\/li>\\n<\\/ul>\\n<p>Learn more at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"Formidable Forms\\\">Formidable Forms<\\/a><\\/p>\\n<p><a href=\\\"https:\\/\\/github.com\\/Strategy11\\/formidable-forms\\\" title=\\\"Contribute on Github\\\">Contribute on Github<\\/a><\\/p>\"],\"changelog\":[\"<p><h4>v3.03.03 - September 26, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add support for RTL progress bars<\\/li>\\n<li>Fix: Properly compare dates and times through a dynamic field. Allow [if x show=y greater_than=NOW] when y is a date field.<\\/li>\\n<li>Fix: Allow default values to be set in a checkbox\\/multiselect field when the value includes a comma-separated list with spaces<\\/li>\\n<li>Fix: Getting an attachment id from a url was sometimes failing<\\/li>\\n<li>Fix: If a form is limited to one entry per user, including the entry_id=x in the form shortcode was being ignored and returning the current user\'s entry<\\/li>\\n<li>Fix: Improve the backend search for user id fields. When a user ID field is selected for the backend search, check the user login, email, display name, and nice name.<\\/li>\\n<li>Fix: Improve the appearance of long progress bars on small screens and those with titles of varying lengths<\\/li>\\n<li>Fix: Correctly pass the $atts in the pagination filters<\\/li>\\n<li>Fix: When a time or date field is watching a lookup field, give them the values in the correct format for that field<\\/li>\\n<\\/ul>\\n<h4>v3.03.02 - September 12, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow view ordering by entry key since this is faster than ordering by a field value.<\\/li>\\n<li>Tweak: If no value in the field used for a calculation, show nothing instead of 0.<\\/li>\\n<li>Tweak: Add lookup_field to array included in frm_filtered_lookup_options hook<\\/li>\\n<li>Fix: Dates weren\'t validating correctly with end year \'1\' instead of \'+1\'<\\/li>\\n<li>Fix: A combination of default values and conditional logic for Other fields was a causing javascript error. Now if an other field has a default value and conditional logic, the default value it correctly set when the field is displayed.<\\/li>\\n<li>Fix: Javascript errors were appearing with some date code customizations.<\\/li>\\n<li>Fix: Hide the first remove button in a repeater when the form styling is off.<\\/li>\\n<\\/ul>\\n<h4>v3.03.01 - August 6, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Accept mod operator (%) inside of frm-math processes<\\/li>\\n<li>New: Allow type=return_raw to return an unfiltered value<\\/li>\\n<li>Fix: Don\'t allow the first row to be removed in a repeater when icons are used to add and remove rows<\\/li>\\n<li>Fix: Show all values from a field in a repeating section with the frm-field-value shortcode instead of only the first value<\\/li>\\n<li>Fix: If a file is moved out of the WP file system, show it anyway when editing an entry form with a file upload<\\/li>\\n<li>Fix: Product images were being removed when importing into WooCommerce<\\/li>\\n<li>Fix: When javascript validation and ajax submit are off, the password strength indicator was showing all red after form validation<\\/li>\\n<li>Add more escaping for translated strings<\\/li>\\n<\\/ul>\\n<h4>v3.03 - July 3, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add frm-math shortcode for inline math calculations<\\/li>\\n<li>New: Add password strength meter that appears on the front-end<\\/li>\\n<li>New: Add parent_id filter to frm-stats shortcode<\\/li>\\n<li>Fix: Allow users to save draft even when the submit button is hidden or disabled with conditional logic<\\/li>\\n<li>Fix: The gallery shortcode wasn\'t always showing the images uploaded in a form<\\/li>\\n<li>Fix: Date fields were not triggering the changes correctly. This also reverts the change from previous release that gives date field focus after selecting a date since it wasn\'t cross-browser compatible.<\\/li>\\n<li>Fix: Prevent extra queries for views where no entries are returned<\\/li>\\n<li>Fix: &gt; and &lt; characters were being sanitized in calculations<\\/li>\\n<li>Move the default jQuery UI css from free to pro<\\/li>\\n<\\/ul>\\n<h4>v3.02.01 - June 13, 2018<\\/h4>\\r\\n<ul>\\n<li>New: If the submit button is conditionally hidden\\/disabled, prevent submit from hitting enter<\\/li>\\n<li>Fix: If a dropdown field has a default value selected, validate correctly during javascript validation<\\/li>\\n<li>Fix: Remove outdated sslverify references<\\/li>\\n<li>Fix: Javascript error in IE 11 when javascript validation was turned on in a form with a password field<\\/li>\\n<li>Fix: Javascript error appearing with some themes on the view settings page right after creating a view<\\/li>\\n<li>Fix: If a view is filtered for the current user, don\'t show any entries when a user if logged out. This was showing entries submitted by logged out users.<\\/li>\\n<li>Fix: Add focus back on the date field after a date is selected in datepicker<\\/li>\\n<li>Fix: More accurately check if going back a page before running javascript validation<\\/li>\\n<li>Fix: Don\'t include Formidable file uploads in the WorePress attachment REST API listings<\\/li>\\n<li>Fix: The [formresults id=x google=1] table wasn\'t appearing if the form included a dropdown field with only one option<\\/li>\\n<li>Fix: When multiple file ids are returned with [frm-field-value field_id=x show=id], don\'t include an HTML container<\\/li>\\n<li>Fix: Checkbox fields with separate values were showing the saved value in both entries columns when multiple options were selected<\\/li>\\n<li>Fix: Infinite loop was created when the step in a time field was set to a non-numeric value<\\/li>\\n<li>Fix: Time fields in a repeater on the second page of a form did not always have the correct values selected when editing the entry<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"],\"installation\":[\"<ol>\\n<li>Go to your Plugins -&gt; Add New page in your WordPress admin<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to create a new form<\\/li>\\n<li>Insert your forms on a page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> in your page template<\\/li>\\n<\\/ol>\"]}\";}','no'),(2779,'f1c3fb7ebbe11037821b947089853411','a:2:{s:7:\"timeout\";i:1536926410;s:5:\"value\";s:27360:\"{\"new_version\":\"2.0.3\",\"stable_version\":\"2.0.3\",\"name\":\"Page Builder Everywhere\",\"slug\":\"pbe\",\"url\":\"https:\\/\\/divi.space\\/product\\/page-builder-everywhere\\/?changelog=1\",\"last_updated\":\"2018-07-06 07:30:57\",\"homepage\":\"https:\\/\\/divi.space\\/product\\/page-builder-everywhere\\/\",\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"<p>[et_pb_section bb_built=\\\"1\\\" admin_label=\\\"Section\\\" fullwidth=\\\"off\\\" specialty=\\\"off\\\" transparent_background=\\\"off\\\" background_color=\\\"#f51049\\\" allow_player_pause=\\\"off\\\" inner_shadow=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" make_equal=\\\"off\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"50px||150px|\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_padding_last_edited=\\\"on|phone\\\"][et_pb_row admin_label=\\\"Row\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading\\\" background_layout=\\\"dark\\\" text_orientation=\\\"center\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" text_font=\\\"|on|||\\\" custom_css_before=\\\"content: \'\';||width: 60px;||height: 3px;||background-color: #fff;||opacity:0.5;||position: absolute;||bottom: 30px;||left: 50%;||margin-left: -30px;\\\" custom_css_main_element=\\\"line-height: 1.25; ||position: relative; \\\" text_font_size=\\\"30px\\\" custom_margin=\\\"||0px|\\\" custom_padding=\\\"||60px|\\\" text_font_size_tablet=\\\"28px\\\" text_font_size_phone=\\\"25px\\\" text_font_size_last_edited=\\\"on|phone\\\"]<\\/p>\\n<p>Use the Divi Builder like never before!<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Text\\\" background_layout=\\\"dark\\\" text_orientation=\\\"center\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" custom_css_main_element=\\\"opacity: 0.75;||line-height: 1.5;\\\" text_font_size=\\\"17px\\\" text_font_size_phone=\\\"15px\\\" text_font_size_last_edited=\\\"on|phone\\\"]<\\/p>\\n<p>Take control of your Divi website and use the Divi Builder in even more places!<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" admin_label=\\\"section\\\" transparent_background=\\\"off\\\" allow_player_pause=\\\"off\\\" inner_shadow=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"off\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" make_equal=\\\"off\\\" use_custom_gutter=\\\"off\\\" module_class=\\\"download_row_fix\\\" custom_padding=\\\"0px||0px|\\\"][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\" module_class=\\\"product-description-image\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image admin_label=\\\"Plugin screenshot \\\" show_in_lightbox=\\\"off\\\" url_new_window=\\\"off\\\" use_overlay=\\\"off\\\" animation=\\\"off\\\" sticky=\\\"off\\\" align=\\\"center\\\" force_fullwidth=\\\"off\\\" always_center_on_mobile=\\\"on\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" src=\\\"\\/wp-content\\/uploads\\/edd\\/2017\\/07\\/PBE.png\\\" custom_margin=\\\"-150px|||\\\" custom_margin_tablet=\\\"-125px|||\\\" custom_margin_phone=\\\"-100px|||\\\" custom_margin_last_edited=\\\"on|phone\\\" custom_css_main_element=\\\"position: relative;||width: 90%;||margin: 0px auto; \\\" \\/][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" admin_label=\\\"Section\\\" fullwidth=\\\"off\\\" specialty=\\\"off\\\" transparent_background=\\\"off\\\" allow_player_pause=\\\"off\\\" inner_shadow=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" custom_padding=\\\"0px|||\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" make_equal=\\\"off\\\" use_custom_gutter=\\\"off\\\"][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"||0px|\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading (left)\\\" background_layout=\\\"light\\\" text_orientation=\\\"left\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" text_font=\\\"|on|||\\\" custom_css_before=\\\"content: \'\';||width: 60px;||height: 3px;||background-color:#F51049;||position: absolute;||bottom: 20px;||left: 0; \\\" custom_css_main_element=\\\"line-height: 1.25; ||position: relative; \\\" text_font_size=\\\"30px\\\" custom_margin=\\\"||0px|\\\" custom_padding=\\\"||40px|\\\" text_font_size_tablet=\\\"28px\\\" text_font_size_phone=\\\"25px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_text_color=\\\"#333333\\\" header_font_size=\\\"25px\\\" header_font_size_phone=\\\"23px\\\" header_font_size_last_edited=\\\"on|desktop\\\"]<\\/p>\\n<p>About Page Builder Everywhere<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row admin_label=\\\"row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\" custom_padding=\\\"20px|||\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Text\\\" background_layout=\\\"light\\\" text_orientation=\\\"left\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\"]<\\/p>\\n<p>With the Page Builder Everywhere plugin, you\\u2019ll be able to extend the reach of the Divi Builder plugin to outside of its standard scope to include the use of customizable modules in a range of new exciting areas, sections, and pages. From headers to footers and sidebars, 404 error pages and more, Page Builder Everywhere lets you use the Divi Builder in its normal state like never before<\\/p>\\n<p>[\\/et_pb_text][et_pb_image admin_label=\\\"Mockup Image \\\" src=\\\"\\/wp-content\\/uploads\\/edd\\/2017\\/07\\/pbe2.png\\\" show_in_lightbox=\\\"off\\\" url_new_window=\\\"off\\\" use_overlay=\\\"off\\\" animation=\\\"off\\\" sticky=\\\"off\\\" align=\\\"center\\\" force_fullwidth=\\\"off\\\" always_center_on_mobile=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" custom_margin=\\\"||0px|\\\" \\/][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" admin_label=\\\"Section\\\" fullwidth=\\\"off\\\" specialty=\\\"off\\\" transparent_background=\\\"off\\\" background_color=\\\"#313439\\\" allow_player_pause=\\\"off\\\" inner_shadow=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" make_equal=\\\"off\\\" use_custom_gutter=\\\"off\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_padding_last_edited=\\\"off|phone\\\" custom_css_before=\\\" width: 0; || height: 0; || border-left: 40px solid transparent;|| border-right: 40px solid transparent;|| border-top: 40px solid #fff;||position:absolute;||left: 50%;||margin-left: -40px;||content:\'\';||top:0;\\\" custom_padding=\\\"50px|||\\\"][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"||0px|\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading (left)\\\" background_layout=\\\"dark\\\" text_orientation=\\\"left\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" text_font=\\\"|on|||\\\" custom_css_before=\\\"content: \'\';||width: 60px;||height: 3px;||background-color: #F51049;||position: absolute;||bottom: 20px;||left: 0; \\\" custom_css_main_element=\\\"line-height: 1.25; ||position: relative; \\\" text_font_size=\\\"30px\\\" custom_margin=\\\"||0px|\\\" custom_padding=\\\"||40px|\\\" text_font_size_tablet=\\\"28px\\\" text_font_size_phone=\\\"25px\\\" text_font_size_last_edited=\\\"on|phone\\\" header_font_size=\\\"25px\\\" header_font_size_phone=\\\"23px\\\" header_font_size_last_edited=\\\"on|desktop\\\"]<\\/p>\\n<p>Enhance the Divi Theme<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"20px|||\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Text\\\" background_layout=\\\"dark\\\" text_orientation=\\\"left\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" custom_css_main_element=\\\"opacity: 0.8;\\\"]<\\/p>\\n<p>While the Divi Builder is a powerful visual builder, it can\\u2019t be used with the same level of fluidity in each and every aspect of website development. Page Builder Everywhere is an incredibly handy plugin that solves this by allowing the use of the builder outside of its standard scope. Continuing the builder\\u2019s native function, users will be afforded the same drag and drop modular functionality of the Divi Builder in headers, footers, and sidebars, as well as on 404 error, category, search, archive and WooCommerce pages.<\\/p>\\n<p>With Page Builder Everywhere, users are able to craft each section, page or element to their hearts desire, with the same available modules in the same familiar fashion. Page Builder Everywhere both saves Divi users of all skill levels countless hours, and too, allows for the design of a one-of-a-kind web aesthetic by enabling the use of maps, forms, call-to-actions and more in unique and eye-catching locations.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image admin_label=\\\"Mockup Image \\\" src=\\\"\\/wp-content\\/uploads\\/edd\\/2017\\/07\\/pbe2LAYOUT-1.png\\\" show_in_lightbox=\\\"off\\\" url_new_window=\\\"off\\\" use_overlay=\\\"off\\\" animation=\\\"off\\\" sticky=\\\"off\\\" align=\\\"center\\\" force_fullwidth=\\\"off\\\" always_center_on_mobile=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" \\/][et_pb_image admin_label=\\\"Mockup Image \\\" src=\\\"\\/wp-content\\/uploads\\/edd\\/2017\\/07\\/pbe2LAYOUT-2.png\\\" show_in_lightbox=\\\"off\\\" url_new_window=\\\"off\\\" use_overlay=\\\"off\\\" animation=\\\"off\\\" sticky=\\\"off\\\" align=\\\"center\\\" force_fullwidth=\\\"off\\\" always_center_on_mobile=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" custom_margin=\\\"||0px|\\\" \\/][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" admin_label=\\\"Section\\\" fullwidth=\\\"off\\\" specialty=\\\"off\\\" transparent_background=\\\"off\\\" background_color=\\\"#f5f6fa\\\" allow_player_pause=\\\"off\\\" inner_shadow=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" make_equal=\\\"off\\\" use_custom_gutter=\\\"off\\\"][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"||0px|\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading\\\" background_layout=\\\"light\\\" text_orientation=\\\"center\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" text_font=\\\"|on|||\\\" custom_css_before=\\\"content: \'\';||width: 60px;||height: 3px;||background-color:#F51049;||position: absolute;||bottom: 30px;||left: 50%;||margin-left: -30px;\\\" custom_css_main_element=\\\"line-height: 1.25; ||position: relative; \\\" text_font_size=\\\"30px\\\" custom_margin=\\\"||0px|\\\" custom_padding=\\\"||60px|\\\" text_font_size_tablet=\\\"28px\\\" text_font_size_phone=\\\"25px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_text_color=\\\"#333333\\\"]<\\/p>\\n<p>Page Builder Everywhere Features<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"10px|||\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_blurb admin_label=\\\"Blurb\\\" url_new_window=\\\"off\\\" use_icon=\\\"on\\\" font_icon=\\\"%%45%%\\\" icon_color=\\\"#a5a5a5\\\" use_circle=\\\"off\\\" circle_color=\\\"#9cb66e\\\" use_circle_border=\\\"off\\\" circle_border_color=\\\"#9cb66e\\\" icon_placement=\\\"left\\\" animation=\\\"off\\\" background_layout=\\\"light\\\" text_orientation=\\\"left\\\" use_icon_font_size=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\"]<\\/p>\\n<p>Extend the use of the Divi Builder to include new sections and pages<\\/p>\\n<p>[\\/et_pb_blurb][et_pb_blurb admin_label=\\\"Blurb\\\" url_new_window=\\\"off\\\" use_icon=\\\"on\\\" font_icon=\\\"%%45%%\\\" icon_color=\\\"#a5a5a5\\\" use_circle=\\\"off\\\" circle_color=\\\"#9cb66e\\\" use_circle_border=\\\"off\\\" circle_border_color=\\\"#9cb66e\\\" icon_placement=\\\"left\\\" animation=\\\"off\\\" background_layout=\\\"light\\\" text_orientation=\\\"left\\\" use_icon_font_size=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\"]<\\/p>\\n<p>Use the Divi Builder in even more spaces within your website<\\/p>\\n<p>[\\/et_pb_blurb][et_pb_blurb admin_label=\\\"Blurb\\\" url_new_window=\\\"off\\\" use_icon=\\\"on\\\" font_icon=\\\"%%45%%\\\" icon_color=\\\"#a5a5a5\\\" use_circle=\\\"off\\\" circle_color=\\\"#9cb66e\\\" use_circle_border=\\\"off\\\" circle_border_color=\\\"#9cb66e\\\" icon_placement=\\\"left\\\" animation=\\\"off\\\" background_layout=\\\"light\\\" text_orientation=\\\"left\\\" use_icon_font_size=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\"]<\\/p>\\n<p>Add the functionality of the Divi Builder to even more spaces of your Divi website<\\/p>\\n<p>[\\/et_pb_blurb][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section]<\\/p>\\n\",\"changelog\":\"<p>Change log<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"description\":[\"<p>[et_pb_section bb_built=\\\"1\\\" admin_label=\\\"Section\\\" fullwidth=\\\"off\\\" specialty=\\\"off\\\" transparent_background=\\\"off\\\" background_color=\\\"#f51049\\\" allow_player_pause=\\\"off\\\" inner_shadow=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" make_equal=\\\"off\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"50px||150px|\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_padding_last_edited=\\\"on|phone\\\"][et_pb_row admin_label=\\\"Row\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading\\\" background_layout=\\\"dark\\\" text_orientation=\\\"center\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" text_font=\\\"|on|||\\\" custom_css_before=\\\"content: \'\';||width: 60px;||height: 3px;||background-color: #fff;||opacity:0.5;||position: absolute;||bottom: 30px;||left: 50%;||margin-left: -30px;\\\" custom_css_main_element=\\\"line-height: 1.25; ||position: relative; \\\" text_font_size=\\\"30px\\\" custom_margin=\\\"||0px|\\\" custom_padding=\\\"||60px|\\\" text_font_size_tablet=\\\"28px\\\" text_font_size_phone=\\\"25px\\\" text_font_size_last_edited=\\\"on|phone\\\"]<\\/p>\\n<p>Use the Divi Builder like never before!<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Text\\\" background_layout=\\\"dark\\\" text_orientation=\\\"center\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" custom_css_main_element=\\\"opacity: 0.75;||line-height: 1.5;\\\" text_font_size=\\\"17px\\\" text_font_size_phone=\\\"15px\\\" text_font_size_last_edited=\\\"on|phone\\\"]<\\/p>\\n<p>Take control of your Divi website and use the Divi Builder in even more places!<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" admin_label=\\\"section\\\" transparent_background=\\\"off\\\" allow_player_pause=\\\"off\\\" inner_shadow=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"off\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" make_equal=\\\"off\\\" use_custom_gutter=\\\"off\\\" module_class=\\\"download_row_fix\\\" custom_padding=\\\"0px||0px|\\\"][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\" module_class=\\\"product-description-image\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image admin_label=\\\"Plugin screenshot \\\" show_in_lightbox=\\\"off\\\" url_new_window=\\\"off\\\" use_overlay=\\\"off\\\" animation=\\\"off\\\" sticky=\\\"off\\\" align=\\\"center\\\" force_fullwidth=\\\"off\\\" always_center_on_mobile=\\\"on\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" src=\\\"\\/wp-content\\/uploads\\/edd\\/2017\\/07\\/PBE.png\\\" custom_margin=\\\"-150px|||\\\" custom_margin_tablet=\\\"-125px|||\\\" custom_margin_phone=\\\"-100px|||\\\" custom_margin_last_edited=\\\"on|phone\\\" custom_css_main_element=\\\"position: relative;||width: 90%;||margin: 0px auto; \\\" \\/][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" admin_label=\\\"Section\\\" fullwidth=\\\"off\\\" specialty=\\\"off\\\" transparent_background=\\\"off\\\" allow_player_pause=\\\"off\\\" inner_shadow=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" custom_padding=\\\"0px|||\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" make_equal=\\\"off\\\" use_custom_gutter=\\\"off\\\"][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"||0px|\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading (left)\\\" background_layout=\\\"light\\\" text_orientation=\\\"left\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" text_font=\\\"|on|||\\\" custom_css_before=\\\"content: \'\';||width: 60px;||height: 3px;||background-color:#F51049;||position: absolute;||bottom: 20px;||left: 0; \\\" custom_css_main_element=\\\"line-height: 1.25; ||position: relative; \\\" text_font_size=\\\"30px\\\" custom_margin=\\\"||0px|\\\" custom_padding=\\\"||40px|\\\" text_font_size_tablet=\\\"28px\\\" text_font_size_phone=\\\"25px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_text_color=\\\"#333333\\\" header_font_size=\\\"25px\\\" header_font_size_phone=\\\"23px\\\" header_font_size_last_edited=\\\"on|desktop\\\"]<\\/p>\\n<p>About Page Builder Everywhere<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row admin_label=\\\"row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\" custom_padding=\\\"20px|||\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Text\\\" background_layout=\\\"light\\\" text_orientation=\\\"left\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\"]<\\/p>\\n<p>With the Page Builder Everywhere plugin, you\\u2019ll be able to extend the reach of the Divi Builder plugin to outside of its standard scope to include the use of customizable modules in a range of new exciting areas, sections, and pages. From headers to footers and sidebars, 404 error pages and more, Page Builder Everywhere lets you use the Divi Builder in its normal state like never before<\\/p>\\n<p>[\\/et_pb_text][et_pb_image admin_label=\\\"Mockup Image \\\" src=\\\"\\/wp-content\\/uploads\\/edd\\/2017\\/07\\/pbe2.png\\\" show_in_lightbox=\\\"off\\\" url_new_window=\\\"off\\\" use_overlay=\\\"off\\\" animation=\\\"off\\\" sticky=\\\"off\\\" align=\\\"center\\\" force_fullwidth=\\\"off\\\" always_center_on_mobile=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" custom_margin=\\\"||0px|\\\" \\/][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" admin_label=\\\"Section\\\" fullwidth=\\\"off\\\" specialty=\\\"off\\\" transparent_background=\\\"off\\\" background_color=\\\"#313439\\\" allow_player_pause=\\\"off\\\" inner_shadow=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" make_equal=\\\"off\\\" use_custom_gutter=\\\"off\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_padding_last_edited=\\\"off|phone\\\" custom_css_before=\\\" width: 0; || height: 0; || border-left: 40px solid transparent;|| border-right: 40px solid transparent;|| border-top: 40px solid #fff;||position:absolute;||left: 50%;||margin-left: -40px;||content:\'\';||top:0;\\\" custom_padding=\\\"50px|||\\\"][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"||0px|\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading (left)\\\" background_layout=\\\"dark\\\" text_orientation=\\\"left\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" text_font=\\\"|on|||\\\" custom_css_before=\\\"content: \'\';||width: 60px;||height: 3px;||background-color: #F51049;||position: absolute;||bottom: 20px;||left: 0; \\\" custom_css_main_element=\\\"line-height: 1.25; ||position: relative; \\\" text_font_size=\\\"30px\\\" custom_margin=\\\"||0px|\\\" custom_padding=\\\"||40px|\\\" text_font_size_tablet=\\\"28px\\\" text_font_size_phone=\\\"25px\\\" text_font_size_last_edited=\\\"on|phone\\\" header_font_size=\\\"25px\\\" header_font_size_phone=\\\"23px\\\" header_font_size_last_edited=\\\"on|desktop\\\"]<\\/p>\\n<p>Enhance the Divi Theme<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"20px|||\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Text\\\" background_layout=\\\"dark\\\" text_orientation=\\\"left\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" custom_css_main_element=\\\"opacity: 0.8;\\\"]<\\/p>\\n<p>While the Divi Builder is a powerful visual builder, it can\\u2019t be used with the same level of fluidity in each and every aspect of website development. Page Builder Everywhere is an incredibly handy plugin that solves this by allowing the use of the builder outside of its standard scope. Continuing the builder\\u2019s native function, users will be afforded the same drag and drop modular functionality of the Divi Builder in headers, footers, and sidebars, as well as on 404 error, category, search, archive and WooCommerce pages.<\\/p>\\n<p>With Page Builder Everywhere, users are able to craft each section, page or element to their hearts desire, with the same available modules in the same familiar fashion. Page Builder Everywhere both saves Divi users of all skill levels countless hours, and too, allows for the design of a one-of-a-kind web aesthetic by enabling the use of maps, forms, call-to-actions and more in unique and eye-catching locations.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image admin_label=\\\"Mockup Image \\\" src=\\\"\\/wp-content\\/uploads\\/edd\\/2017\\/07\\/pbe2LAYOUT-1.png\\\" show_in_lightbox=\\\"off\\\" url_new_window=\\\"off\\\" use_overlay=\\\"off\\\" animation=\\\"off\\\" sticky=\\\"off\\\" align=\\\"center\\\" force_fullwidth=\\\"off\\\" always_center_on_mobile=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" \\/][et_pb_image admin_label=\\\"Mockup Image \\\" src=\\\"\\/wp-content\\/uploads\\/edd\\/2017\\/07\\/pbe2LAYOUT-2.png\\\" show_in_lightbox=\\\"off\\\" url_new_window=\\\"off\\\" use_overlay=\\\"off\\\" animation=\\\"off\\\" sticky=\\\"off\\\" align=\\\"center\\\" force_fullwidth=\\\"off\\\" always_center_on_mobile=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" custom_margin=\\\"||0px|\\\" \\/][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" admin_label=\\\"Section\\\" fullwidth=\\\"off\\\" specialty=\\\"off\\\" transparent_background=\\\"off\\\" background_color=\\\"#f5f6fa\\\" allow_player_pause=\\\"off\\\" inner_shadow=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" make_equal=\\\"off\\\" use_custom_gutter=\\\"off\\\"][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"||0px|\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading\\\" background_layout=\\\"light\\\" text_orientation=\\\"center\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\" text_font=\\\"|on|||\\\" custom_css_before=\\\"content: \'\';||width: 60px;||height: 3px;||background-color:#F51049;||position: absolute;||bottom: 30px;||left: 50%;||margin-left: -30px;\\\" custom_css_main_element=\\\"line-height: 1.25; ||position: relative; \\\" text_font_size=\\\"30px\\\" custom_margin=\\\"||0px|\\\" custom_padding=\\\"||60px|\\\" text_font_size_tablet=\\\"28px\\\" text_font_size_phone=\\\"25px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_text_color=\\\"#333333\\\"]<\\/p>\\n<p>Page Builder Everywhere Features<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row admin_label=\\\"Row\\\" make_fullwidth=\\\"off\\\" use_custom_width=\\\"off\\\" width_unit=\\\"on\\\" use_custom_gutter=\\\"off\\\" custom_padding=\\\"10px|||\\\" allow_player_pause=\\\"off\\\" parallax=\\\"off\\\" parallax_method=\\\"on\\\" make_equal=\\\"off\\\" parallax_1=\\\"off\\\" parallax_method_1=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_blurb admin_label=\\\"Blurb\\\" url_new_window=\\\"off\\\" use_icon=\\\"on\\\" font_icon=\\\"%%45%%\\\" icon_color=\\\"#a5a5a5\\\" use_circle=\\\"off\\\" circle_color=\\\"#9cb66e\\\" use_circle_border=\\\"off\\\" circle_border_color=\\\"#9cb66e\\\" icon_placement=\\\"left\\\" animation=\\\"off\\\" background_layout=\\\"light\\\" text_orientation=\\\"left\\\" use_icon_font_size=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\"]<\\/p>\\n<p>Extend the use of the Divi Builder to include new sections and pages<\\/p>\\n<p>[\\/et_pb_blurb][et_pb_blurb admin_label=\\\"Blurb\\\" url_new_window=\\\"off\\\" use_icon=\\\"on\\\" font_icon=\\\"%%45%%\\\" icon_color=\\\"#a5a5a5\\\" use_circle=\\\"off\\\" circle_color=\\\"#9cb66e\\\" use_circle_border=\\\"off\\\" circle_border_color=\\\"#9cb66e\\\" icon_placement=\\\"left\\\" animation=\\\"off\\\" background_layout=\\\"light\\\" text_orientation=\\\"left\\\" use_icon_font_size=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\"]<\\/p>\\n<p>Use the Divi Builder in even more spaces within your website<\\/p>\\n<p>[\\/et_pb_blurb][et_pb_blurb admin_label=\\\"Blurb\\\" url_new_window=\\\"off\\\" use_icon=\\\"on\\\" font_icon=\\\"%%45%%\\\" icon_color=\\\"#a5a5a5\\\" use_circle=\\\"off\\\" circle_color=\\\"#9cb66e\\\" use_circle_border=\\\"off\\\" circle_border_color=\\\"#9cb66e\\\" icon_placement=\\\"left\\\" animation=\\\"off\\\" background_layout=\\\"light\\\" text_orientation=\\\"left\\\" use_icon_font_size=\\\"off\\\" use_border_color=\\\"off\\\" border_color=\\\"#ffffff\\\" border_style=\\\"solid\\\"]<\\/p>\\n<p>Add the functionality of the Divi Builder to even more spaces of your Divi website<\\/p>\\n<p>[\\/et_pb_blurb][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section]<\\/p>\\n\"],\"changelog\":[\"<p>Change log<\\/p>\\n\"]}\";}','yes'),(2781,'DS_PBE_license_key','ad68536ffcaa88f497c392e325f4ee37','yes'),(2784,'DS_PBE_license_status','valid','yes'),(2785,'widget_divi_pb_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `sts_options` VALUES (2814,'ff3804ddb5e691f023d88a85a82119fa','a:2:{s:7:\"timeout\";i:1543925148;s:5:\"value\";s:139098:\"{\"new_version\":\"3.0.0\",\"stable_version\":\"3.0.0\",\"name\":\"Page Builder Everywhere\",\"slug\":\"pbe\",\"url\":\"https:\\/\\/divi.space\\/product\\/page-builder-everywhere\\/?changelog=1\",\"last_updated\":\"2018-11-22 08:46:32\",\"homepage\":\"https:\\/\\/divi.space\\/product\\/page-builder-everywhere\\/\",\"package\":\"https:\\/\\/divi.space\\/edd-sl\\/package_download\\/MTU0NDE0NDc0ODphZDY4NTM2ZmZjYWE4OGY0OTdjMzkyZTMyNWY0ZWUzNzoyOTY0OjJiNjZmZmMxYzlhZTg2MWI0ZjAzYzYyNjE0ODEyMjU1Omh0dHBzQC8vd3d3LnN0YWRzaWcuY28uemE6MA==\",\"download_link\":\"https:\\/\\/divi.space\\/edd-sl\\/package_download\\/MTU0NDE0NDc0ODphZDY4NTM2ZmZjYWE4OGY0OTdjMzkyZTMyNWY0ZWUzNzoyOTY0OjJiNjZmZmMxYzlhZTg2MWI0ZjAzYzYyNjE0ODEyMjU1Omh0dHBzQC8vd3d3LnN0YWRzaWcuY28uemE6MA==\",\"sections\":{\"description\":\"<p>[et_pb_section bb_built=\\\"1\\\" custom_padding_last_edited=\\\"on|phone\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#f5234f\\\" background_image=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_bg.png\\\" background_size=\\\"contain\\\" background_position=\\\"bottom_right\\\" custom_padding=\\\"60px||260px|\\\" custom_padding_tablet=\\\"||260px\\\" custom_padding_phone=\\\"55px||190px\\\" collapsed=\\\"off\\\" next_background_color=\\\"#ffffff\\\"][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"85%\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_logo-3.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"120px\\\" custom_margin=\\\"||50px\\\" \\/][et_pb_text admin_label=\\\"Heading h2\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"||||||||\\\" header_font=\\\"||||||||\\\" header_2_font=\\\"Raleway||||||||\\\" header_2_text_align=\\\"center\\\" header_2_text_color=\\\"#ffffff\\\" header_2_font_size=\\\"40px\\\" header_2_font_size_tablet=\\\"37px\\\" header_2_font_size_phone=\\\"35px\\\" header_2_font_size_last_edited=\\\"on|phone\\\" header_2_line_height=\\\"1.2em\\\" custom_margin=\\\"||10px\\\"]<\\/p>\\n<p>Page Builder Everywhere<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||10px\\\"]<\\/p>\\n<p>Page Builder Everywhere brings the extraordinary power of the Divi Builder to new and exciting places. No longer is it only supported on posts, pages and certain custom post types: wherever text goes, Divi goes!<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" custom_padding=\\\"0|0px|0|0px|false|false\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#f5234f\\\" next_background_color=\\\"#f5234f\\\"][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"0|0px|0|0px|false|false\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-7.png\\\" _builder_version=\\\"3.17.6\\\" custom_margin=\\\"-230px||0px\\\" custom_margin_tablet=\\\"-250px||\\\" custom_margin_phone=\\\"-170px||\\\" custom_margin_last_edited=\\\"on|phone\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"85%\\\" custom_padding=\\\"0|0px|0|0px|false|false\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway|700|||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"32px\\\" text_font_size_tablet=\\\"30px\\\" text_font_size_phone=\\\"26px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"-50px||0px\\\"]<\\/p>\\n<p>Use The Page Builder You <span style=\\\"color: #f5234f;\\\">Love<\\/span> In Places <span style=\\\"font-size: 125%; display: block;\\\">You Never Thought You Could<\\/span><\\/p>\\n<p>[\\/et_pb_text][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/gearsIcon.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"150px\\\" module_alignment=\\\"center\\\" custom_padding=\\\"55px||55px||true\\\" \\/][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" custom_padding_last_edited=\\\"off|phone\\\" module_id=\\\"features\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#f5234f\\\" custom_padding=\\\"90px||24px||false|false\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_css_before=\\\" width: 0; || height: 0; || border-left: 80px solid transparent;|| border-right: 80px solid transparent;|| border-top: 80px solid #fff;||position:absolute;||left: 50%;||margin-left: -80px;||content:\'\';||top:0;\\\" transparent_background=\\\"off\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#ffffff\\\" next_background_color=\\\"#ffffff\\\"][et_pb_row custom_padding=\\\"75px||75px||true\\\" custom_margin=\\\"||0px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_4_font=\\\"Raleway|600|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#ffffff\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" max_width=\\\"385px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Turn The Page Builder Into A Website Builder<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Page Builder Everywhere lets you use any design you save to the Divi library, in areas that were previously not reachable or editable without significant code changes. New custom built headers, footers, and sidebars are just the start!<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"0px||0px||true\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_logo-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"85px\\\" module_alignment=\\\"center\\\" custom_padding=\\\"0px||0px||true\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"75px||75px||true\\\" custom_margin=\\\"||0px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_4_font=\\\"Raleway|600|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#ffffff\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" max_width=\\\"450px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>The Most User Friendly Layout Injector For Divi<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Page Builder Everywhere\\u2019s unique widget powered user interface makes using Divi Layouts in new places a breeze: Choose the design you want, choose where you want it to go and you\\u2019re done! It really is that simple.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"0px||0px||true\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_logo-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"85px\\\" module_alignment=\\\"center\\\" custom_padding=\\\"0px||0px||true\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"75px||75px||true\\\" custom_margin=\\\"||0px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_4_font=\\\"Raleway|600|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#ffffff\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Introducing the Divi Inserter Button<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>As well as support for the Divi Builder in non-editable areas, Page Builder Everywhere also empowers you to use Divi Layouts anywhere that supports text, including within WordPress, third party plugins and even other Divi Modules!<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"0|0px|0|0px|false|false\\\" disabled_on=\\\"off|off|off\\\" _builder_version=\\\"3.17.6\\\" disabled=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_video src=\\\"https:\\/\\/youtu.be\\/EJMpDyXJN_A\\\" _builder_version=\\\"3.17.6\\\" border_radii=\\\"on|10px|10px|10px|10px\\\" border_width_all=\\\"5px\\\" border_color_all=\\\"#ffffff\\\" box_shadow_style=\\\"preset1\\\" max_width=\\\"700px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||15px\\\" image_src=\\\"https:\\/\\/divi.space\\/wp-content\\/uploads\\/edd\\/2018\\/11\\/page_builder_everywhere_featured_image.png\\\" \\/][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_video-section-shadow.png\\\" show_bottom_space=\\\"off\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_margin=\\\"||0px\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"25px|0px|16px|0px|false|false\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_button admin_label=\\\"Orange button - full color\\\" button_url=\\\"\\/?edd_action=add_to_cart&download_id=2964\\\" button_text=\\\"Purchase now\\\" button_alignment=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_button=\\\"on\\\" button_text_size=\\\"21px\\\" button_text_color=\\\"#ffffff\\\" button_bg_color=\\\"#414ac0\\\" button_border_width=\\\"2px\\\" button_border_color=\\\"#414ac0\\\" button_border_radius=\\\"5px\\\" button_font=\\\"Raleway|600||on|||||\\\" button_use_icon=\\\"off\\\" custom_margin=\\\"10px|15px|10px|15px|true|true\\\" custom_padding=\\\"10px|30px|10px|30px|true|true\\\" custom_css_main_element=\\\"min-width: 260px;\\\" button_text_color__hover_enabled=\\\"on\\\" button_text_color__hover=\\\"#ffffff\\\" button_bg_color__hover_enabled=\\\"on\\\" button_bg_color__hover=\\\"#323895\\\" button_border_color__hover_enabled=\\\"on\\\" button_border_color__hover=\\\"#323895\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"75px||75px||true\\\" custom_margin=\\\"||0px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_4_font=\\\"Raleway|600|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#ffffff\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Endless Logic, Effortless Design<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>You want a different footer on your shop pages or a different header for logged in users? No problem! With Page Builder Everywhere\\u2019s logic engine, you can decide what goes where and when, based on dozens of built in rules.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" custom_padding=\\\"100px||110px\\\" custom_css_before=\\\" width: 0; || height: 0; || border-left: 40px solid transparent;|| border-right: 40px solid transparent;|| border-top: 40px solid #f5234f;||position:absolute;||left: 50%;||margin-left: -40px;||content:\'\';||top:0;\\\" custom_css_after=\\\"width: 0; ||height: 0; ||border-left: 80px solid transparent;||border-right: 80px solid transparent;||border-bottom: 80px solid #f4f4f4;||position:absolute;||left: 50%;||margin-left: -80px;||content:\'\';||bottom:0;\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#f5234f\\\" next_background_color=\\\"#f4f4f4\\\"][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"20px||60px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-5.png\\\" _builder_version=\\\"3.17.6\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway|700|||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"35px\\\" text_font_size_tablet=\\\"30px\\\" text_font_size_phone=\\\"26px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>The tool for people who <span style=\\\"color: #f5234f;\\\">THINK<\\/span><br \\/>\\noutside the box and want to <span style=\\\"color: #f5234f;\\\">BUILD<\\/span> <span style=\\\"font-size: 125%; display: block;\\\">outside the box<\\/span><\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" custom_padding_last_edited=\\\"off|phone\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#f4f4f4\\\" custom_padding=\\\"90px||140px||false|false\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_css_after=\\\"width: 0; ||height: 0; ||border-left: 80px solid transparent;||border-right: 80px solid transparent;||border-bottom: 80px solid #fff;||position:absolute;||left: 50%;||margin-left: -80px;||content:\'\';||bottom:0;\\\" transparent_background=\\\"off\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#ffffff\\\" next_background_color=\\\"#ffffff\\\"][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||50px\\\"]<\\/p>\\n<p>We know you love Divi and we know you love how easy it makes building beautiful, functional pages.<br \\/> <strong>That\\u2019s why we built Page Builder Everywhere; so you can love the top and bottom of your website as much as you love the middle.<\\/strong><\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" max_width=\\\"440px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Here are some ways you can use Divi like never before with Page Builder Everywhere:<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" custom_width_px=\\\"550px\\\" custom_padding=\\\"30px|30px|30px|30px|true|true\\\" custom_margin=\\\"35px||35px||true\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" border_radii=\\\"on|10px|10px|10px|10px\\\" box_shadow_style=\\\"preset1\\\" box_shadow_vertical=\\\"0px\\\" box_shadow_blur=\\\"53px\\\" box_shadow_spread=\\\"6px\\\" box_shadow_color=\\\"rgba(0,0,0,0.03)\\\" custom_css_main_element=\\\"width: 85%;\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_features_icons-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" max_width=\\\"352px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"30px||35px\\\" \\/][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700||on|||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"25px\\\" header_4_font_size_tablet=\\\"24px\\\" header_4_font_size_phone=\\\"23px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Header<\\/p>\\n<p>[\\/et_pb_text][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/check-icon-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" custom_margin=\\\"30px||15px\\\" use_overlay__hover=\\\"off\\\" use_overlay__hover_enabled=\\\"off\\\" show_bottom_space__hover=\\\"on\\\" show_bottom_space__hover_enabled=\\\"on\\\" align__hover=\\\"left\\\" align__hover_enabled=\\\"left\\\" force_fullwidth__hover=\\\"off\\\" force_fullwidth__hover_enabled=\\\"off\\\" always_center_on_mobile__hover=\\\"on\\\" always_center_on_mobile__hover_enabled=\\\"on\\\" border_radii__hover=\\\"on||||\\\" border_radii__hover_enabled=\\\"on||||\\\" box_shadow_style__hover=\\\"none\\\" box_shadow_style__hover_enabled=\\\"none\\\" box_shadow_color__hover=\\\"rgba(0,0,0,0.3)\\\" box_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.3)\\\" max_width__hover=\\\"100%\\\" max_width__hover_enabled=\\\"100%\\\" filter_hue_rotate__hover=\\\"0deg\\\" filter_hue_rotate__hover_enabled=\\\"0deg\\\" filter_saturate__hover=\\\"100%\\\" filter_saturate__hover_enabled=\\\"100%\\\" filter_brightness__hover=\\\"100%\\\" filter_brightness__hover_enabled=\\\"100%\\\" filter_contrast__hover=\\\"100%\\\" filter_contrast__hover_enabled=\\\"100%\\\" filter_invert__hover=\\\"0%\\\" filter_invert__hover_enabled=\\\"0%\\\" filter_sepia__hover=\\\"0%\\\" filter_sepia__hover_enabled=\\\"0%\\\" filter_opacity__hover=\\\"100%\\\" filter_opacity__hover_enabled=\\\"100%\\\" filter_blur__hover=\\\"0px\\\" filter_blur__hover_enabled=\\\"0px\\\" mix_blend_mode__hover=\\\"normal\\\" mix_blend_mode__hover_enabled=\\\"normal\\\" animation_style__hover=\\\"none\\\" animation_style__hover_enabled=\\\"none\\\" animation_repeat__hover=\\\"once\\\" animation_repeat__hover_enabled=\\\"once\\\" animation_direction__hover=\\\"center\\\" animation_direction__hover_enabled=\\\"center\\\" animation_duration__hover=\\\"1000ms\\\" animation_duration__hover_enabled=\\\"1000ms\\\" animation_delay__hover=\\\"0ms\\\" animation_delay__hover_enabled=\\\"0ms\\\" animation_intensity_slide__hover=\\\"50%\\\" animation_intensity_slide__hover_enabled=\\\"50%\\\" animation_intensity_zoom__hover=\\\"50%\\\" animation_intensity_zoom__hover_enabled=\\\"50%\\\" animation_intensity_flip__hover=\\\"50%\\\" animation_intensity_flip__hover_enabled=\\\"50%\\\" animation_intensity_fold__hover=\\\"50%\\\" animation_intensity_fold__hover_enabled=\\\"50%\\\" animation_intensity_roll__hover=\\\"50%\\\" animation_intensity_roll__hover_enabled=\\\"50%\\\" animation_starting_opacity__hover=\\\"0%\\\" animation_starting_opacity__hover_enabled=\\\"0%\\\" animation_speed_curve__hover=\\\"ease-in-out\\\" animation_speed_curve__hover_enabled=\\\"ease-in-out\\\" \\/][et_pb_text ul_type=\\\"none\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.6em\\\" ul_font=\\\"||||||||\\\" ul_text_align=\\\"center\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<ul>\\n<li><span>Replace the default header with one you built yourself <\\/span><\\/li>\\n<li><span>Add a second header above or below the existing one <\\/span><\\/li>\\n<li><span>Add promo bars above Divi\\u2019s header (We\\u2019ve even included some for you!) <\\/span><\\/li>\\n<\\/ul>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" custom_width_px=\\\"550px\\\" custom_padding=\\\"30px|30px|30px|30px|true|true\\\" custom_margin=\\\"35px||35px||true\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" border_radii=\\\"on|10px|10px|10px|10px\\\" box_shadow_style=\\\"preset1\\\" box_shadow_vertical=\\\"0px\\\" box_shadow_blur=\\\"53px\\\" box_shadow_spread=\\\"6px\\\" box_shadow_color=\\\"rgba(0,0,0,0.03)\\\" custom_css_main_element=\\\"width: 85%;\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_features_icons-3.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" max_width=\\\"352px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"30px||35px\\\" \\/][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700||on|||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"25px\\\" header_4_font_size_tablet=\\\"24px\\\" header_4_font_size_phone=\\\"23px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Main area<\\/p>\\n<p>[\\/et_pb_text][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/check-icon-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" custom_margin=\\\"30px||15px\\\" use_overlay__hover=\\\"off\\\" use_overlay__hover_enabled=\\\"off\\\" show_bottom_space__hover=\\\"on\\\" show_bottom_space__hover_enabled=\\\"on\\\" align__hover=\\\"left\\\" align__hover_enabled=\\\"left\\\" force_fullwidth__hover=\\\"off\\\" force_fullwidth__hover_enabled=\\\"off\\\" always_center_on_mobile__hover=\\\"on\\\" always_center_on_mobile__hover_enabled=\\\"on\\\" border_radii__hover=\\\"on||||\\\" border_radii__hover_enabled=\\\"on||||\\\" box_shadow_style__hover=\\\"none\\\" box_shadow_style__hover_enabled=\\\"none\\\" box_shadow_color__hover=\\\"rgba(0,0,0,0.3)\\\" box_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.3)\\\" max_width__hover=\\\"100%\\\" max_width__hover_enabled=\\\"100%\\\" filter_hue_rotate__hover=\\\"0deg\\\" filter_hue_rotate__hover_enabled=\\\"0deg\\\" filter_saturate__hover=\\\"100%\\\" filter_saturate__hover_enabled=\\\"100%\\\" filter_brightness__hover=\\\"100%\\\" filter_brightness__hover_enabled=\\\"100%\\\" filter_contrast__hover=\\\"100%\\\" filter_contrast__hover_enabled=\\\"100%\\\" filter_invert__hover=\\\"0%\\\" filter_invert__hover_enabled=\\\"0%\\\" filter_sepia__hover=\\\"0%\\\" filter_sepia__hover_enabled=\\\"0%\\\" filter_opacity__hover=\\\"100%\\\" filter_opacity__hover_enabled=\\\"100%\\\" filter_blur__hover=\\\"0px\\\" filter_blur__hover_enabled=\\\"0px\\\" mix_blend_mode__hover=\\\"normal\\\" mix_blend_mode__hover_enabled=\\\"normal\\\" animation_style__hover=\\\"none\\\" animation_style__hover_enabled=\\\"none\\\" animation_repeat__hover=\\\"once\\\" animation_repeat__hover_enabled=\\\"once\\\" animation_direction__hover=\\\"center\\\" animation_direction__hover_enabled=\\\"center\\\" animation_duration__hover=\\\"1000ms\\\" animation_duration__hover_enabled=\\\"1000ms\\\" animation_delay__hover=\\\"0ms\\\" animation_delay__hover_enabled=\\\"0ms\\\" animation_intensity_slide__hover=\\\"50%\\\" animation_intensity_slide__hover_enabled=\\\"50%\\\" animation_intensity_zoom__hover=\\\"50%\\\" animation_intensity_zoom__hover_enabled=\\\"50%\\\" animation_intensity_flip__hover=\\\"50%\\\" animation_intensity_flip__hover_enabled=\\\"50%\\\" animation_intensity_fold__hover=\\\"50%\\\" animation_intensity_fold__hover_enabled=\\\"50%\\\" animation_intensity_roll__hover=\\\"50%\\\" animation_intensity_roll__hover_enabled=\\\"50%\\\" animation_starting_opacity__hover=\\\"0%\\\" animation_starting_opacity__hover_enabled=\\\"0%\\\" animation_speed_curve__hover=\\\"ease-in-out\\\" animation_speed_curve__hover_enabled=\\\"ease-in-out\\\" \\/][et_pb_text ul_type=\\\"none\\\" disabled_on=\\\"off|off|off\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.6em\\\" ul_font=\\\"||||||||\\\" ul_text_align=\\\"center\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<ul>\\n<li><span>Add a Divi layout above and below content on all pages <\\/span><\\/li>\\n<li><span>Use the Divi Builder on archive pages, before and after the content <\\/span><\\/li>\\n<li><span>Use the Divi Builder anywhere that supports rich text <\\/span><\\/li>\\n<li><span>Use the Divi Builder inside Divi Modules <\\/span><\\/li>\\n<\\/ul>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" custom_width_px=\\\"550px\\\" custom_padding=\\\"30px|30px|30px|30px|true|true\\\" custom_margin=\\\"35px||35px||true\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" border_radii=\\\"on|10px|10px|10px|10px\\\" box_shadow_style=\\\"preset1\\\" box_shadow_vertical=\\\"0px\\\" box_shadow_blur=\\\"53px\\\" box_shadow_spread=\\\"6px\\\" box_shadow_color=\\\"rgba(0,0,0,0.03)\\\" custom_css_main_element=\\\"width: 85%;\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_features_icons-2.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" max_width=\\\"352px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"30px||35px\\\" \\/][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700||on|||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"25px\\\" header_4_font_size_tablet=\\\"24px\\\" header_4_font_size_phone=\\\"23px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Footer<\\/p>\\n<p>[\\/et_pb_text][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/check-icon-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" custom_margin=\\\"30px||15px\\\" use_overlay__hover=\\\"off\\\" use_overlay__hover_enabled=\\\"off\\\" show_bottom_space__hover=\\\"on\\\" show_bottom_space__hover_enabled=\\\"on\\\" align__hover=\\\"left\\\" align__hover_enabled=\\\"left\\\" force_fullwidth__hover=\\\"off\\\" force_fullwidth__hover_enabled=\\\"off\\\" always_center_on_mobile__hover=\\\"on\\\" always_center_on_mobile__hover_enabled=\\\"on\\\" border_radii__hover=\\\"on||||\\\" border_radii__hover_enabled=\\\"on||||\\\" box_shadow_style__hover=\\\"none\\\" box_shadow_style__hover_enabled=\\\"none\\\" box_shadow_color__hover=\\\"rgba(0,0,0,0.3)\\\" box_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.3)\\\" max_width__hover=\\\"100%\\\" max_width__hover_enabled=\\\"100%\\\" filter_hue_rotate__hover=\\\"0deg\\\" filter_hue_rotate__hover_enabled=\\\"0deg\\\" filter_saturate__hover=\\\"100%\\\" filter_saturate__hover_enabled=\\\"100%\\\" filter_brightness__hover=\\\"100%\\\" filter_brightness__hover_enabled=\\\"100%\\\" filter_contrast__hover=\\\"100%\\\" filter_contrast__hover_enabled=\\\"100%\\\" filter_invert__hover=\\\"0%\\\" filter_invert__hover_enabled=\\\"0%\\\" filter_sepia__hover=\\\"0%\\\" filter_sepia__hover_enabled=\\\"0%\\\" filter_opacity__hover=\\\"100%\\\" filter_opacity__hover_enabled=\\\"100%\\\" filter_blur__hover=\\\"0px\\\" filter_blur__hover_enabled=\\\"0px\\\" mix_blend_mode__hover=\\\"normal\\\" mix_blend_mode__hover_enabled=\\\"normal\\\" animation_style__hover=\\\"none\\\" animation_style__hover_enabled=\\\"none\\\" animation_repeat__hover=\\\"once\\\" animation_repeat__hover_enabled=\\\"once\\\" animation_direction__hover=\\\"center\\\" animation_direction__hover_enabled=\\\"center\\\" animation_duration__hover=\\\"1000ms\\\" animation_duration__hover_enabled=\\\"1000ms\\\" animation_delay__hover=\\\"0ms\\\" animation_delay__hover_enabled=\\\"0ms\\\" animation_intensity_slide__hover=\\\"50%\\\" animation_intensity_slide__hover_enabled=\\\"50%\\\" animation_intensity_zoom__hover=\\\"50%\\\" animation_intensity_zoom__hover_enabled=\\\"50%\\\" animation_intensity_flip__hover=\\\"50%\\\" animation_intensity_flip__hover_enabled=\\\"50%\\\" animation_intensity_fold__hover=\\\"50%\\\" animation_intensity_fold__hover_enabled=\\\"50%\\\" animation_intensity_roll__hover=\\\"50%\\\" animation_intensity_roll__hover_enabled=\\\"50%\\\" animation_starting_opacity__hover=\\\"0%\\\" animation_starting_opacity__hover_enabled=\\\"0%\\\" animation_speed_curve__hover=\\\"ease-in-out\\\" animation_speed_curve__hover_enabled=\\\"ease-in-out\\\" \\/][et_pb_text ul_type=\\\"none\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.6em\\\" ul_font=\\\"||||||||\\\" ul_text_align=\\\"center\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<ul>\\n<li><span>Replace the footer with any custom layout <\\/span><\\/li>\\n<li><span>Replace the bottom footer with a layout <\\/span><\\/li>\\n<\\/ul>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_button admin_label=\\\"Orange button - full color\\\" button_url=\\\"\\/?edd_action=add_to_cart&download_id=2964\\\" button_text=\\\"Purchase now\\\" button_alignment=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_button=\\\"on\\\" button_text_size=\\\"21px\\\" button_text_color=\\\"#ffffff\\\" button_bg_color=\\\"#414ac0\\\" button_border_width=\\\"2px\\\" button_border_color=\\\"#414ac0\\\" button_border_radius=\\\"5px\\\" button_font=\\\"Raleway|600||on|||||\\\" button_use_icon=\\\"off\\\" custom_margin=\\\"10px|15px|10px|15px|true|true\\\" custom_padding=\\\"10px|30px|10px|30px|true|true\\\" custom_css_main_element=\\\"min-width: 260px;\\\" button_text_color__hover_enabled=\\\"on\\\" button_text_color__hover=\\\"#ffffff\\\" button_bg_color__hover_enabled=\\\"on\\\" button_bg_color__hover=\\\"#323895\\\" button_border_color__hover_enabled=\\\"on\\\" button_border_color__hover=\\\"#323895\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway|700|||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"32px\\\" text_font_size_tablet=\\\"30px\\\" text_font_size_phone=\\\"26px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\" max_width=\\\"470px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>1st &amp; #1:<br \\/>\\n<span style=\\\"color: #f5234f;\\\">Page Builder Everywhere<\\/span> Is The First And Best <span style=\\\"font-size: 125%; display: block;\\\">Divi Layout Inserter<\\/span><\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" custom_padding=\\\"60px|0px|75px|0px|false|false\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#f4f4f4\\\" next_background_color=\\\"#f5234f\\\"][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Familiar and Friendly UI<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Page Builder Everywhere is integrated with the WordPress<br \\/>\\nwidgets interface. Which means you already know how to use it.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"20px||60px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-1.png\\\" _builder_version=\\\"3.17.6\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"30px|0px|21px|0px|false|false\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>More Places<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Page Builder Everywhere empowers you to use Divi in more places, in more ways than any other plugin or child theme.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"20px||60px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-3.png\\\" _builder_version=\\\"3.17.6\\\" custom_margin=\\\"||40px\\\" \\/][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-2.png\\\" _builder_version=\\\"3.17.6\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" max_width=\\\"520px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Includes 20 Predesigned Notification and Promo Bars<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Use Page Builder Everywhere to highlight important notifications, promotional offers, discounts, new releases or simply collect email addresses with custom notification and promotional bars built with the Divi builder.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"20px||60px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-6.png\\\" _builder_version=\\\"3.17.6\\\" module_alignment=\\\"center\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"30px|0px|10px|0px|false|false\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" max_width=\\\"450px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>New User & Experienced Developer Friendly<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Page Builder Everywhere is simple enough to use that you could install it now and be an expert in five minutes. For Plugin & Child Theme Developers Page Builder Everywhere will automatically work with your products if they support widgets or rich text editing!<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" custom_padding_last_edited=\\\"off|phone\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#f5234f\\\" background_image=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_bg.png\\\" background_size=\\\"contain\\\" background_position=\\\"bottom_right\\\" custom_padding=\\\"90px||70px||false|false\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_css_before=\\\" width: 0; || height: 0; || border-left: 80px solid transparent;|| border-right: 80px solid transparent;|| border-top: 80px solid #fff;||position:absolute;||left: 50%;||margin-left: -80px;||content:\'\';||top:0;\\\" transparent_background=\\\"off\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#ffffff\\\" next_background_color=\\\"#ffffff\\\"][et_pb_row custom_padding=\\\"65px||65px||true|false\\\" custom_margin=\\\"||0px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/smileIcon.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||35px\\\" \\/][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_4_font=\\\"Raleway|600|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#ffffff\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>5-Star Customer Support<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>There\\u2019s a reason our customers rate us 5 stars for support: Our fast, knowledgeable staff are the crown jewel of our service offering, and they\\u2019re here to help solve any problems or answer any questions.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" custom_padding_last_edited=\\\"off|phone\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" custom_padding=\\\"54px||0||false|false\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_css_before=\\\" width: 0; || height: 0; || border-left: 40px solid transparent;|| border-right: 40px solid transparent;|| border-top: 40px solid #f5234f;||position:absolute;||left: 50%;||margin-left: -40px;||content:\'\';||top:0;\\\" transparent_background=\\\"off\\\" prev_background_color=\\\"#f5234f\\\" next_background_color=\\\"#000000\\\"][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_button admin_label=\\\"Orange button - full color\\\" button_url=\\\"\\/?edd_action=add_to_cart&download_id=2964\\\" button_text=\\\"Purchase now\\\" button_alignment=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_button=\\\"on\\\" button_text_size=\\\"27px\\\" button_text_color=\\\"#ffffff\\\" button_bg_color=\\\"#414ac0\\\" button_border_width=\\\"2px\\\" button_border_color=\\\"#414ac0\\\" button_border_radius=\\\"5px\\\" button_font=\\\"Raleway|600||on|||||\\\" button_use_icon=\\\"off\\\" button_text_size_tablet=\\\"25px\\\" button_text_size_phone=\\\"23px\\\" button_text_size_last_edited=\\\"on|desktop\\\" custom_margin=\\\"10px|15px|10px|15px|true|true\\\" custom_padding=\\\"20px|60px|20px|60px|true|true\\\" custom_padding_phone=\\\"15px|35px|15px|35px|true|true\\\" custom_padding_last_edited=\\\"on|phone\\\" custom_css_main_element=\\\"min-width: 260px;\\\" button_text_color__hover_enabled=\\\"on\\\" button_text_color__hover=\\\"#ffffff\\\" button_bg_color__hover_enabled=\\\"on\\\" button_bg_color__hover=\\\"#323895\\\" button_border_color__hover_enabled=\\\"on\\\" button_border_color__hover=\\\"#323895\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row _builder_version=\\\"3.17.6\\\" parallax_1__hover=\\\"off\\\" parallax_1__hover_enabled=\\\"off\\\" parallax_2__hover=\\\"off\\\" parallax_2__hover_enabled=\\\"off\\\" parallax_3__hover=\\\"off\\\" parallax_3__hover_enabled=\\\"off\\\" parallax_4__hover=\\\"off\\\" parallax_4__hover_enabled=\\\"off\\\" parallax_5__hover=\\\"off\\\" parallax_5__hover_enabled=\\\"off\\\" parallax_6__hover=\\\"off\\\" parallax_6__hover_enabled=\\\"off\\\" parallax_method_1__hover=\\\"on\\\" parallax_method_1__hover_enabled=\\\"on\\\" parallax_method_2__hover=\\\"on\\\" parallax_method_2__hover_enabled=\\\"on\\\" parallax_method_3__hover=\\\"on\\\" parallax_method_3__hover_enabled=\\\"on\\\" parallax_method_4__hover=\\\"on\\\" parallax_method_4__hover_enabled=\\\"on\\\" parallax_method_5__hover=\\\"on\\\" parallax_method_5__hover_enabled=\\\"on\\\" parallax_method_6__hover=\\\"on\\\" parallax_method_6__hover_enabled=\\\"on\\\" use_background_color_gradient__hover=\\\"off\\\" use_background_color_gradient__hover_enabled=\\\"off\\\" background_color_gradient_start__hover=\\\"#2b87da\\\" background_color_gradient_start__hover_enabled=\\\"#2b87da\\\" background_color_gradient_end__hover=\\\"#29c4a9\\\" background_color_gradient_end__hover_enabled=\\\"#29c4a9\\\" background_color_gradient_type__hover=\\\"linear\\\" background_color_gradient_type__hover_enabled=\\\"linear\\\" background_color_gradient_direction__hover=\\\"180deg\\\" background_color_gradient_direction__hover_enabled=\\\"180deg\\\" background_color_gradient_direction_radial__hover=\\\"center\\\" background_color_gradient_direction_radial__hover_enabled=\\\"center\\\" background_color_gradient_start_position__hover=\\\"0%\\\" background_color_gradient_start_position__hover_enabled=\\\"0%\\\" background_color_gradient_end_position__hover=\\\"100%\\\" background_color_gradient_end_position__hover_enabled=\\\"100%\\\" background_color_gradient_overlays_image__hover=\\\"off\\\" background_color_gradient_overlays_image__hover_enabled=\\\"off\\\" parallax__hover=\\\"off\\\" parallax__hover_enabled=\\\"off\\\" parallax_method__hover=\\\"on\\\" parallax_method__hover_enabled=\\\"on\\\" background_size__hover=\\\"cover\\\" background_size__hover_enabled=\\\"cover\\\" background_position__hover=\\\"center\\\" background_position__hover_enabled=\\\"center\\\" background_repeat__hover=\\\"no-repeat\\\" background_repeat__hover_enabled=\\\"no-repeat\\\" background_blend__hover=\\\"normal\\\" background_blend__hover_enabled=\\\"normal\\\" allow_player_pause__hover=\\\"off\\\" allow_player_pause__hover_enabled=\\\"off\\\" background_video_pause_outside_viewport__hover=\\\"on\\\" background_video_pause_outside_viewport__hover_enabled=\\\"on\\\" make_fullwidth__hover=\\\"off\\\" make_fullwidth__hover_enabled=\\\"off\\\" use_custom_width__hover=\\\"off\\\" use_custom_width__hover_enabled=\\\"off\\\" width_unit__hover=\\\"on\\\" width_unit__hover_enabled=\\\"on\\\" custom_width_px__hover=\\\"1080px\\\" custom_width_px__hover_enabled=\\\"1080px\\\" custom_width_percent__hover=\\\"80%\\\" custom_width_percent__hover_enabled=\\\"80%\\\" use_custom_gutter__hover=\\\"off\\\" use_custom_gutter__hover_enabled=\\\"off\\\" gutter_width__hover=\\\"2\\\" gutter_width__hover_enabled=\\\"2\\\" make_equal__hover=\\\"off\\\" make_equal__hover_enabled=\\\"off\\\" border_radii__hover=\\\"on||||\\\" border_radii__hover_enabled=\\\"on||||\\\" box_shadow_style__hover=\\\"none\\\" box_shadow_style__hover_enabled=\\\"none\\\" box_shadow_color__hover=\\\"rgba(0,0,0,0.3)\\\" box_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.3)\\\" filter_hue_rotate__hover=\\\"0deg\\\" filter_hue_rotate__hover_enabled=\\\"0deg\\\" filter_saturate__hover=\\\"100%\\\" filter_saturate__hover_enabled=\\\"100%\\\" filter_brightness__hover=\\\"100%\\\" filter_brightness__hover_enabled=\\\"100%\\\" filter_contrast__hover=\\\"100%\\\" filter_contrast__hover_enabled=\\\"100%\\\" filter_invert__hover=\\\"0%\\\" filter_invert__hover_enabled=\\\"0%\\\" filter_sepia__hover=\\\"0%\\\" filter_sepia__hover_enabled=\\\"0%\\\" filter_opacity__hover=\\\"100%\\\" filter_opacity__hover_enabled=\\\"100%\\\" filter_blur__hover=\\\"0px\\\" filter_blur__hover_enabled=\\\"0px\\\" mix_blend_mode__hover=\\\"normal\\\" mix_blend_mode__hover_enabled=\\\"normal\\\" animation_style__hover=\\\"none\\\" animation_style__hover_enabled=\\\"none\\\" animation_repeat__hover=\\\"once\\\" animation_repeat__hover_enabled=\\\"once\\\" animation_direction__hover=\\\"center\\\" animation_direction__hover_enabled=\\\"center\\\" animation_duration__hover=\\\"1000ms\\\" animation_duration__hover_enabled=\\\"1000ms\\\" animation_delay__hover=\\\"0ms\\\" animation_delay__hover_enabled=\\\"0ms\\\" animation_intensity_slide__hover=\\\"50%\\\" animation_intensity_slide__hover_enabled=\\\"50%\\\" animation_intensity_zoom__hover=\\\"50%\\\" animation_intensity_zoom__hover_enabled=\\\"50%\\\" animation_intensity_flip__hover=\\\"50%\\\" animation_intensity_flip__hover_enabled=\\\"50%\\\" animation_intensity_fold__hover=\\\"50%\\\" animation_intensity_fold__hover_enabled=\\\"50%\\\" animation_intensity_roll__hover=\\\"50%\\\" animation_intensity_roll__hover_enabled=\\\"50%\\\" animation_starting_opacity__hover=\\\"0%\\\" animation_starting_opacity__hover_enabled=\\\"0%\\\" animation_speed_curve__hover=\\\"ease-in-out\\\" animation_speed_curve__hover_enabled=\\\"ease-in-out\\\" hover_transition_duration__hover=\\\"300ms\\\" hover_transition_duration__hover_enabled=\\\"300ms\\\" hover_transition_delay__hover=\\\"0ms\\\" hover_transition_delay__hover_enabled=\\\"0ms\\\" hover_transition_speed_curve__hover=\\\"ease\\\" hover_transition_speed_curve__hover_enabled=\\\"ease\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"||||||||\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||0px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Choose your plan<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" custom_padding=\\\"0|0px|30px|0px|false|false\\\" make_equal=\\\"on\\\" background_color_1=\\\"#ffffff\\\" background_color_2=\\\"#ffffff\\\" background_color_3=\\\"#ffffff\\\" padding_top_bottom_link_1=\\\"false\\\" padding_top_bottom_link_2=\\\"false\\\" padding_top_bottom_link_3=\\\"false\\\" padding_left_right_link_1=\\\"true\\\" padding_left_right_link_2=\\\"true\\\" padding_left_right_link_3=\\\"true\\\" padding_top_1=\\\"35px\\\" padding_top_2=\\\"35px\\\" padding_top_3=\\\"35px\\\" padding_right_1=\\\"20px\\\" padding_right_2=\\\"20px\\\" padding_right_3=\\\"20px\\\" padding_bottom_1=\\\"10px\\\" padding_bottom_2=\\\"10px\\\" padding_bottom_3=\\\"10px\\\" padding_left_1=\\\"20px\\\" padding_left_2=\\\"20px\\\" padding_left_3=\\\"20px\\\" custom_css_main_1=\\\"border-radius: 10px;||box-shadow: 0 0 53.1px 5.9px rgba(0, 0, 0, 0.05);\\\" custom_css_main_2=\\\"border-radius: 10px;||box-shadow: 0 0 53.1px 5.9px rgba(0, 0, 0, 0.05);\\\" custom_css_main_3=\\\"border-radius: 10px;||box-shadow: 0 0 53.1px 5.9px rgba(0, 0, 0, 0.05);\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"1_3\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/divi_switch_plan_1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||25px\\\" \\/][et_pb_image admin_label=\\\"Dots\\\" src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/warstwa-41-kopia-7.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||35px\\\" \\/][et_pb_text admin_label=\\\"Price\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"60\\\" text_line_height=\\\"1.2em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||10px\\\"]<\\/p>\\n<p>$29<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Plan Title\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900||on|||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"20px\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\"]<\\/p>\\n<p>Single site<\\/p>\\n<p>[\\/et_pb_text][et_pb_code admin_label=\\\"EDD Varialbe Button Shortcode\\\" module_class=\\\"divi-switch-plan\\\" _builder_version=\\\"3.17.6\\\" text_orientation=\\\"center\\\" custom_margin=\\\"20px||\\\"][purchase_link id=\\\"2964\\\" price_id=\'1\' text=\\\"Purchase now\\\" price=\\\"0\\\"][\\/et_pb_code][\\/et_pb_column][et_pb_column type=\\\"1_3\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/divi_switch_plan_2.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||25px\\\" \\/][et_pb_image admin_label=\\\"Dots\\\" src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/warstwa-41-kopia-7.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||35px\\\" \\/][et_pb_text admin_label=\\\"Price\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#fd5075\\\" text_font_size=\\\"60\\\" text_line_height=\\\"1.2em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||10px\\\"]<\\/p>\\n<p>$59<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Plan Title\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900||on|||||\\\" text_text_color=\\\"#fd5075\\\" text_font_size=\\\"20px\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\"]<\\/p>\\n<p>Three sites<\\/p>\\n<p>[\\/et_pb_text][et_pb_code admin_label=\\\"EDD Varialbe Button Shortcode\\\" module_class=\\\"divi-switch-plan\\\" _builder_version=\\\"3.17.6\\\" text_orientation=\\\"center\\\" custom_margin=\\\"20px||\\\"][purchase_link id=\\\"2964\\\" price_id=\'2\' text=\\\"Purchase now\\\" price=\\\"0\\\"][\\/et_pb_code][\\/et_pb_column][et_pb_column type=\\\"1_3\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/divi_switch_plan_3.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||25px\\\" \\/][et_pb_image admin_label=\\\"Dots\\\" src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/warstwa-41-kopia-7.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||35px\\\" \\/][et_pb_text admin_label=\\\"Price\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"60\\\" text_line_height=\\\"1.2em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||10px\\\"]<\\/p>\\n<p>$79<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Plan Title\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900||on|||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"20px\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\"]<\\/p>\\n<p>Unlimited sites<\\/p>\\n<p>[\\/et_pb_text][et_pb_code admin_label=\\\"EDD Varialbe Button Shortcode\\\" module_class=\\\"divi-switch-plan\\\" _builder_version=\\\"3.17.6\\\" text_orientation=\\\"center\\\" custom_margin=\\\"20px||\\\"][purchase_link id=\\\"2964\\\" price_id=\'3\' text=\\\"Purchase now\\\" price=\\\"0\\\"][\\/et_pb_code][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" custom_padding=\\\"55px|10px||10px||true\\\" custom_margin=\\\"55px||\\\" _builder_version=\\\"3.17.6\\\" box_shadow_style=\\\"preset3\\\" box_shadow_vertical=\\\"-40px\\\" box_shadow_blur=\\\"40px\\\" box_shadow_spread=\\\"-40px\\\" box_shadow_color=\\\"rgba(0,0,0,0.1)\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Price\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"75px\\\" text_line_height=\\\"1.2em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>$149<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Plan Title\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"45px\\\" text_font_size_tablet=\\\"37px\\\" text_font_size_phone=\\\"30px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\"]<\\/p>\\n<p>Annual Membership<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"25px||45px\\\"]<\\/p>\\n<p>Get full access to the best, most comprehensive set of WordPress & Divi plugins on the web. Includes ALL of our products (courses excluded).<\\/p>\\n<p>[\\/et_pb_text][et_pb_button admin_label=\\\"Orange button - full color\\\" button_url=\\\"\\/product\\/annual-membership\\/\\\" button_text=\\\"Purchase now\\\" button_alignment=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_button=\\\"on\\\" button_text_size=\\\"27px\\\" button_text_color=\\\"#ffffff\\\" button_bg_color=\\\"#f5234f\\\" button_border_width=\\\"2px\\\" button_border_color=\\\"#f5234f\\\" button_border_radius=\\\"5px\\\" button_font=\\\"Raleway|600||on|||||\\\" button_use_icon=\\\"off\\\" button_text_size_tablet=\\\"25px\\\" button_text_size_phone=\\\"23px\\\" button_text_size_last_edited=\\\"on|desktop\\\" custom_margin=\\\"10px|15px|10px|15px|true|true\\\" custom_padding=\\\"20px|60px|20px|60px|true|true\\\" custom_padding_phone=\\\"15px|35px|15px|35px|true|true\\\" custom_padding_last_edited=\\\"on|phone\\\" custom_css_main_element=\\\"min-width: 260px;\\\" button_text_color__hover_enabled=\\\"on\\\" button_text_color__hover=\\\"#ffffff\\\" button_bg_color__hover_enabled=\\\"on\\\" button_bg_color__hover=\\\"#e00b39\\\" button_border_color__hover_enabled=\\\"on\\\" button_border_color__hover=\\\"#e00b39\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" custom_padding=\\\"55px|10px||10px||true\\\" custom_margin=\\\"55px||\\\" _builder_version=\\\"3.17.6\\\" box_shadow_style=\\\"preset3\\\" box_shadow_vertical=\\\"-40px\\\" box_shadow_blur=\\\"40px\\\" box_shadow_spread=\\\"-40px\\\" box_shadow_color=\\\"rgba(0,0,0,0.1)\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Price\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"75px\\\" text_line_height=\\\"1.2em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>$399<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Plan Title\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"45px\\\" text_font_size_tablet=\\\"37px\\\" text_font_size_phone=\\\"30px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\"]<\\/p>\\n<p>Lifetime Membership<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"25px||45px\\\"]<\\/p>\\n<p>Get permanent access to ALL Divi Space products. Build gorgeous, high-converting websites with the best WordPress and Divi plugins, child themes, icon packs, layouts, and more. This insanely good deal will be going away soon, so make sure and grab it today while you still can!<\\/p>\\n<p>[\\/et_pb_text][et_pb_button admin_label=\\\"Orange button - full color\\\" button_url=\\\"\\/product\\/lifetime-membership\\/\\\" button_text=\\\"Purchase now\\\" button_alignment=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_button=\\\"on\\\" button_text_size=\\\"27px\\\" button_text_color=\\\"#ffffff\\\" button_bg_color=\\\"#f5234f\\\" button_border_width=\\\"2px\\\" button_border_color=\\\"#f5234f\\\" button_border_radius=\\\"5px\\\" button_font=\\\"Raleway|600||on|||||\\\" button_use_icon=\\\"off\\\" button_text_size_tablet=\\\"25px\\\" button_text_size_phone=\\\"23px\\\" button_text_size_last_edited=\\\"on|desktop\\\" custom_margin=\\\"10px|15px|10px|15px|true|true\\\" custom_padding=\\\"20px|60px|20px|60px|true|true\\\" custom_padding_phone=\\\"15px|35px|15px|35px|true|true\\\" custom_padding_last_edited=\\\"on|phone\\\" custom_css_main_element=\\\"min-width: 260px;\\\" button_text_color__hover_enabled=\\\"on\\\" button_text_color__hover=\\\"#ffffff\\\" button_bg_color__hover_enabled=\\\"on\\\" button_bg_color__hover=\\\"#e00b39\\\" button_border_color__hover_enabled=\\\"on\\\" button_border_color__hover=\\\"#e00b39\\\" \\/][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" _builder_version=\\\"3.17.6\\\" custom_padding=\\\"20px||20px||true\\\" prev_background_color=\\\"#000000\\\"][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"90%\\\" custom_padding=\\\"10px||10px||true\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_toggle admin_label=\\\"Product Page Previous Version Toggle\\\" title=\\\"Compare to Previous Version\\\" open_toggle_text_color=\\\"#f5234f\\\" open_toggle_background_color=\\\"#ffffff\\\" closed_toggle_text_color=\\\"#000000\\\" closed_toggle_background_color=\\\"#ffffff\\\" module_class=\\\"product-page-old-version-toggle\\\" _builder_version=\\\"3.17.6\\\" title_font=\\\"Raleway||||||||\\\" title_text_align=\\\"center\\\" title_text_color=\\\"#000000\\\" title_font_size=\\\"20px\\\" title_line_height=\\\"1.2em\\\" border_radii=\\\"on|4px|4px|4px|4px\\\" border_color_all=\\\"#e2e2e2\\\" text_orientation=\\\"left\\\"]<\\/p>\\n<p>Use the Divi Builder like never before!<\\/p>\\n<p>Take control of your Divi website and use the Divi Builder in even more places!<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>About Page Builder Everywhere<\\/p>\\n<p>With the Page Builder Everywhere plugin, you\\u2019ll be able to extend the reach of the Divi Builder plugin to outside of its standard scope to include the use of customizable modules in a range of new exciting areas, sections, and pages. From headers to footers and sidebars, 404 error pages and more, Page Builder Everywhere lets you use the Divi Builder in its normal state like never before<\\/p>\\n<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>Enhance the Divi Theme<\\/p>\\n<p>While the Divi Builder is a powerful visual builder, it can\\u2019t be used with the same level of fluidity in each and every aspect of website development. Page Builder Everywhere is an incredibly handy plugin that solves this by allowing the use of the builder outside of its standard scope. Continuing the builder\\u2019s native function, users will be afforded the same drag and drop modular functionality of the Divi Builder in headers, footers, and sidebars, as well as on 404 error, category, search, archive and WooCommerce pages.<\\/p>\\n<p>With Page Builder Everywhere, users are able to craft each section, page or element to their hearts desire, with the same available modules in the same familiar fashion. Page Builder Everywhere both saves Divi users of all skill levels countless hours, and too, allows for the design of a one-of-a-kind web aesthetic by enabling the use of maps, forms, call-to-actions and more in unique and eye-catching locations.<\\/p>\\n<p>  &nbsp;<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>Page Builder Everywhere Features<\\/p>\\n<ul>\\n<li>Extend the use of the Divi Builder to include new sections and pages<\\/li>\\n<li>Use the Divi Builder in even more spaces within your website<\\/li>\\n<li>Add the functionality of the Divi Builder to even more spaces of your Divi website<\\/li>\\n<\\/ul>\\n<p>[\\/et_pb_toggle][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section]<\\/p>\\n\",\"changelog\":\"<p class=\\\"p1\\\">Version 3.0.0 November 20th, 2018<\\/p>\\n<ul class=\\\"ul1\\\">\\n<li class=\\\"li1\\\">Use PBE in a whole new way! You can now insert Divi Layouts into anywhere using the text editor! In the text editor you will now notice a new \\u2018D\\u2019 button. Click on that, choose a layout and it will be inserted.<\\/li>\\n<li class=\\\"li1\\\">Insert library layouts inside any module using the text editor! This opens you up to a huge range of possibilities like layouts inside or tabs, toggles, slider modules and more!<\\/li>\\n<li class=\\\"li1\\\">With the new layout inserter you have even more power over Custom post types!<\\/li>\\n<li class=\\\"li1\\\">Various bug fixes and enhancements<\\/li>\\n<\\/ul>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"description\":[\"<p>[et_pb_section bb_built=\\\"1\\\" custom_padding_last_edited=\\\"on|phone\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#f5234f\\\" background_image=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_bg.png\\\" background_size=\\\"contain\\\" background_position=\\\"bottom_right\\\" custom_padding=\\\"60px||260px|\\\" custom_padding_tablet=\\\"||260px\\\" custom_padding_phone=\\\"55px||190px\\\" collapsed=\\\"off\\\" next_background_color=\\\"#ffffff\\\"][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"85%\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_logo-3.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"120px\\\" custom_margin=\\\"||50px\\\" \\/][et_pb_text admin_label=\\\"Heading h2\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"||||||||\\\" header_font=\\\"||||||||\\\" header_2_font=\\\"Raleway||||||||\\\" header_2_text_align=\\\"center\\\" header_2_text_color=\\\"#ffffff\\\" header_2_font_size=\\\"40px\\\" header_2_font_size_tablet=\\\"37px\\\" header_2_font_size_phone=\\\"35px\\\" header_2_font_size_last_edited=\\\"on|phone\\\" header_2_line_height=\\\"1.2em\\\" custom_margin=\\\"||10px\\\"]<\\/p>\\n<p>Page Builder Everywhere<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||10px\\\"]<\\/p>\\n<p>Page Builder Everywhere brings the extraordinary power of the Divi Builder to new and exciting places. No longer is it only supported on posts, pages and certain custom post types: wherever text goes, Divi goes!<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" custom_padding=\\\"0|0px|0|0px|false|false\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#f5234f\\\" next_background_color=\\\"#f5234f\\\"][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"0|0px|0|0px|false|false\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-7.png\\\" _builder_version=\\\"3.17.6\\\" custom_margin=\\\"-230px||0px\\\" custom_margin_tablet=\\\"-250px||\\\" custom_margin_phone=\\\"-170px||\\\" custom_margin_last_edited=\\\"on|phone\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"85%\\\" custom_padding=\\\"0|0px|0|0px|false|false\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway|700|||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"32px\\\" text_font_size_tablet=\\\"30px\\\" text_font_size_phone=\\\"26px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"-50px||0px\\\"]<\\/p>\\n<p>Use The Page Builder You <span style=\\\"color: #f5234f;\\\">Love<\\/span> In Places <span style=\\\"font-size: 125%; display: block;\\\">You Never Thought You Could<\\/span><\\/p>\\n<p>[\\/et_pb_text][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/gearsIcon.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"150px\\\" module_alignment=\\\"center\\\" custom_padding=\\\"55px||55px||true\\\" \\/][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" custom_padding_last_edited=\\\"off|phone\\\" module_id=\\\"features\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#f5234f\\\" custom_padding=\\\"90px||24px||false|false\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_css_before=\\\" width: 0; || height: 0; || border-left: 80px solid transparent;|| border-right: 80px solid transparent;|| border-top: 80px solid #fff;||position:absolute;||left: 50%;||margin-left: -80px;||content:\'\';||top:0;\\\" transparent_background=\\\"off\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#ffffff\\\" next_background_color=\\\"#ffffff\\\"][et_pb_row custom_padding=\\\"75px||75px||true\\\" custom_margin=\\\"||0px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_4_font=\\\"Raleway|600|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#ffffff\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" max_width=\\\"385px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Turn The Page Builder Into A Website Builder<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Page Builder Everywhere lets you use any design you save to the Divi library, in areas that were previously not reachable or editable without significant code changes. New custom built headers, footers, and sidebars are just the start!<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"0px||0px||true\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_logo-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"85px\\\" module_alignment=\\\"center\\\" custom_padding=\\\"0px||0px||true\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"75px||75px||true\\\" custom_margin=\\\"||0px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_4_font=\\\"Raleway|600|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#ffffff\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" max_width=\\\"450px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>The Most User Friendly Layout Injector For Divi<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Page Builder Everywhere\\u2019s unique widget powered user interface makes using Divi Layouts in new places a breeze: Choose the design you want, choose where you want it to go and you\\u2019re done! It really is that simple.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"0px||0px||true\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_logo-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"85px\\\" module_alignment=\\\"center\\\" custom_padding=\\\"0px||0px||true\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"75px||75px||true\\\" custom_margin=\\\"||0px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_4_font=\\\"Raleway|600|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#ffffff\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Introducing the Divi Inserter Button<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>As well as support for the Divi Builder in non-editable areas, Page Builder Everywhere also empowers you to use Divi Layouts anywhere that supports text, including within WordPress, third party plugins and even other Divi Modules!<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"0|0px|0|0px|false|false\\\" disabled_on=\\\"off|off|off\\\" _builder_version=\\\"3.17.6\\\" disabled=\\\"off\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_video src=\\\"https:\\/\\/youtu.be\\/EJMpDyXJN_A\\\" _builder_version=\\\"3.17.6\\\" border_radii=\\\"on|10px|10px|10px|10px\\\" border_width_all=\\\"5px\\\" border_color_all=\\\"#ffffff\\\" box_shadow_style=\\\"preset1\\\" max_width=\\\"700px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||15px\\\" image_src=\\\"https:\\/\\/divi.space\\/wp-content\\/uploads\\/edd\\/2018\\/11\\/page_builder_everywhere_featured_image.png\\\" \\/][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_video-section-shadow.png\\\" show_bottom_space=\\\"off\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_margin=\\\"||0px\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"25px|0px|16px|0px|false|false\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_button admin_label=\\\"Orange button - full color\\\" button_url=\\\"\\/?edd_action=add_to_cart&download_id=2964\\\" button_text=\\\"Purchase now\\\" button_alignment=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_button=\\\"on\\\" button_text_size=\\\"21px\\\" button_text_color=\\\"#ffffff\\\" button_bg_color=\\\"#414ac0\\\" button_border_width=\\\"2px\\\" button_border_color=\\\"#414ac0\\\" button_border_radius=\\\"5px\\\" button_font=\\\"Raleway|600||on|||||\\\" button_use_icon=\\\"off\\\" custom_margin=\\\"10px|15px|10px|15px|true|true\\\" custom_padding=\\\"10px|30px|10px|30px|true|true\\\" custom_css_main_element=\\\"min-width: 260px;\\\" button_text_color__hover_enabled=\\\"on\\\" button_text_color__hover=\\\"#ffffff\\\" button_bg_color__hover_enabled=\\\"on\\\" button_bg_color__hover=\\\"#323895\\\" button_border_color__hover_enabled=\\\"on\\\" button_border_color__hover=\\\"#323895\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"75px||75px||true\\\" custom_margin=\\\"||0px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_4_font=\\\"Raleway|600|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#ffffff\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Endless Logic, Effortless Design<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>You want a different footer on your shop pages or a different header for logged in users? No problem! With Page Builder Everywhere\\u2019s logic engine, you can decide what goes where and when, based on dozens of built in rules.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" custom_padding=\\\"100px||110px\\\" custom_css_before=\\\" width: 0; || height: 0; || border-left: 40px solid transparent;|| border-right: 40px solid transparent;|| border-top: 40px solid #f5234f;||position:absolute;||left: 50%;||margin-left: -40px;||content:\'\';||top:0;\\\" custom_css_after=\\\"width: 0; ||height: 0; ||border-left: 80px solid transparent;||border-right: 80px solid transparent;||border-bottom: 80px solid #f4f4f4;||position:absolute;||left: 50%;||margin-left: -80px;||content:\'\';||bottom:0;\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#f5234f\\\" next_background_color=\\\"#f4f4f4\\\"][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"20px||60px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-5.png\\\" _builder_version=\\\"3.17.6\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway|700|||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"35px\\\" text_font_size_tablet=\\\"30px\\\" text_font_size_phone=\\\"26px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>The tool for people who <span style=\\\"color: #f5234f;\\\">THINK<\\/span><br \\/>\\noutside the box and want to <span style=\\\"color: #f5234f;\\\">BUILD<\\/span> <span style=\\\"font-size: 125%; display: block;\\\">outside the box<\\/span><\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" custom_padding_last_edited=\\\"off|phone\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#f4f4f4\\\" custom_padding=\\\"90px||140px||false|false\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_css_after=\\\"width: 0; ||height: 0; ||border-left: 80px solid transparent;||border-right: 80px solid transparent;||border-bottom: 80px solid #fff;||position:absolute;||left: 50%;||margin-left: -80px;||content:\'\';||bottom:0;\\\" transparent_background=\\\"off\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#ffffff\\\" next_background_color=\\\"#ffffff\\\"][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||50px\\\"]<\\/p>\\n<p>We know you love Divi and we know you love how easy it makes building beautiful, functional pages.<br \\/> <strong>That\\u2019s why we built Page Builder Everywhere; so you can love the top and bottom of your website as much as you love the middle.<\\/strong><\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" max_width=\\\"440px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Here are some ways you can use Divi like never before with Page Builder Everywhere:<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" custom_width_px=\\\"550px\\\" custom_padding=\\\"30px|30px|30px|30px|true|true\\\" custom_margin=\\\"35px||35px||true\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" border_radii=\\\"on|10px|10px|10px|10px\\\" box_shadow_style=\\\"preset1\\\" box_shadow_vertical=\\\"0px\\\" box_shadow_blur=\\\"53px\\\" box_shadow_spread=\\\"6px\\\" box_shadow_color=\\\"rgba(0,0,0,0.03)\\\" custom_css_main_element=\\\"width: 85%;\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_features_icons-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" max_width=\\\"352px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"30px||35px\\\" \\/][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700||on|||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"25px\\\" header_4_font_size_tablet=\\\"24px\\\" header_4_font_size_phone=\\\"23px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Header<\\/p>\\n<p>[\\/et_pb_text][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/check-icon-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" custom_margin=\\\"30px||15px\\\" use_overlay__hover=\\\"off\\\" use_overlay__hover_enabled=\\\"off\\\" show_bottom_space__hover=\\\"on\\\" show_bottom_space__hover_enabled=\\\"on\\\" align__hover=\\\"left\\\" align__hover_enabled=\\\"left\\\" force_fullwidth__hover=\\\"off\\\" force_fullwidth__hover_enabled=\\\"off\\\" always_center_on_mobile__hover=\\\"on\\\" always_center_on_mobile__hover_enabled=\\\"on\\\" border_radii__hover=\\\"on||||\\\" border_radii__hover_enabled=\\\"on||||\\\" box_shadow_style__hover=\\\"none\\\" box_shadow_style__hover_enabled=\\\"none\\\" box_shadow_color__hover=\\\"rgba(0,0,0,0.3)\\\" box_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.3)\\\" max_width__hover=\\\"100%\\\" max_width__hover_enabled=\\\"100%\\\" filter_hue_rotate__hover=\\\"0deg\\\" filter_hue_rotate__hover_enabled=\\\"0deg\\\" filter_saturate__hover=\\\"100%\\\" filter_saturate__hover_enabled=\\\"100%\\\" filter_brightness__hover=\\\"100%\\\" filter_brightness__hover_enabled=\\\"100%\\\" filter_contrast__hover=\\\"100%\\\" filter_contrast__hover_enabled=\\\"100%\\\" filter_invert__hover=\\\"0%\\\" filter_invert__hover_enabled=\\\"0%\\\" filter_sepia__hover=\\\"0%\\\" filter_sepia__hover_enabled=\\\"0%\\\" filter_opacity__hover=\\\"100%\\\" filter_opacity__hover_enabled=\\\"100%\\\" filter_blur__hover=\\\"0px\\\" filter_blur__hover_enabled=\\\"0px\\\" mix_blend_mode__hover=\\\"normal\\\" mix_blend_mode__hover_enabled=\\\"normal\\\" animation_style__hover=\\\"none\\\" animation_style__hover_enabled=\\\"none\\\" animation_repeat__hover=\\\"once\\\" animation_repeat__hover_enabled=\\\"once\\\" animation_direction__hover=\\\"center\\\" animation_direction__hover_enabled=\\\"center\\\" animation_duration__hover=\\\"1000ms\\\" animation_duration__hover_enabled=\\\"1000ms\\\" animation_delay__hover=\\\"0ms\\\" animation_delay__hover_enabled=\\\"0ms\\\" animation_intensity_slide__hover=\\\"50%\\\" animation_intensity_slide__hover_enabled=\\\"50%\\\" animation_intensity_zoom__hover=\\\"50%\\\" animation_intensity_zoom__hover_enabled=\\\"50%\\\" animation_intensity_flip__hover=\\\"50%\\\" animation_intensity_flip__hover_enabled=\\\"50%\\\" animation_intensity_fold__hover=\\\"50%\\\" animation_intensity_fold__hover_enabled=\\\"50%\\\" animation_intensity_roll__hover=\\\"50%\\\" animation_intensity_roll__hover_enabled=\\\"50%\\\" animation_starting_opacity__hover=\\\"0%\\\" animation_starting_opacity__hover_enabled=\\\"0%\\\" animation_speed_curve__hover=\\\"ease-in-out\\\" animation_speed_curve__hover_enabled=\\\"ease-in-out\\\" \\/][et_pb_text ul_type=\\\"none\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.6em\\\" ul_font=\\\"||||||||\\\" ul_text_align=\\\"center\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<ul>\\n<li><span>Replace the default header with one you built yourself <\\/span><\\/li>\\n<li><span>Add a second header above or below the existing one <\\/span><\\/li>\\n<li><span>Add promo bars above Divi\\u2019s header (We\\u2019ve even included some for you!) <\\/span><\\/li>\\n<\\/ul>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" custom_width_px=\\\"550px\\\" custom_padding=\\\"30px|30px|30px|30px|true|true\\\" custom_margin=\\\"35px||35px||true\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" border_radii=\\\"on|10px|10px|10px|10px\\\" box_shadow_style=\\\"preset1\\\" box_shadow_vertical=\\\"0px\\\" box_shadow_blur=\\\"53px\\\" box_shadow_spread=\\\"6px\\\" box_shadow_color=\\\"rgba(0,0,0,0.03)\\\" custom_css_main_element=\\\"width: 85%;\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_features_icons-3.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" max_width=\\\"352px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"30px||35px\\\" \\/][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700||on|||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"25px\\\" header_4_font_size_tablet=\\\"24px\\\" header_4_font_size_phone=\\\"23px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Main area<\\/p>\\n<p>[\\/et_pb_text][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/check-icon-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" custom_margin=\\\"30px||15px\\\" use_overlay__hover=\\\"off\\\" use_overlay__hover_enabled=\\\"off\\\" show_bottom_space__hover=\\\"on\\\" show_bottom_space__hover_enabled=\\\"on\\\" align__hover=\\\"left\\\" align__hover_enabled=\\\"left\\\" force_fullwidth__hover=\\\"off\\\" force_fullwidth__hover_enabled=\\\"off\\\" always_center_on_mobile__hover=\\\"on\\\" always_center_on_mobile__hover_enabled=\\\"on\\\" border_radii__hover=\\\"on||||\\\" border_radii__hover_enabled=\\\"on||||\\\" box_shadow_style__hover=\\\"none\\\" box_shadow_style__hover_enabled=\\\"none\\\" box_shadow_color__hover=\\\"rgba(0,0,0,0.3)\\\" box_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.3)\\\" max_width__hover=\\\"100%\\\" max_width__hover_enabled=\\\"100%\\\" filter_hue_rotate__hover=\\\"0deg\\\" filter_hue_rotate__hover_enabled=\\\"0deg\\\" filter_saturate__hover=\\\"100%\\\" filter_saturate__hover_enabled=\\\"100%\\\" filter_brightness__hover=\\\"100%\\\" filter_brightness__hover_enabled=\\\"100%\\\" filter_contrast__hover=\\\"100%\\\" filter_contrast__hover_enabled=\\\"100%\\\" filter_invert__hover=\\\"0%\\\" filter_invert__hover_enabled=\\\"0%\\\" filter_sepia__hover=\\\"0%\\\" filter_sepia__hover_enabled=\\\"0%\\\" filter_opacity__hover=\\\"100%\\\" filter_opacity__hover_enabled=\\\"100%\\\" filter_blur__hover=\\\"0px\\\" filter_blur__hover_enabled=\\\"0px\\\" mix_blend_mode__hover=\\\"normal\\\" mix_blend_mode__hover_enabled=\\\"normal\\\" animation_style__hover=\\\"none\\\" animation_style__hover_enabled=\\\"none\\\" animation_repeat__hover=\\\"once\\\" animation_repeat__hover_enabled=\\\"once\\\" animation_direction__hover=\\\"center\\\" animation_direction__hover_enabled=\\\"center\\\" animation_duration__hover=\\\"1000ms\\\" animation_duration__hover_enabled=\\\"1000ms\\\" animation_delay__hover=\\\"0ms\\\" animation_delay__hover_enabled=\\\"0ms\\\" animation_intensity_slide__hover=\\\"50%\\\" animation_intensity_slide__hover_enabled=\\\"50%\\\" animation_intensity_zoom__hover=\\\"50%\\\" animation_intensity_zoom__hover_enabled=\\\"50%\\\" animation_intensity_flip__hover=\\\"50%\\\" animation_intensity_flip__hover_enabled=\\\"50%\\\" animation_intensity_fold__hover=\\\"50%\\\" animation_intensity_fold__hover_enabled=\\\"50%\\\" animation_intensity_roll__hover=\\\"50%\\\" animation_intensity_roll__hover_enabled=\\\"50%\\\" animation_starting_opacity__hover=\\\"0%\\\" animation_starting_opacity__hover_enabled=\\\"0%\\\" animation_speed_curve__hover=\\\"ease-in-out\\\" animation_speed_curve__hover_enabled=\\\"ease-in-out\\\" \\/][et_pb_text ul_type=\\\"none\\\" disabled_on=\\\"off|off|off\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.6em\\\" ul_font=\\\"||||||||\\\" ul_text_align=\\\"center\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<ul>\\n<li><span>Add a Divi layout above and below content on all pages <\\/span><\\/li>\\n<li><span>Use the Divi Builder on archive pages, before and after the content <\\/span><\\/li>\\n<li><span>Use the Divi Builder anywhere that supports rich text <\\/span><\\/li>\\n<li><span>Use the Divi Builder inside Divi Modules <\\/span><\\/li>\\n<\\/ul>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" custom_width_px=\\\"550px\\\" custom_padding=\\\"30px|30px|30px|30px|true|true\\\" custom_margin=\\\"35px||35px||true\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" border_radii=\\\"on|10px|10px|10px|10px\\\" box_shadow_style=\\\"preset1\\\" box_shadow_vertical=\\\"0px\\\" box_shadow_blur=\\\"53px\\\" box_shadow_spread=\\\"6px\\\" box_shadow_color=\\\"rgba(0,0,0,0.03)\\\" custom_css_main_element=\\\"width: 85%;\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_features_icons-2.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" max_width=\\\"352px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"30px||35px\\\" \\/][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700||on|||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"25px\\\" header_4_font_size_tablet=\\\"24px\\\" header_4_font_size_phone=\\\"23px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Footer<\\/p>\\n<p>[\\/et_pb_text][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/check-icon-1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" background_size=\\\"initial\\\" background_repeat=\\\"repeat-y\\\" custom_margin=\\\"30px||15px\\\" use_overlay__hover=\\\"off\\\" use_overlay__hover_enabled=\\\"off\\\" show_bottom_space__hover=\\\"on\\\" show_bottom_space__hover_enabled=\\\"on\\\" align__hover=\\\"left\\\" align__hover_enabled=\\\"left\\\" force_fullwidth__hover=\\\"off\\\" force_fullwidth__hover_enabled=\\\"off\\\" always_center_on_mobile__hover=\\\"on\\\" always_center_on_mobile__hover_enabled=\\\"on\\\" border_radii__hover=\\\"on||||\\\" border_radii__hover_enabled=\\\"on||||\\\" box_shadow_style__hover=\\\"none\\\" box_shadow_style__hover_enabled=\\\"none\\\" box_shadow_color__hover=\\\"rgba(0,0,0,0.3)\\\" box_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.3)\\\" max_width__hover=\\\"100%\\\" max_width__hover_enabled=\\\"100%\\\" filter_hue_rotate__hover=\\\"0deg\\\" filter_hue_rotate__hover_enabled=\\\"0deg\\\" filter_saturate__hover=\\\"100%\\\" filter_saturate__hover_enabled=\\\"100%\\\" filter_brightness__hover=\\\"100%\\\" filter_brightness__hover_enabled=\\\"100%\\\" filter_contrast__hover=\\\"100%\\\" filter_contrast__hover_enabled=\\\"100%\\\" filter_invert__hover=\\\"0%\\\" filter_invert__hover_enabled=\\\"0%\\\" filter_sepia__hover=\\\"0%\\\" filter_sepia__hover_enabled=\\\"0%\\\" filter_opacity__hover=\\\"100%\\\" filter_opacity__hover_enabled=\\\"100%\\\" filter_blur__hover=\\\"0px\\\" filter_blur__hover_enabled=\\\"0px\\\" mix_blend_mode__hover=\\\"normal\\\" mix_blend_mode__hover_enabled=\\\"normal\\\" animation_style__hover=\\\"none\\\" animation_style__hover_enabled=\\\"none\\\" animation_repeat__hover=\\\"once\\\" animation_repeat__hover_enabled=\\\"once\\\" animation_direction__hover=\\\"center\\\" animation_direction__hover_enabled=\\\"center\\\" animation_duration__hover=\\\"1000ms\\\" animation_duration__hover_enabled=\\\"1000ms\\\" animation_delay__hover=\\\"0ms\\\" animation_delay__hover_enabled=\\\"0ms\\\" animation_intensity_slide__hover=\\\"50%\\\" animation_intensity_slide__hover_enabled=\\\"50%\\\" animation_intensity_zoom__hover=\\\"50%\\\" animation_intensity_zoom__hover_enabled=\\\"50%\\\" animation_intensity_flip__hover=\\\"50%\\\" animation_intensity_flip__hover_enabled=\\\"50%\\\" animation_intensity_fold__hover=\\\"50%\\\" animation_intensity_fold__hover_enabled=\\\"50%\\\" animation_intensity_roll__hover=\\\"50%\\\" animation_intensity_roll__hover_enabled=\\\"50%\\\" animation_starting_opacity__hover=\\\"0%\\\" animation_starting_opacity__hover_enabled=\\\"0%\\\" animation_speed_curve__hover=\\\"ease-in-out\\\" animation_speed_curve__hover_enabled=\\\"ease-in-out\\\" \\/][et_pb_text ul_type=\\\"none\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.6em\\\" ul_font=\\\"||||||||\\\" ul_text_align=\\\"center\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<ul>\\n<li><span>Replace the footer with any custom layout <\\/span><\\/li>\\n<li><span>Replace the bottom footer with a layout <\\/span><\\/li>\\n<\\/ul>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_button admin_label=\\\"Orange button - full color\\\" button_url=\\\"\\/?edd_action=add_to_cart&download_id=2964\\\" button_text=\\\"Purchase now\\\" button_alignment=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_button=\\\"on\\\" button_text_size=\\\"21px\\\" button_text_color=\\\"#ffffff\\\" button_bg_color=\\\"#414ac0\\\" button_border_width=\\\"2px\\\" button_border_color=\\\"#414ac0\\\" button_border_radius=\\\"5px\\\" button_font=\\\"Raleway|600||on|||||\\\" button_use_icon=\\\"off\\\" custom_margin=\\\"10px|15px|10px|15px|true|true\\\" custom_padding=\\\"10px|30px|10px|30px|true|true\\\" custom_css_main_element=\\\"min-width: 260px;\\\" button_text_color__hover_enabled=\\\"on\\\" button_text_color__hover=\\\"#ffffff\\\" button_bg_color__hover_enabled=\\\"on\\\" button_bg_color__hover=\\\"#323895\\\" button_border_color__hover_enabled=\\\"on\\\" button_border_color__hover=\\\"#323895\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway|700|||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"32px\\\" text_font_size_tablet=\\\"30px\\\" text_font_size_phone=\\\"26px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\" max_width=\\\"470px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>1st &amp; #1:<br \\/>\\n<span style=\\\"color: #f5234f;\\\">Page Builder Everywhere<\\/span> Is The First And Best <span style=\\\"font-size: 125%; display: block;\\\">Divi Layout Inserter<\\/span><\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" custom_padding=\\\"60px|0px|75px|0px|false|false\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#f4f4f4\\\" next_background_color=\\\"#f5234f\\\"][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Familiar and Friendly UI<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Page Builder Everywhere is integrated with the WordPress<br \\/>\\nwidgets interface. Which means you already know how to use it.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"20px||60px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-1.png\\\" _builder_version=\\\"3.17.6\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"30px|0px|21px|0px|false|false\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>More Places<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Page Builder Everywhere empowers you to use Divi in more places, in more ways than any other plugin or child theme.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"20px||60px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-3.png\\\" _builder_version=\\\"3.17.6\\\" custom_margin=\\\"||40px\\\" \\/][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-2.png\\\" _builder_version=\\\"3.17.6\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" max_width=\\\"520px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Includes 20 Predesigned Notification and Promo Bars<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Use Page Builder Everywhere to highlight important notifications, promotional offers, discounts, new releases or simply collect email addresses with custom notification and promotional bars built with the Divi builder.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" gutter_width=\\\"1\\\" custom_padding=\\\"20px||60px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_product_image-6.png\\\" _builder_version=\\\"3.17.6\\\" module_alignment=\\\"center\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row custom_padding=\\\"30px|0px|10px|0px|false|false\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" max_width=\\\"450px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>New User & Experienced Developer Friendly<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>Page Builder Everywhere is simple enough to use that you could install it now and be an expert in five minutes. For Plugin & Child Theme Developers Page Builder Everywhere will automatically work with your products if they support widgets or rich text editing!<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" custom_padding_last_edited=\\\"off|phone\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#f5234f\\\" background_image=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/pbe_bg.png\\\" background_size=\\\"contain\\\" background_position=\\\"bottom_right\\\" custom_padding=\\\"90px||70px||false|false\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_css_before=\\\" width: 0; || height: 0; || border-left: 80px solid transparent;|| border-right: 80px solid transparent;|| border-top: 80px solid #fff;||position:absolute;||left: 50%;||margin-left: -80px;||content:\'\';||top:0;\\\" transparent_background=\\\"off\\\" collapsed=\\\"off\\\" prev_background_color=\\\"#ffffff\\\" next_background_color=\\\"#ffffff\\\"][et_pb_row custom_padding=\\\"65px||65px||true|false\\\" custom_margin=\\\"||0px\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/smileIcon.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||35px\\\" \\/][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" header_4_font=\\\"Raleway|600|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#ffffff\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||15px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>5-Star Customer Support<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#ffffff\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>There\\u2019s a reason our customers rate us 5 stars for support: Our fast, knowledgeable staff are the crown jewel of our service offering, and they\\u2019re here to help solve any problems or answer any questions.<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" custom_padding_last_edited=\\\"off|phone\\\" _builder_version=\\\"3.17.6\\\" background_color=\\\"#ffffff\\\" custom_padding=\\\"54px||0||false|false\\\" custom_padding_tablet=\\\"50px||125px|\\\" custom_padding_phone=\\\"50px||100px|\\\" custom_css_before=\\\" width: 0; || height: 0; || border-left: 40px solid transparent;|| border-right: 40px solid transparent;|| border-top: 40px solid #f5234f;||position:absolute;||left: 50%;||margin-left: -40px;||content:\'\';||top:0;\\\" transparent_background=\\\"off\\\" prev_background_color=\\\"#f5234f\\\" next_background_color=\\\"#000000\\\"][et_pb_row _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_button admin_label=\\\"Orange button - full color\\\" button_url=\\\"\\/?edd_action=add_to_cart&download_id=2964\\\" button_text=\\\"Purchase now\\\" button_alignment=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_button=\\\"on\\\" button_text_size=\\\"27px\\\" button_text_color=\\\"#ffffff\\\" button_bg_color=\\\"#414ac0\\\" button_border_width=\\\"2px\\\" button_border_color=\\\"#414ac0\\\" button_border_radius=\\\"5px\\\" button_font=\\\"Raleway|600||on|||||\\\" button_use_icon=\\\"off\\\" button_text_size_tablet=\\\"25px\\\" button_text_size_phone=\\\"23px\\\" button_text_size_last_edited=\\\"on|desktop\\\" custom_margin=\\\"10px|15px|10px|15px|true|true\\\" custom_padding=\\\"20px|60px|20px|60px|true|true\\\" custom_padding_phone=\\\"15px|35px|15px|35px|true|true\\\" custom_padding_last_edited=\\\"on|phone\\\" custom_css_main_element=\\\"min-width: 260px;\\\" button_text_color__hover_enabled=\\\"on\\\" button_text_color__hover=\\\"#ffffff\\\" button_bg_color__hover_enabled=\\\"on\\\" button_bg_color__hover=\\\"#323895\\\" button_border_color__hover_enabled=\\\"on\\\" button_border_color__hover=\\\"#323895\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row _builder_version=\\\"3.17.6\\\" parallax_1__hover=\\\"off\\\" parallax_1__hover_enabled=\\\"off\\\" parallax_2__hover=\\\"off\\\" parallax_2__hover_enabled=\\\"off\\\" parallax_3__hover=\\\"off\\\" parallax_3__hover_enabled=\\\"off\\\" parallax_4__hover=\\\"off\\\" parallax_4__hover_enabled=\\\"off\\\" parallax_5__hover=\\\"off\\\" parallax_5__hover_enabled=\\\"off\\\" parallax_6__hover=\\\"off\\\" parallax_6__hover_enabled=\\\"off\\\" parallax_method_1__hover=\\\"on\\\" parallax_method_1__hover_enabled=\\\"on\\\" parallax_method_2__hover=\\\"on\\\" parallax_method_2__hover_enabled=\\\"on\\\" parallax_method_3__hover=\\\"on\\\" parallax_method_3__hover_enabled=\\\"on\\\" parallax_method_4__hover=\\\"on\\\" parallax_method_4__hover_enabled=\\\"on\\\" parallax_method_5__hover=\\\"on\\\" parallax_method_5__hover_enabled=\\\"on\\\" parallax_method_6__hover=\\\"on\\\" parallax_method_6__hover_enabled=\\\"on\\\" use_background_color_gradient__hover=\\\"off\\\" use_background_color_gradient__hover_enabled=\\\"off\\\" background_color_gradient_start__hover=\\\"#2b87da\\\" background_color_gradient_start__hover_enabled=\\\"#2b87da\\\" background_color_gradient_end__hover=\\\"#29c4a9\\\" background_color_gradient_end__hover_enabled=\\\"#29c4a9\\\" background_color_gradient_type__hover=\\\"linear\\\" background_color_gradient_type__hover_enabled=\\\"linear\\\" background_color_gradient_direction__hover=\\\"180deg\\\" background_color_gradient_direction__hover_enabled=\\\"180deg\\\" background_color_gradient_direction_radial__hover=\\\"center\\\" background_color_gradient_direction_radial__hover_enabled=\\\"center\\\" background_color_gradient_start_position__hover=\\\"0%\\\" background_color_gradient_start_position__hover_enabled=\\\"0%\\\" background_color_gradient_end_position__hover=\\\"100%\\\" background_color_gradient_end_position__hover_enabled=\\\"100%\\\" background_color_gradient_overlays_image__hover=\\\"off\\\" background_color_gradient_overlays_image__hover_enabled=\\\"off\\\" parallax__hover=\\\"off\\\" parallax__hover_enabled=\\\"off\\\" parallax_method__hover=\\\"on\\\" parallax_method__hover_enabled=\\\"on\\\" background_size__hover=\\\"cover\\\" background_size__hover_enabled=\\\"cover\\\" background_position__hover=\\\"center\\\" background_position__hover_enabled=\\\"center\\\" background_repeat__hover=\\\"no-repeat\\\" background_repeat__hover_enabled=\\\"no-repeat\\\" background_blend__hover=\\\"normal\\\" background_blend__hover_enabled=\\\"normal\\\" allow_player_pause__hover=\\\"off\\\" allow_player_pause__hover_enabled=\\\"off\\\" background_video_pause_outside_viewport__hover=\\\"on\\\" background_video_pause_outside_viewport__hover_enabled=\\\"on\\\" make_fullwidth__hover=\\\"off\\\" make_fullwidth__hover_enabled=\\\"off\\\" use_custom_width__hover=\\\"off\\\" use_custom_width__hover_enabled=\\\"off\\\" width_unit__hover=\\\"on\\\" width_unit__hover_enabled=\\\"on\\\" custom_width_px__hover=\\\"1080px\\\" custom_width_px__hover_enabled=\\\"1080px\\\" custom_width_percent__hover=\\\"80%\\\" custom_width_percent__hover_enabled=\\\"80%\\\" use_custom_gutter__hover=\\\"off\\\" use_custom_gutter__hover_enabled=\\\"off\\\" gutter_width__hover=\\\"2\\\" gutter_width__hover_enabled=\\\"2\\\" make_equal__hover=\\\"off\\\" make_equal__hover_enabled=\\\"off\\\" border_radii__hover=\\\"on||||\\\" border_radii__hover_enabled=\\\"on||||\\\" box_shadow_style__hover=\\\"none\\\" box_shadow_style__hover_enabled=\\\"none\\\" box_shadow_color__hover=\\\"rgba(0,0,0,0.3)\\\" box_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.3)\\\" filter_hue_rotate__hover=\\\"0deg\\\" filter_hue_rotate__hover_enabled=\\\"0deg\\\" filter_saturate__hover=\\\"100%\\\" filter_saturate__hover_enabled=\\\"100%\\\" filter_brightness__hover=\\\"100%\\\" filter_brightness__hover_enabled=\\\"100%\\\" filter_contrast__hover=\\\"100%\\\" filter_contrast__hover_enabled=\\\"100%\\\" filter_invert__hover=\\\"0%\\\" filter_invert__hover_enabled=\\\"0%\\\" filter_sepia__hover=\\\"0%\\\" filter_sepia__hover_enabled=\\\"0%\\\" filter_opacity__hover=\\\"100%\\\" filter_opacity__hover_enabled=\\\"100%\\\" filter_blur__hover=\\\"0px\\\" filter_blur__hover_enabled=\\\"0px\\\" mix_blend_mode__hover=\\\"normal\\\" mix_blend_mode__hover_enabled=\\\"normal\\\" animation_style__hover=\\\"none\\\" animation_style__hover_enabled=\\\"none\\\" animation_repeat__hover=\\\"once\\\" animation_repeat__hover_enabled=\\\"once\\\" animation_direction__hover=\\\"center\\\" animation_direction__hover_enabled=\\\"center\\\" animation_duration__hover=\\\"1000ms\\\" animation_duration__hover_enabled=\\\"1000ms\\\" animation_delay__hover=\\\"0ms\\\" animation_delay__hover_enabled=\\\"0ms\\\" animation_intensity_slide__hover=\\\"50%\\\" animation_intensity_slide__hover_enabled=\\\"50%\\\" animation_intensity_zoom__hover=\\\"50%\\\" animation_intensity_zoom__hover_enabled=\\\"50%\\\" animation_intensity_flip__hover=\\\"50%\\\" animation_intensity_flip__hover_enabled=\\\"50%\\\" animation_intensity_fold__hover=\\\"50%\\\" animation_intensity_fold__hover_enabled=\\\"50%\\\" animation_intensity_roll__hover=\\\"50%\\\" animation_intensity_roll__hover_enabled=\\\"50%\\\" animation_starting_opacity__hover=\\\"0%\\\" animation_starting_opacity__hover_enabled=\\\"0%\\\" animation_speed_curve__hover=\\\"ease-in-out\\\" animation_speed_curve__hover_enabled=\\\"ease-in-out\\\" hover_transition_duration__hover=\\\"300ms\\\" hover_transition_duration__hover_enabled=\\\"300ms\\\" hover_transition_delay__hover=\\\"0ms\\\" hover_transition_delay__hover_enabled=\\\"0ms\\\" hover_transition_speed_curve__hover=\\\"ease\\\" hover_transition_speed_curve__hover_enabled=\\\"ease\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Heading h4\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"||||||||\\\" header_font=\\\"||||||||\\\" header_4_font=\\\"Raleway|700|||||||\\\" header_4_text_align=\\\"center\\\" header_4_text_color=\\\"#32373c\\\" header_4_font_size=\\\"30px\\\" header_4_font_size_tablet=\\\"28px\\\" header_4_font_size_phone=\\\"26px\\\" header_4_font_size_last_edited=\\\"on|desktop\\\" header_4_line_height=\\\"1.2em\\\" custom_margin=\\\"||0px\\\" header_font_size__hover=\\\"30px\\\" header_font_size__hover_enabled=\\\"30px\\\" header_letter_spacing__hover=\\\"0px\\\" header_letter_spacing__hover_enabled=\\\"0px\\\" header_text_shadow_style__hover=\\\"none\\\" header_text_shadow_style__hover_enabled=\\\"none\\\" header_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\" header_2_font_size__hover=\\\"26px\\\" header_2_font_size__hover_enabled=\\\"26px\\\" header_2_letter_spacing__hover=\\\"0px\\\" header_2_letter_spacing__hover_enabled=\\\"0px\\\" header_2_line_height__hover=\\\"1em\\\" header_2_line_height__hover_enabled=\\\"1em\\\" header_2_text_shadow_style__hover=\\\"none\\\" header_2_text_shadow_style__hover_enabled=\\\"none\\\" header_2_text_shadow_color__hover=\\\"rgba(0,0,0,0.4)\\\" header_2_text_shadow_color__hover_enabled=\\\"rgba(0,0,0,0.4)\\\"]<\\/p>\\n<p>Choose your plan<\\/p>\\n<p>[\\/et_pb_text][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" use_custom_gutter=\\\"on\\\" custom_padding=\\\"0|0px|30px|0px|false|false\\\" make_equal=\\\"on\\\" background_color_1=\\\"#ffffff\\\" background_color_2=\\\"#ffffff\\\" background_color_3=\\\"#ffffff\\\" padding_top_bottom_link_1=\\\"false\\\" padding_top_bottom_link_2=\\\"false\\\" padding_top_bottom_link_3=\\\"false\\\" padding_left_right_link_1=\\\"true\\\" padding_left_right_link_2=\\\"true\\\" padding_left_right_link_3=\\\"true\\\" padding_top_1=\\\"35px\\\" padding_top_2=\\\"35px\\\" padding_top_3=\\\"35px\\\" padding_right_1=\\\"20px\\\" padding_right_2=\\\"20px\\\" padding_right_3=\\\"20px\\\" padding_bottom_1=\\\"10px\\\" padding_bottom_2=\\\"10px\\\" padding_bottom_3=\\\"10px\\\" padding_left_1=\\\"20px\\\" padding_left_2=\\\"20px\\\" padding_left_3=\\\"20px\\\" custom_css_main_1=\\\"border-radius: 10px;||box-shadow: 0 0 53.1px 5.9px rgba(0, 0, 0, 0.05);\\\" custom_css_main_2=\\\"border-radius: 10px;||box-shadow: 0 0 53.1px 5.9px rgba(0, 0, 0, 0.05);\\\" custom_css_main_3=\\\"border-radius: 10px;||box-shadow: 0 0 53.1px 5.9px rgba(0, 0, 0, 0.05);\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"1_3\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/divi_switch_plan_1.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||25px\\\" \\/][et_pb_image admin_label=\\\"Dots\\\" src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/warstwa-41-kopia-7.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||35px\\\" \\/][et_pb_text admin_label=\\\"Price\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"60\\\" text_line_height=\\\"1.2em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||10px\\\"]<\\/p>\\n<p>$29<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Plan Title\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900||on|||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"20px\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\"]<\\/p>\\n<p>Single site<\\/p>\\n<p>[\\/et_pb_text][et_pb_code admin_label=\\\"EDD Varialbe Button Shortcode\\\" module_class=\\\"divi-switch-plan\\\" _builder_version=\\\"3.17.6\\\" text_orientation=\\\"center\\\" custom_margin=\\\"20px||\\\"][purchase_link id=\\\"2964\\\" price_id=\'1\' text=\\\"Purchase now\\\" price=\\\"0\\\"][\\/et_pb_code][\\/et_pb_column][et_pb_column type=\\\"1_3\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/divi_switch_plan_2.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||25px\\\" \\/][et_pb_image admin_label=\\\"Dots\\\" src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/warstwa-41-kopia-7.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||35px\\\" \\/][et_pb_text admin_label=\\\"Price\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#fd5075\\\" text_font_size=\\\"60\\\" text_line_height=\\\"1.2em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||10px\\\"]<\\/p>\\n<p>$59<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Plan Title\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900||on|||||\\\" text_text_color=\\\"#fd5075\\\" text_font_size=\\\"20px\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\"]<\\/p>\\n<p>Three sites<\\/p>\\n<p>[\\/et_pb_text][et_pb_code admin_label=\\\"EDD Varialbe Button Shortcode\\\" module_class=\\\"divi-switch-plan\\\" _builder_version=\\\"3.17.6\\\" text_orientation=\\\"center\\\" custom_margin=\\\"20px||\\\"][purchase_link id=\\\"2964\\\" price_id=\'2\' text=\\\"Purchase now\\\" price=\\\"0\\\"][\\/et_pb_code][\\/et_pb_column][et_pb_column type=\\\"1_3\\\"][et_pb_image src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/divi_switch_plan_3.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||25px\\\" \\/][et_pb_image admin_label=\\\"Dots\\\" src=\\\"https:\\/\\/agstudiosdev.com\\/wp-content\\/uploads\\/2018\\/11\\/warstwa-41-kopia-7.png\\\" align=\\\"center\\\" _builder_version=\\\"3.17.6\\\" max_width=\\\"200px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"||35px\\\" \\/][et_pb_text admin_label=\\\"Price\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"60\\\" text_line_height=\\\"1.2em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||10px\\\"]<\\/p>\\n<p>$79<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Plan Title\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900||on|||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"20px\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\"]<\\/p>\\n<p>Unlimited sites<\\/p>\\n<p>[\\/et_pb_text][et_pb_code admin_label=\\\"EDD Varialbe Button Shortcode\\\" module_class=\\\"divi-switch-plan\\\" _builder_version=\\\"3.17.6\\\" text_orientation=\\\"center\\\" custom_margin=\\\"20px||\\\"][purchase_link id=\\\"2964\\\" price_id=\'3\' text=\\\"Purchase now\\\" price=\\\"0\\\"][\\/et_pb_code][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" custom_padding=\\\"55px|10px||10px||true\\\" custom_margin=\\\"55px||\\\" _builder_version=\\\"3.17.6\\\" box_shadow_style=\\\"preset3\\\" box_shadow_vertical=\\\"-40px\\\" box_shadow_blur=\\\"40px\\\" box_shadow_spread=\\\"-40px\\\" box_shadow_color=\\\"rgba(0,0,0,0.1)\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Price\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"75px\\\" text_line_height=\\\"1.2em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>$149<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Plan Title\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"45px\\\" text_font_size_tablet=\\\"37px\\\" text_font_size_phone=\\\"30px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\"]<\\/p>\\n<p>Annual Membership<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"25px||45px\\\"]<\\/p>\\n<p>Get full access to the best, most comprehensive set of WordPress & Divi plugins on the web. Includes ALL of our products (courses excluded).<\\/p>\\n<p>[\\/et_pb_text][et_pb_button admin_label=\\\"Orange button - full color\\\" button_url=\\\"\\/product\\/annual-membership\\/\\\" button_text=\\\"Purchase now\\\" button_alignment=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_button=\\\"on\\\" button_text_size=\\\"27px\\\" button_text_color=\\\"#ffffff\\\" button_bg_color=\\\"#f5234f\\\" button_border_width=\\\"2px\\\" button_border_color=\\\"#f5234f\\\" button_border_radius=\\\"5px\\\" button_font=\\\"Raleway|600||on|||||\\\" button_use_icon=\\\"off\\\" button_text_size_tablet=\\\"25px\\\" button_text_size_phone=\\\"23px\\\" button_text_size_last_edited=\\\"on|desktop\\\" custom_margin=\\\"10px|15px|10px|15px|true|true\\\" custom_padding=\\\"20px|60px|20px|60px|true|true\\\" custom_padding_phone=\\\"15px|35px|15px|35px|true|true\\\" custom_padding_last_edited=\\\"on|phone\\\" custom_css_main_element=\\\"min-width: 260px;\\\" button_text_color__hover_enabled=\\\"on\\\" button_text_color__hover=\\\"#ffffff\\\" button_bg_color__hover_enabled=\\\"on\\\" button_bg_color__hover=\\\"#e00b39\\\" button_border_color__hover_enabled=\\\"on\\\" button_border_color__hover=\\\"#e00b39\\\" \\/][\\/et_pb_column][\\/et_pb_row][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"95%\\\" custom_padding=\\\"55px|10px||10px||true\\\" custom_margin=\\\"55px||\\\" _builder_version=\\\"3.17.6\\\" box_shadow_style=\\\"preset3\\\" box_shadow_vertical=\\\"-40px\\\" box_shadow_blur=\\\"40px\\\" box_shadow_spread=\\\"-40px\\\" box_shadow_color=\\\"rgba(0,0,0,0.1)\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_text admin_label=\\\"Price\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"75px\\\" text_line_height=\\\"1.2em\\\" text_orientation=\\\"center\\\" custom_margin=\\\"||0px\\\"]<\\/p>\\n<p>$399<\\/p>\\n<p>[\\/et_pb_text][et_pb_text admin_label=\\\"Plan Title\\\" _builder_version=\\\"3.17.6\\\" text_font=\\\"Nunito|900|||||||\\\" text_text_color=\\\"#414ac0\\\" text_font_size=\\\"45px\\\" text_font_size_tablet=\\\"37px\\\" text_font_size_phone=\\\"30px\\\" text_font_size_last_edited=\\\"on|phone\\\" text_line_height=\\\"1.4em\\\" text_orientation=\\\"center\\\"]<\\/p>\\n<p>Lifetime Membership<\\/p>\\n<p>[\\/et_pb_text][et_pb_text _builder_version=\\\"3.17.6\\\" text_font=\\\"Raleway||||||||\\\" text_text_color=\\\"#32373c\\\" text_font_size=\\\"19px\\\" text_line_height=\\\"1.5em\\\" text_orientation=\\\"center\\\" max_width=\\\"570px\\\" module_alignment=\\\"center\\\" custom_margin=\\\"25px||45px\\\"]<\\/p>\\n<p>Get permanent access to ALL Divi Space products. Build gorgeous, high-converting websites with the best WordPress and Divi plugins, child themes, icon packs, layouts, and more. This insanely good deal will be going away soon, so make sure and grab it today while you still can!<\\/p>\\n<p>[\\/et_pb_text][et_pb_button admin_label=\\\"Orange button - full color\\\" button_url=\\\"\\/product\\/lifetime-membership\\/\\\" button_text=\\\"Purchase now\\\" button_alignment=\\\"center\\\" _builder_version=\\\"3.17.6\\\" custom_button=\\\"on\\\" button_text_size=\\\"27px\\\" button_text_color=\\\"#ffffff\\\" button_bg_color=\\\"#f5234f\\\" button_border_width=\\\"2px\\\" button_border_color=\\\"#f5234f\\\" button_border_radius=\\\"5px\\\" button_font=\\\"Raleway|600||on|||||\\\" button_use_icon=\\\"off\\\" button_text_size_tablet=\\\"25px\\\" button_text_size_phone=\\\"23px\\\" button_text_size_last_edited=\\\"on|desktop\\\" custom_margin=\\\"10px|15px|10px|15px|true|true\\\" custom_padding=\\\"20px|60px|20px|60px|true|true\\\" custom_padding_phone=\\\"15px|35px|15px|35px|true|true\\\" custom_padding_last_edited=\\\"on|phone\\\" custom_css_main_element=\\\"min-width: 260px;\\\" button_text_color__hover_enabled=\\\"on\\\" button_text_color__hover=\\\"#ffffff\\\" button_bg_color__hover_enabled=\\\"on\\\" button_bg_color__hover=\\\"#e00b39\\\" button_border_color__hover_enabled=\\\"on\\\" button_border_color__hover=\\\"#e00b39\\\" \\/][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section][et_pb_section bb_built=\\\"1\\\" _builder_version=\\\"3.17.6\\\" custom_padding=\\\"20px||20px||true\\\" prev_background_color=\\\"#000000\\\"][et_pb_row use_custom_width=\\\"on\\\" width_unit=\\\"off\\\" custom_width_percent=\\\"90%\\\" custom_padding=\\\"10px||10px||true\\\" _builder_version=\\\"3.17.6\\\"][et_pb_column type=\\\"4_4\\\"][et_pb_toggle admin_label=\\\"Product Page Previous Version Toggle\\\" title=\\\"Compare to Previous Version\\\" open_toggle_text_color=\\\"#f5234f\\\" open_toggle_background_color=\\\"#ffffff\\\" closed_toggle_text_color=\\\"#000000\\\" closed_toggle_background_color=\\\"#ffffff\\\" module_class=\\\"product-page-old-version-toggle\\\" _builder_version=\\\"3.17.6\\\" title_font=\\\"Raleway||||||||\\\" title_text_align=\\\"center\\\" title_text_color=\\\"#000000\\\" title_font_size=\\\"20px\\\" title_line_height=\\\"1.2em\\\" border_radii=\\\"on|4px|4px|4px|4px\\\" border_color_all=\\\"#e2e2e2\\\" text_orientation=\\\"left\\\"]<\\/p>\\n<p>Use the Divi Builder like never before!<\\/p>\\n<p>Take control of your Divi website and use the Divi Builder in even more places!<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>About Page Builder Everywhere<\\/p>\\n<p>With the Page Builder Everywhere plugin, you\\u2019ll be able to extend the reach of the Divi Builder plugin to outside of its standard scope to include the use of customizable modules in a range of new exciting areas, sections, and pages. From headers to footers and sidebars, 404 error pages and more, Page Builder Everywhere lets you use the Divi Builder in its normal state like never before<\\/p>\\n<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>Enhance the Divi Theme<\\/p>\\n<p>While the Divi Builder is a powerful visual builder, it can\\u2019t be used with the same level of fluidity in each and every aspect of website development. Page Builder Everywhere is an incredibly handy plugin that solves this by allowing the use of the builder outside of its standard scope. Continuing the builder\\u2019s native function, users will be afforded the same drag and drop modular functionality of the Divi Builder in headers, footers, and sidebars, as well as on 404 error, category, search, archive and WooCommerce pages.<\\/p>\\n<p>With Page Builder Everywhere, users are able to craft each section, page or element to their hearts desire, with the same available modules in the same familiar fashion. Page Builder Everywhere both saves Divi users of all skill levels countless hours, and too, allows for the design of a one-of-a-kind web aesthetic by enabling the use of maps, forms, call-to-actions and more in unique and eye-catching locations.<\\/p>\\n<p>  &nbsp;<\\/p>\\n<p>&nbsp;<\\/p>\\n<p>Page Builder Everywhere Features<\\/p>\\n<ul>\\n<li>Extend the use of the Divi Builder to include new sections and pages<\\/li>\\n<li>Use the Divi Builder in even more spaces within your website<\\/li>\\n<li>Add the functionality of the Divi Builder to even more spaces of your Divi website<\\/li>\\n<\\/ul>\\n<p>[\\/et_pb_toggle][\\/et_pb_column][\\/et_pb_row][\\/et_pb_section]<\\/p>\\n\"],\"changelog\":[\"<p class=\\\"p1\\\">Version 3.0.0 November 20th, 2018<\\/p>\\n<ul class=\\\"ul1\\\">\\n<li class=\\\"li1\\\">Use PBE in a whole new way! You can now insert Divi Layouts into anywhere using the text editor! In the text editor you will now notice a new \\u2018D\\u2019 button. Click on that, choose a layout and it will be inserted.<\\/li>\\n<li class=\\\"li1\\\">Insert library layouts inside any module using the text editor! This opens you up to a huge range of possibilities like layouts inside or tabs, toggles, slider modules and more!<\\/li>\\n<li class=\\\"li1\\\">With the new layout inserter you have even more power over Custom post types!<\\/li>\\n<li class=\\\"li1\\\">Various bug fixes and enhancements<\\/li>\\n<\\/ul>\\n\"]}\";}','yes'),(2836,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1536936691;}s:5:\"queue\";a:2:{s:32:\"7de3619981caadc55f30a002bfb299f6\";a:4:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1536936691;s:6:\"sticky\";b:1;}s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:3:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1579168249;}}s:4:\"done\";a:0:{}}','no'),(2837,'wp-smush-install-type','existing','no'),(2838,'wp-smush-version','3.4.2','no'),(2839,'wp-smush-skip-redirect','1','no'),(2845,'smush_global_stats','a:9:{s:11:\"size_before\";i:77396370;s:10:\"size_after\";i:69598946;s:7:\"percent\";d:10.1;s:5:\"human\";s:6:\"7.4 MB\";s:5:\"bytes\";i:7797424;s:12:\"total_images\";i:1905;s:12:\"resize_count\";i:4;s:14:\"resize_savings\";i:3104561;s:18:\"conversion_savings\";i:0;}','no'),(2850,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";i:0;s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(2851,'wp-smush-resize_sizes','a:2:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;}','no'),(2852,'skip-smush-setup','1','no'),(2866,'wpuxss_eml_taxonomies','a:11:{s:14:\"media_category\";a:12:{s:8:\"assigned\";i:1;s:9:\"eml_media\";i:1;s:6:\"labels\";a:12:{s:4:\"name\";s:16:\"Media Categories\";s:13:\"singular_name\";s:14:\"Media Category\";s:9:\"menu_name\";s:16:\"Media Categories\";s:9:\"all_items\";s:20:\"All Media Categories\";s:9:\"edit_item\";s:19:\"Edit Media Category\";s:9:\"view_item\";s:19:\"View Media Category\";s:11:\"update_item\";s:21:\"Update Media Category\";s:12:\"add_new_item\";s:22:\"Add New Media Category\";s:13:\"new_item_name\";s:23:\"New Media Category Name\";s:11:\"parent_item\";s:21:\"Parent Media Category\";s:17:\"parent_item_colon\";s:22:\"Parent Media Category:\";s:12:\"search_items\";s:23:\"Search Media Categories\";}s:12:\"hierarchical\";i:1;s:17:\"show_admin_column\";i:1;s:12:\"admin_filter\";i:1;s:21:\"media_uploader_filter\";i:1;s:25:\"media_popup_taxonomy_edit\";i:0;s:17:\"show_in_nav_menus\";i:1;s:4:\"sort\";i:0;s:12:\"show_in_rest\";i:0;s:7:\"rewrite\";a:2:{s:4:\"slug\";s:14:\"media_category\";s:10:\"with_front\";i:1;}}s:8:\"category\";a:6:{s:9:\"eml_media\";i:0;s:12:\"admin_filter\";i:1;s:21:\"media_uploader_filter\";i:1;s:25:\"media_popup_taxonomy_edit\";i:0;s:20:\"taxonomy_auto_assign\";i:0;s:8:\"assigned\";i:0;}s:8:\"post_tag\";a:6:{s:9:\"eml_media\";i:0;s:12:\"admin_filter\";i:1;s:21:\"media_uploader_filter\";i:1;s:25:\"media_popup_taxonomy_edit\";i:0;s:20:\"taxonomy_auto_assign\";i:0;s:8:\"assigned\";i:0;}s:7:\"frm_tag\";a:6:{s:9:\"eml_media\";i:0;s:12:\"admin_filter\";i:1;s:21:\"media_uploader_filter\";i:1;s:25:\"media_popup_taxonomy_edit\";i:0;s:20:\"taxonomy_auto_assign\";i:0;s:8:\"assigned\";i:0;}s:16:\"project_category\";a:6:{s:9:\"eml_media\";i:0;s:12:\"admin_filter\";i:1;s:21:\"media_uploader_filter\";i:1;s:25:\"media_popup_taxonomy_edit\";i:0;s:20:\"taxonomy_auto_assign\";i:0;s:8:\"assigned\";i:0;}s:11:\"project_tag\";a:6:{s:9:\"eml_media\";i:0;s:12:\"admin_filter\";i:1;s:21:\"media_uploader_filter\";i:1;s:25:\"media_popup_taxonomy_edit\";i:0;s:20:\"taxonomy_auto_assign\";i:0;s:8:\"assigned\";i:0;}s:15:\"layout_category\";a:6:{s:9:\"eml_media\";i:0;s:12:\"admin_filter\";i:1;s:21:\"media_uploader_filter\";i:1;s:25:\"media_popup_taxonomy_edit\";i:0;s:20:\"taxonomy_auto_assign\";i:0;s:8:\"assigned\";i:0;}s:11:\"layout_pack\";a:6:{s:9:\"eml_media\";i:0;s:12:\"admin_filter\";i:1;s:21:\"media_uploader_filter\";i:1;s:25:\"media_popup_taxonomy_edit\";i:0;s:20:\"taxonomy_auto_assign\";i:0;s:8:\"assigned\";i:0;}s:11:\"layout_type\";a:6:{s:9:\"eml_media\";i:0;s:12:\"admin_filter\";i:1;s:21:\"media_uploader_filter\";i:1;s:25:\"media_popup_taxonomy_edit\";i:0;s:20:\"taxonomy_auto_assign\";i:0;s:8:\"assigned\";i:0;}s:5:\"scope\";a:6:{s:9:\"eml_media\";i:0;s:12:\"admin_filter\";i:1;s:21:\"media_uploader_filter\";i:1;s:25:\"media_popup_taxonomy_edit\";i:0;s:20:\"taxonomy_auto_assign\";i:0;s:8:\"assigned\";i:0;}s:12:\"module_width\";a:6:{s:9:\"eml_media\";i:0;s:12:\"admin_filter\";i:1;s:21:\"media_uploader_filter\";i:1;s:25:\"media_popup_taxonomy_edit\";i:0;s:20:\"taxonomy_auto_assign\";i:0;s:8:\"assigned\";i:0;}}','yes'),(2867,'wpuxss_eml_lib_options','a:11:{s:24:\"enhance_media_shortcodes\";i:0;s:13:\"media_orderby\";s:4:\"date\";s:11:\"media_order\";s:4:\"DESC\";s:12:\"natural_sort\";i:0;s:13:\"force_filters\";i:1;s:15:\"filters_to_show\";a:3:{i:0;s:5:\"types\";i:1;s:5:\"dates\";i:2;s:10:\"taxonomies\";}s:10:\"show_count\";i:1;s:16:\"include_children\";i:1;s:17:\"grid_show_caption\";i:0;s:17:\"grid_caption_type\";s:5:\"title\";s:9:\"search_in\";a:3:{i:0;s:6:\"titles\";i:1;s:8:\"captions\";i:2;s:12:\"descriptions\";}}','yes'),(2868,'wpuxss_eml_tax_options','a:3:{s:12:\"tax_archives\";i:0;s:24:\"edit_all_as_hierarchical\";i:0;s:21:\"bulk_edit_save_button\";i:0;}','yes'),(2869,'wpuxss_eml_mimes','a:92:{s:12:\"jpg|jpeg|jpe\";a:5:{s:4:\"mime\";s:10:\"image/jpeg\";s:8:\"singular\";s:10:\"image/jpeg\";s:6:\"plural\";s:10:\"image/jpeg\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"gif\";a:5:{s:4:\"mime\";s:9:\"image/gif\";s:8:\"singular\";s:9:\"image/gif\";s:6:\"plural\";s:9:\"image/gif\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"png\";a:5:{s:4:\"mime\";s:9:\"image/png\";s:8:\"singular\";s:9:\"image/png\";s:6:\"plural\";s:9:\"image/png\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"bmp\";a:5:{s:4:\"mime\";s:9:\"image/bmp\";s:8:\"singular\";s:9:\"image/bmp\";s:6:\"plural\";s:9:\"image/bmp\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:8:\"tiff|tif\";a:5:{s:4:\"mime\";s:10:\"image/tiff\";s:8:\"singular\";s:10:\"image/tiff\";s:6:\"plural\";s:10:\"image/tiff\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"ico\";a:5:{s:4:\"mime\";s:12:\"image/x-icon\";s:8:\"singular\";s:12:\"image/x-icon\";s:6:\"plural\";s:12:\"image/x-icon\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:7:\"asf|asx\";a:5:{s:4:\"mime\";s:14:\"video/x-ms-asf\";s:8:\"singular\";s:14:\"video/x-ms-asf\";s:6:\"plural\";s:14:\"video/x-ms-asf\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wmv\";a:5:{s:4:\"mime\";s:14:\"video/x-ms-wmv\";s:8:\"singular\";s:14:\"video/x-ms-wmv\";s:6:\"plural\";s:14:\"video/x-ms-wmv\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wmx\";a:5:{s:4:\"mime\";s:14:\"video/x-ms-wmx\";s:8:\"singular\";s:14:\"video/x-ms-wmx\";s:6:\"plural\";s:14:\"video/x-ms-wmx\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:2:\"wm\";a:5:{s:4:\"mime\";s:13:\"video/x-ms-wm\";s:8:\"singular\";s:13:\"video/x-ms-wm\";s:6:\"plural\";s:13:\"video/x-ms-wm\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"avi\";a:5:{s:4:\"mime\";s:9:\"video/avi\";s:8:\"singular\";s:9:\"video/avi\";s:6:\"plural\";s:9:\"video/avi\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"divx\";a:5:{s:4:\"mime\";s:10:\"video/divx\";s:8:\"singular\";s:10:\"video/divx\";s:6:\"plural\";s:10:\"video/divx\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"flv\";a:5:{s:4:\"mime\";s:11:\"video/x-flv\";s:8:\"singular\";s:11:\"video/x-flv\";s:6:\"plural\";s:11:\"video/x-flv\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:6:\"mov|qt\";a:5:{s:4:\"mime\";s:15:\"video/quicktime\";s:8:\"singular\";s:15:\"video/quicktime\";s:6:\"plural\";s:15:\"video/quicktime\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:12:\"mpeg|mpg|mpe\";a:5:{s:4:\"mime\";s:10:\"video/mpeg\";s:8:\"singular\";s:10:\"video/mpeg\";s:6:\"plural\";s:10:\"video/mpeg\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:7:\"mp4|m4v\";a:5:{s:4:\"mime\";s:9:\"video/mp4\";s:8:\"singular\";s:9:\"video/mp4\";s:6:\"plural\";s:9:\"video/mp4\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"ogv\";a:5:{s:4:\"mime\";s:9:\"video/ogg\";s:8:\"singular\";s:9:\"video/ogg\";s:6:\"plural\";s:9:\"video/ogg\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"webm\";a:5:{s:4:\"mime\";s:10:\"video/webm\";s:8:\"singular\";s:10:\"video/webm\";s:6:\"plural\";s:10:\"video/webm\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"mkv\";a:5:{s:4:\"mime\";s:16:\"video/x-matroska\";s:8:\"singular\";s:16:\"video/x-matroska\";s:6:\"plural\";s:16:\"video/x-matroska\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:8:\"3gp|3gpp\";a:5:{s:4:\"mime\";s:10:\"video/3gpp\";s:8:\"singular\";s:10:\"video/3gpp\";s:6:\"plural\";s:10:\"video/3gpp\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:8:\"3g2|3gp2\";a:5:{s:4:\"mime\";s:11:\"video/3gpp2\";s:8:\"singular\";s:11:\"video/3gpp2\";s:6:\"plural\";s:11:\"video/3gpp2\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:18:\"txt|asc|c|cc|h|srt\";a:5:{s:4:\"mime\";s:10:\"text/plain\";s:8:\"singular\";s:10:\"text/plain\";s:6:\"plural\";s:10:\"text/plain\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"csv\";a:5:{s:4:\"mime\";s:8:\"text/csv\";s:8:\"singular\";s:8:\"text/csv\";s:6:\"plural\";s:8:\"text/csv\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"tsv\";a:5:{s:4:\"mime\";s:25:\"text/tab-separated-values\";s:8:\"singular\";s:25:\"text/tab-separated-values\";s:6:\"plural\";s:25:\"text/tab-separated-values\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"ics\";a:5:{s:4:\"mime\";s:13:\"text/calendar\";s:8:\"singular\";s:13:\"text/calendar\";s:6:\"plural\";s:13:\"text/calendar\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"rtx\";a:5:{s:4:\"mime\";s:13:\"text/richtext\";s:8:\"singular\";s:13:\"text/richtext\";s:6:\"plural\";s:13:\"text/richtext\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"css\";a:5:{s:4:\"mime\";s:8:\"text/css\";s:8:\"singular\";s:8:\"text/css\";s:6:\"plural\";s:8:\"text/css\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:8:\"htm|html\";a:5:{s:4:\"mime\";s:9:\"text/html\";s:8:\"singular\";s:9:\"text/html\";s:6:\"plural\";s:9:\"text/html\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"vtt\";a:5:{s:4:\"mime\";s:8:\"text/vtt\";s:8:\"singular\";s:8:\"text/vtt\";s:6:\"plural\";s:8:\"text/vtt\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"dfxp\";a:5:{s:4:\"mime\";s:20:\"application/ttaf+xml\";s:8:\"singular\";s:20:\"application/ttaf+xml\";s:6:\"plural\";s:20:\"application/ttaf+xml\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:11:\"mp3|m4a|m4b\";a:5:{s:4:\"mime\";s:10:\"audio/mpeg\";s:8:\"singular\";s:10:\"audio/mpeg\";s:6:\"plural\";s:10:\"audio/mpeg\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"aac\";a:5:{s:4:\"mime\";s:9:\"audio/aac\";s:8:\"singular\";s:9:\"audio/aac\";s:6:\"plural\";s:9:\"audio/aac\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:6:\"ra|ram\";a:5:{s:4:\"mime\";s:17:\"audio/x-realaudio\";s:8:\"singular\";s:17:\"audio/x-realaudio\";s:6:\"plural\";s:17:\"audio/x-realaudio\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wav\";a:5:{s:4:\"mime\";s:9:\"audio/wav\";s:8:\"singular\";s:9:\"audio/wav\";s:6:\"plural\";s:9:\"audio/wav\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:7:\"ogg|oga\";a:5:{s:4:\"mime\";s:9:\"audio/ogg\";s:8:\"singular\";s:9:\"audio/ogg\";s:6:\"plural\";s:9:\"audio/ogg\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"flac\";a:5:{s:4:\"mime\";s:10:\"audio/flac\";s:8:\"singular\";s:10:\"audio/flac\";s:6:\"plural\";s:10:\"audio/flac\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:8:\"mid|midi\";a:5:{s:4:\"mime\";s:10:\"audio/midi\";s:8:\"singular\";s:10:\"audio/midi\";s:6:\"plural\";s:10:\"audio/midi\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wma\";a:5:{s:4:\"mime\";s:14:\"audio/x-ms-wma\";s:8:\"singular\";s:14:\"audio/x-ms-wma\";s:6:\"plural\";s:14:\"audio/x-ms-wma\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wax\";a:5:{s:4:\"mime\";s:14:\"audio/x-ms-wax\";s:8:\"singular\";s:14:\"audio/x-ms-wax\";s:6:\"plural\";s:14:\"audio/x-ms-wax\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"mka\";a:5:{s:4:\"mime\";s:16:\"audio/x-matroska\";s:8:\"singular\";s:16:\"audio/x-matroska\";s:6:\"plural\";s:16:\"audio/x-matroska\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"rtf\";a:5:{s:4:\"mime\";s:15:\"application/rtf\";s:8:\"singular\";s:15:\"application/rtf\";s:6:\"plural\";s:15:\"application/rtf\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:2:\"js\";a:5:{s:4:\"mime\";s:22:\"application/javascript\";s:8:\"singular\";s:22:\"application/javascript\";s:6:\"plural\";s:22:\"application/javascript\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"pdf\";a:5:{s:4:\"mime\";s:15:\"application/pdf\";s:8:\"singular\";s:3:\"PDF\";s:6:\"plural\";s:4:\"PDFs\";s:6:\"filter\";i:1;s:6:\"upload\";i:1;}s:3:\"swf\";a:5:{s:4:\"mime\";s:29:\"application/x-shockwave-flash\";s:8:\"singular\";s:29:\"application/x-shockwave-flash\";s:6:\"plural\";s:29:\"application/x-shockwave-flash\";s:6:\"filter\";i:0;s:6:\"upload\";i:0;}s:5:\"class\";a:5:{s:4:\"mime\";s:16:\"application/java\";s:8:\"singular\";s:16:\"application/java\";s:6:\"plural\";s:16:\"application/java\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"tar\";a:5:{s:4:\"mime\";s:17:\"application/x-tar\";s:8:\"singular\";s:17:\"application/x-tar\";s:6:\"plural\";s:17:\"application/x-tar\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"zip\";a:5:{s:4:\"mime\";s:15:\"application/zip\";s:8:\"singular\";s:15:\"application/zip\";s:6:\"plural\";s:15:\"application/zip\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:7:\"gz|gzip\";a:5:{s:4:\"mime\";s:18:\"application/x-gzip\";s:8:\"singular\";s:18:\"application/x-gzip\";s:6:\"plural\";s:18:\"application/x-gzip\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"rar\";a:5:{s:4:\"mime\";s:15:\"application/rar\";s:8:\"singular\";s:15:\"application/rar\";s:6:\"plural\";s:15:\"application/rar\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:2:\"7z\";a:5:{s:4:\"mime\";s:27:\"application/x-7z-compressed\";s:8:\"singular\";s:27:\"application/x-7z-compressed\";s:6:\"plural\";s:27:\"application/x-7z-compressed\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"exe\";a:5:{s:4:\"mime\";s:24:\"application/x-msdownload\";s:8:\"singular\";s:24:\"application/x-msdownload\";s:6:\"plural\";s:24:\"application/x-msdownload\";s:6:\"filter\";i:0;s:6:\"upload\";i:0;}s:3:\"psd\";a:5:{s:4:\"mime\";s:24:\"application/octet-stream\";s:8:\"singular\";s:24:\"application/octet-stream\";s:6:\"plural\";s:24:\"application/octet-stream\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"xcf\";a:5:{s:4:\"mime\";s:24:\"application/octet-stream\";s:8:\"singular\";s:24:\"application/octet-stream\";s:6:\"plural\";s:24:\"application/octet-stream\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"doc\";a:5:{s:4:\"mime\";s:18:\"application/msword\";s:8:\"singular\";s:18:\"application/msword\";s:6:\"plural\";s:18:\"application/msword\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:11:\"pot|pps|ppt\";a:5:{s:4:\"mime\";s:29:\"application/vnd.ms-powerpoint\";s:8:\"singular\";s:29:\"application/vnd.ms-powerpoint\";s:6:\"plural\";s:29:\"application/vnd.ms-powerpoint\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wri\";a:5:{s:4:\"mime\";s:24:\"application/vnd.ms-write\";s:8:\"singular\";s:24:\"application/vnd.ms-write\";s:6:\"plural\";s:24:\"application/vnd.ms-write\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:15:\"xla|xls|xlt|xlw\";a:5:{s:4:\"mime\";s:24:\"application/vnd.ms-excel\";s:8:\"singular\";s:24:\"application/vnd.ms-excel\";s:6:\"plural\";s:24:\"application/vnd.ms-excel\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"mdb\";a:5:{s:4:\"mime\";s:25:\"application/vnd.ms-access\";s:8:\"singular\";s:25:\"application/vnd.ms-access\";s:6:\"plural\";s:25:\"application/vnd.ms-access\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"mpp\";a:5:{s:4:\"mime\";s:26:\"application/vnd.ms-project\";s:8:\"singular\";s:26:\"application/vnd.ms-project\";s:6:\"plural\";s:26:\"application/vnd.ms-project\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"docx\";a:5:{s:4:\"mime\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.document\";s:8:\"singular\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.document\";s:6:\"plural\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.document\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"docm\";a:5:{s:4:\"mime\";s:48:\"application/vnd.ms-word.document.macroEnabled.12\";s:8:\"singular\";s:48:\"application/vnd.ms-word.document.macroEnabled.12\";s:6:\"plural\";s:48:\"application/vnd.ms-word.document.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"dotx\";a:5:{s:4:\"mime\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.template\";s:8:\"singular\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.template\";s:6:\"plural\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.template\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"dotm\";a:5:{s:4:\"mime\";s:48:\"application/vnd.ms-word.template.macroEnabled.12\";s:8:\"singular\";s:48:\"application/vnd.ms-word.template.macroEnabled.12\";s:6:\"plural\";s:48:\"application/vnd.ms-word.template.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xlsx\";a:5:{s:4:\"mime\";s:65:\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\";s:8:\"singular\";s:65:\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\";s:6:\"plural\";s:65:\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xlsm\";a:5:{s:4:\"mime\";s:46:\"application/vnd.ms-excel.sheet.macroEnabled.12\";s:8:\"singular\";s:46:\"application/vnd.ms-excel.sheet.macroEnabled.12\";s:6:\"plural\";s:46:\"application/vnd.ms-excel.sheet.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xlsb\";a:5:{s:4:\"mime\";s:53:\"application/vnd.ms-excel.sheet.binary.macroEnabled.12\";s:8:\"singular\";s:53:\"application/vnd.ms-excel.sheet.binary.macroEnabled.12\";s:6:\"plural\";s:53:\"application/vnd.ms-excel.sheet.binary.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xltx\";a:5:{s:4:\"mime\";s:68:\"application/vnd.openxmlformats-officedocument.spreadsheetml.template\";s:8:\"singular\";s:68:\"application/vnd.openxmlformats-officedocument.spreadsheetml.template\";s:6:\"plural\";s:68:\"application/vnd.openxmlformats-officedocument.spreadsheetml.template\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xltm\";a:5:{s:4:\"mime\";s:49:\"application/vnd.ms-excel.template.macroEnabled.12\";s:8:\"singular\";s:49:\"application/vnd.ms-excel.template.macroEnabled.12\";s:6:\"plural\";s:49:\"application/vnd.ms-excel.template.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xlam\";a:5:{s:4:\"mime\";s:46:\"application/vnd.ms-excel.addin.macroEnabled.12\";s:8:\"singular\";s:46:\"application/vnd.ms-excel.addin.macroEnabled.12\";s:6:\"plural\";s:46:\"application/vnd.ms-excel.addin.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"pptx\";a:5:{s:4:\"mime\";s:73:\"application/vnd.openxmlformats-officedocument.presentationml.presentation\";s:8:\"singular\";s:73:\"application/vnd.openxmlformats-officedocument.presentationml.presentation\";s:6:\"plural\";s:73:\"application/vnd.openxmlformats-officedocument.presentationml.presentation\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"pptm\";a:5:{s:4:\"mime\";s:58:\"application/vnd.ms-powerpoint.presentation.macroEnabled.12\";s:8:\"singular\";s:58:\"application/vnd.ms-powerpoint.presentation.macroEnabled.12\";s:6:\"plural\";s:58:\"application/vnd.ms-powerpoint.presentation.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"ppsx\";a:5:{s:4:\"mime\";s:70:\"application/vnd.openxmlformats-officedocument.presentationml.slideshow\";s:8:\"singular\";s:70:\"application/vnd.openxmlformats-officedocument.presentationml.slideshow\";s:6:\"plural\";s:70:\"application/vnd.openxmlformats-officedocument.presentationml.slideshow\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"ppsm\";a:5:{s:4:\"mime\";s:55:\"application/vnd.ms-powerpoint.slideshow.macroEnabled.12\";s:8:\"singular\";s:55:\"application/vnd.ms-powerpoint.slideshow.macroEnabled.12\";s:6:\"plural\";s:55:\"application/vnd.ms-powerpoint.slideshow.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"potx\";a:5:{s:4:\"mime\";s:69:\"application/vnd.openxmlformats-officedocument.presentationml.template\";s:8:\"singular\";s:69:\"application/vnd.openxmlformats-officedocument.presentationml.template\";s:6:\"plural\";s:69:\"application/vnd.openxmlformats-officedocument.presentationml.template\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"potm\";a:5:{s:4:\"mime\";s:54:\"application/vnd.ms-powerpoint.template.macroEnabled.12\";s:8:\"singular\";s:54:\"application/vnd.ms-powerpoint.template.macroEnabled.12\";s:6:\"plural\";s:54:\"application/vnd.ms-powerpoint.template.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"ppam\";a:5:{s:4:\"mime\";s:51:\"application/vnd.ms-powerpoint.addin.macroEnabled.12\";s:8:\"singular\";s:51:\"application/vnd.ms-powerpoint.addin.macroEnabled.12\";s:6:\"plural\";s:51:\"application/vnd.ms-powerpoint.addin.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"sldx\";a:5:{s:4:\"mime\";s:66:\"application/vnd.openxmlformats-officedocument.presentationml.slide\";s:8:\"singular\";s:66:\"application/vnd.openxmlformats-officedocument.presentationml.slide\";s:6:\"plural\";s:66:\"application/vnd.openxmlformats-officedocument.presentationml.slide\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"sldm\";a:5:{s:4:\"mime\";s:51:\"application/vnd.ms-powerpoint.slide.macroEnabled.12\";s:8:\"singular\";s:51:\"application/vnd.ms-powerpoint.slide.macroEnabled.12\";s:6:\"plural\";s:51:\"application/vnd.ms-powerpoint.slide.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:28:\"onetoc|onetoc2|onetmp|onepkg\";a:5:{s:4:\"mime\";s:19:\"application/onenote\";s:8:\"singular\";s:19:\"application/onenote\";s:6:\"plural\";s:19:\"application/onenote\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"oxps\";a:5:{s:4:\"mime\";s:16:\"application/oxps\";s:8:\"singular\";s:16:\"application/oxps\";s:6:\"plural\";s:16:\"application/oxps\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"xps\";a:5:{s:4:\"mime\";s:30:\"application/vnd.ms-xpsdocument\";s:8:\"singular\";s:30:\"application/vnd.ms-xpsdocument\";s:6:\"plural\";s:30:\"application/vnd.ms-xpsdocument\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odt\";a:5:{s:4:\"mime\";s:39:\"application/vnd.oasis.opendocument.text\";s:8:\"singular\";s:39:\"application/vnd.oasis.opendocument.text\";s:6:\"plural\";s:39:\"application/vnd.oasis.opendocument.text\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odp\";a:5:{s:4:\"mime\";s:47:\"application/vnd.oasis.opendocument.presentation\";s:8:\"singular\";s:47:\"application/vnd.oasis.opendocument.presentation\";s:6:\"plural\";s:47:\"application/vnd.oasis.opendocument.presentation\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"ods\";a:5:{s:4:\"mime\";s:46:\"application/vnd.oasis.opendocument.spreadsheet\";s:8:\"singular\";s:46:\"application/vnd.oasis.opendocument.spreadsheet\";s:6:\"plural\";s:46:\"application/vnd.oasis.opendocument.spreadsheet\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odg\";a:5:{s:4:\"mime\";s:43:\"application/vnd.oasis.opendocument.graphics\";s:8:\"singular\";s:43:\"application/vnd.oasis.opendocument.graphics\";s:6:\"plural\";s:43:\"application/vnd.oasis.opendocument.graphics\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odc\";a:5:{s:4:\"mime\";s:40:\"application/vnd.oasis.opendocument.chart\";s:8:\"singular\";s:40:\"application/vnd.oasis.opendocument.chart\";s:6:\"plural\";s:40:\"application/vnd.oasis.opendocument.chart\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odb\";a:5:{s:4:\"mime\";s:43:\"application/vnd.oasis.opendocument.database\";s:8:\"singular\";s:43:\"application/vnd.oasis.opendocument.database\";s:6:\"plural\";s:43:\"application/vnd.oasis.opendocument.database\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odf\";a:5:{s:4:\"mime\";s:42:\"application/vnd.oasis.opendocument.formula\";s:8:\"singular\";s:42:\"application/vnd.oasis.opendocument.formula\";s:6:\"plural\";s:42:\"application/vnd.oasis.opendocument.formula\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:6:\"wp|wpd\";a:5:{s:4:\"mime\";s:23:\"application/wordperfect\";s:8:\"singular\";s:23:\"application/wordperfect\";s:6:\"plural\";s:23:\"application/wordperfect\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"key\";a:5:{s:4:\"mime\";s:29:\"application/vnd.apple.keynote\";s:8:\"singular\";s:29:\"application/vnd.apple.keynote\";s:6:\"plural\";s:29:\"application/vnd.apple.keynote\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:7:\"numbers\";a:5:{s:4:\"mime\";s:29:\"application/vnd.apple.numbers\";s:8:\"singular\";s:29:\"application/vnd.apple.numbers\";s:6:\"plural\";s:29:\"application/vnd.apple.numbers\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:5:\"pages\";a:5:{s:4:\"mime\";s:27:\"application/vnd.apple.pages\";s:8:\"singular\";s:27:\"application/vnd.apple.pages\";s:6:\"plural\";s:27:\"application/vnd.apple.pages\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}}','yes'),(2870,'wpuxss_eml_mimes_backup','a:92:{s:12:\"jpg|jpeg|jpe\";a:5:{s:4:\"mime\";s:10:\"image/jpeg\";s:8:\"singular\";s:10:\"image/jpeg\";s:6:\"plural\";s:10:\"image/jpeg\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"gif\";a:5:{s:4:\"mime\";s:9:\"image/gif\";s:8:\"singular\";s:9:\"image/gif\";s:6:\"plural\";s:9:\"image/gif\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"png\";a:5:{s:4:\"mime\";s:9:\"image/png\";s:8:\"singular\";s:9:\"image/png\";s:6:\"plural\";s:9:\"image/png\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"bmp\";a:5:{s:4:\"mime\";s:9:\"image/bmp\";s:8:\"singular\";s:9:\"image/bmp\";s:6:\"plural\";s:9:\"image/bmp\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:8:\"tiff|tif\";a:5:{s:4:\"mime\";s:10:\"image/tiff\";s:8:\"singular\";s:10:\"image/tiff\";s:6:\"plural\";s:10:\"image/tiff\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"ico\";a:5:{s:4:\"mime\";s:12:\"image/x-icon\";s:8:\"singular\";s:12:\"image/x-icon\";s:6:\"plural\";s:12:\"image/x-icon\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:7:\"asf|asx\";a:5:{s:4:\"mime\";s:14:\"video/x-ms-asf\";s:8:\"singular\";s:14:\"video/x-ms-asf\";s:6:\"plural\";s:14:\"video/x-ms-asf\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wmv\";a:5:{s:4:\"mime\";s:14:\"video/x-ms-wmv\";s:8:\"singular\";s:14:\"video/x-ms-wmv\";s:6:\"plural\";s:14:\"video/x-ms-wmv\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wmx\";a:5:{s:4:\"mime\";s:14:\"video/x-ms-wmx\";s:8:\"singular\";s:14:\"video/x-ms-wmx\";s:6:\"plural\";s:14:\"video/x-ms-wmx\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:2:\"wm\";a:5:{s:4:\"mime\";s:13:\"video/x-ms-wm\";s:8:\"singular\";s:13:\"video/x-ms-wm\";s:6:\"plural\";s:13:\"video/x-ms-wm\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"avi\";a:5:{s:4:\"mime\";s:9:\"video/avi\";s:8:\"singular\";s:9:\"video/avi\";s:6:\"plural\";s:9:\"video/avi\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"divx\";a:5:{s:4:\"mime\";s:10:\"video/divx\";s:8:\"singular\";s:10:\"video/divx\";s:6:\"plural\";s:10:\"video/divx\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"flv\";a:5:{s:4:\"mime\";s:11:\"video/x-flv\";s:8:\"singular\";s:11:\"video/x-flv\";s:6:\"plural\";s:11:\"video/x-flv\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:6:\"mov|qt\";a:5:{s:4:\"mime\";s:15:\"video/quicktime\";s:8:\"singular\";s:15:\"video/quicktime\";s:6:\"plural\";s:15:\"video/quicktime\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:12:\"mpeg|mpg|mpe\";a:5:{s:4:\"mime\";s:10:\"video/mpeg\";s:8:\"singular\";s:10:\"video/mpeg\";s:6:\"plural\";s:10:\"video/mpeg\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:7:\"mp4|m4v\";a:5:{s:4:\"mime\";s:9:\"video/mp4\";s:8:\"singular\";s:9:\"video/mp4\";s:6:\"plural\";s:9:\"video/mp4\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"ogv\";a:5:{s:4:\"mime\";s:9:\"video/ogg\";s:8:\"singular\";s:9:\"video/ogg\";s:6:\"plural\";s:9:\"video/ogg\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"webm\";a:5:{s:4:\"mime\";s:10:\"video/webm\";s:8:\"singular\";s:10:\"video/webm\";s:6:\"plural\";s:10:\"video/webm\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"mkv\";a:5:{s:4:\"mime\";s:16:\"video/x-matroska\";s:8:\"singular\";s:16:\"video/x-matroska\";s:6:\"plural\";s:16:\"video/x-matroska\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:8:\"3gp|3gpp\";a:5:{s:4:\"mime\";s:10:\"video/3gpp\";s:8:\"singular\";s:10:\"video/3gpp\";s:6:\"plural\";s:10:\"video/3gpp\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:8:\"3g2|3gp2\";a:5:{s:4:\"mime\";s:11:\"video/3gpp2\";s:8:\"singular\";s:11:\"video/3gpp2\";s:6:\"plural\";s:11:\"video/3gpp2\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:18:\"txt|asc|c|cc|h|srt\";a:5:{s:4:\"mime\";s:10:\"text/plain\";s:8:\"singular\";s:10:\"text/plain\";s:6:\"plural\";s:10:\"text/plain\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"csv\";a:5:{s:4:\"mime\";s:8:\"text/csv\";s:8:\"singular\";s:8:\"text/csv\";s:6:\"plural\";s:8:\"text/csv\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"tsv\";a:5:{s:4:\"mime\";s:25:\"text/tab-separated-values\";s:8:\"singular\";s:25:\"text/tab-separated-values\";s:6:\"plural\";s:25:\"text/tab-separated-values\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"ics\";a:5:{s:4:\"mime\";s:13:\"text/calendar\";s:8:\"singular\";s:13:\"text/calendar\";s:6:\"plural\";s:13:\"text/calendar\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"rtx\";a:5:{s:4:\"mime\";s:13:\"text/richtext\";s:8:\"singular\";s:13:\"text/richtext\";s:6:\"plural\";s:13:\"text/richtext\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"css\";a:5:{s:4:\"mime\";s:8:\"text/css\";s:8:\"singular\";s:8:\"text/css\";s:6:\"plural\";s:8:\"text/css\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:8:\"htm|html\";a:5:{s:4:\"mime\";s:9:\"text/html\";s:8:\"singular\";s:9:\"text/html\";s:6:\"plural\";s:9:\"text/html\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"vtt\";a:5:{s:4:\"mime\";s:8:\"text/vtt\";s:8:\"singular\";s:8:\"text/vtt\";s:6:\"plural\";s:8:\"text/vtt\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"dfxp\";a:5:{s:4:\"mime\";s:20:\"application/ttaf+xml\";s:8:\"singular\";s:20:\"application/ttaf+xml\";s:6:\"plural\";s:20:\"application/ttaf+xml\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:11:\"mp3|m4a|m4b\";a:5:{s:4:\"mime\";s:10:\"audio/mpeg\";s:8:\"singular\";s:10:\"audio/mpeg\";s:6:\"plural\";s:10:\"audio/mpeg\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"aac\";a:5:{s:4:\"mime\";s:9:\"audio/aac\";s:8:\"singular\";s:9:\"audio/aac\";s:6:\"plural\";s:9:\"audio/aac\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:6:\"ra|ram\";a:5:{s:4:\"mime\";s:17:\"audio/x-realaudio\";s:8:\"singular\";s:17:\"audio/x-realaudio\";s:6:\"plural\";s:17:\"audio/x-realaudio\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wav\";a:5:{s:4:\"mime\";s:9:\"audio/wav\";s:8:\"singular\";s:9:\"audio/wav\";s:6:\"plural\";s:9:\"audio/wav\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:7:\"ogg|oga\";a:5:{s:4:\"mime\";s:9:\"audio/ogg\";s:8:\"singular\";s:9:\"audio/ogg\";s:6:\"plural\";s:9:\"audio/ogg\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"flac\";a:5:{s:4:\"mime\";s:10:\"audio/flac\";s:8:\"singular\";s:10:\"audio/flac\";s:6:\"plural\";s:10:\"audio/flac\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:8:\"mid|midi\";a:5:{s:4:\"mime\";s:10:\"audio/midi\";s:8:\"singular\";s:10:\"audio/midi\";s:6:\"plural\";s:10:\"audio/midi\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wma\";a:5:{s:4:\"mime\";s:14:\"audio/x-ms-wma\";s:8:\"singular\";s:14:\"audio/x-ms-wma\";s:6:\"plural\";s:14:\"audio/x-ms-wma\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wax\";a:5:{s:4:\"mime\";s:14:\"audio/x-ms-wax\";s:8:\"singular\";s:14:\"audio/x-ms-wax\";s:6:\"plural\";s:14:\"audio/x-ms-wax\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"mka\";a:5:{s:4:\"mime\";s:16:\"audio/x-matroska\";s:8:\"singular\";s:16:\"audio/x-matroska\";s:6:\"plural\";s:16:\"audio/x-matroska\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"rtf\";a:5:{s:4:\"mime\";s:15:\"application/rtf\";s:8:\"singular\";s:15:\"application/rtf\";s:6:\"plural\";s:15:\"application/rtf\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:2:\"js\";a:5:{s:4:\"mime\";s:22:\"application/javascript\";s:8:\"singular\";s:22:\"application/javascript\";s:6:\"plural\";s:22:\"application/javascript\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"pdf\";a:5:{s:4:\"mime\";s:15:\"application/pdf\";s:8:\"singular\";s:15:\"application/pdf\";s:6:\"plural\";s:15:\"application/pdf\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"swf\";a:5:{s:4:\"mime\";s:29:\"application/x-shockwave-flash\";s:8:\"singular\";s:29:\"application/x-shockwave-flash\";s:6:\"plural\";s:29:\"application/x-shockwave-flash\";s:6:\"filter\";i:0;s:6:\"upload\";i:0;}s:5:\"class\";a:5:{s:4:\"mime\";s:16:\"application/java\";s:8:\"singular\";s:16:\"application/java\";s:6:\"plural\";s:16:\"application/java\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"tar\";a:5:{s:4:\"mime\";s:17:\"application/x-tar\";s:8:\"singular\";s:17:\"application/x-tar\";s:6:\"plural\";s:17:\"application/x-tar\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"zip\";a:5:{s:4:\"mime\";s:15:\"application/zip\";s:8:\"singular\";s:15:\"application/zip\";s:6:\"plural\";s:15:\"application/zip\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:7:\"gz|gzip\";a:5:{s:4:\"mime\";s:18:\"application/x-gzip\";s:8:\"singular\";s:18:\"application/x-gzip\";s:6:\"plural\";s:18:\"application/x-gzip\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"rar\";a:5:{s:4:\"mime\";s:15:\"application/rar\";s:8:\"singular\";s:15:\"application/rar\";s:6:\"plural\";s:15:\"application/rar\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:2:\"7z\";a:5:{s:4:\"mime\";s:27:\"application/x-7z-compressed\";s:8:\"singular\";s:27:\"application/x-7z-compressed\";s:6:\"plural\";s:27:\"application/x-7z-compressed\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"exe\";a:5:{s:4:\"mime\";s:24:\"application/x-msdownload\";s:8:\"singular\";s:24:\"application/x-msdownload\";s:6:\"plural\";s:24:\"application/x-msdownload\";s:6:\"filter\";i:0;s:6:\"upload\";i:0;}s:3:\"psd\";a:5:{s:4:\"mime\";s:24:\"application/octet-stream\";s:8:\"singular\";s:24:\"application/octet-stream\";s:6:\"plural\";s:24:\"application/octet-stream\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"xcf\";a:5:{s:4:\"mime\";s:24:\"application/octet-stream\";s:8:\"singular\";s:24:\"application/octet-stream\";s:6:\"plural\";s:24:\"application/octet-stream\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"doc\";a:5:{s:4:\"mime\";s:18:\"application/msword\";s:8:\"singular\";s:18:\"application/msword\";s:6:\"plural\";s:18:\"application/msword\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:11:\"pot|pps|ppt\";a:5:{s:4:\"mime\";s:29:\"application/vnd.ms-powerpoint\";s:8:\"singular\";s:29:\"application/vnd.ms-powerpoint\";s:6:\"plural\";s:29:\"application/vnd.ms-powerpoint\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"wri\";a:5:{s:4:\"mime\";s:24:\"application/vnd.ms-write\";s:8:\"singular\";s:24:\"application/vnd.ms-write\";s:6:\"plural\";s:24:\"application/vnd.ms-write\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:15:\"xla|xls|xlt|xlw\";a:5:{s:4:\"mime\";s:24:\"application/vnd.ms-excel\";s:8:\"singular\";s:24:\"application/vnd.ms-excel\";s:6:\"plural\";s:24:\"application/vnd.ms-excel\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"mdb\";a:5:{s:4:\"mime\";s:25:\"application/vnd.ms-access\";s:8:\"singular\";s:25:\"application/vnd.ms-access\";s:6:\"plural\";s:25:\"application/vnd.ms-access\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"mpp\";a:5:{s:4:\"mime\";s:26:\"application/vnd.ms-project\";s:8:\"singular\";s:26:\"application/vnd.ms-project\";s:6:\"plural\";s:26:\"application/vnd.ms-project\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"docx\";a:5:{s:4:\"mime\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.document\";s:8:\"singular\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.document\";s:6:\"plural\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.document\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"docm\";a:5:{s:4:\"mime\";s:48:\"application/vnd.ms-word.document.macroEnabled.12\";s:8:\"singular\";s:48:\"application/vnd.ms-word.document.macroEnabled.12\";s:6:\"plural\";s:48:\"application/vnd.ms-word.document.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"dotx\";a:5:{s:4:\"mime\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.template\";s:8:\"singular\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.template\";s:6:\"plural\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.template\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"dotm\";a:5:{s:4:\"mime\";s:48:\"application/vnd.ms-word.template.macroEnabled.12\";s:8:\"singular\";s:48:\"application/vnd.ms-word.template.macroEnabled.12\";s:6:\"plural\";s:48:\"application/vnd.ms-word.template.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xlsx\";a:5:{s:4:\"mime\";s:65:\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\";s:8:\"singular\";s:65:\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\";s:6:\"plural\";s:65:\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xlsm\";a:5:{s:4:\"mime\";s:46:\"application/vnd.ms-excel.sheet.macroEnabled.12\";s:8:\"singular\";s:46:\"application/vnd.ms-excel.sheet.macroEnabled.12\";s:6:\"plural\";s:46:\"application/vnd.ms-excel.sheet.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xlsb\";a:5:{s:4:\"mime\";s:53:\"application/vnd.ms-excel.sheet.binary.macroEnabled.12\";s:8:\"singular\";s:53:\"application/vnd.ms-excel.sheet.binary.macroEnabled.12\";s:6:\"plural\";s:53:\"application/vnd.ms-excel.sheet.binary.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xltx\";a:5:{s:4:\"mime\";s:68:\"application/vnd.openxmlformats-officedocument.spreadsheetml.template\";s:8:\"singular\";s:68:\"application/vnd.openxmlformats-officedocument.spreadsheetml.template\";s:6:\"plural\";s:68:\"application/vnd.openxmlformats-officedocument.spreadsheetml.template\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xltm\";a:5:{s:4:\"mime\";s:49:\"application/vnd.ms-excel.template.macroEnabled.12\";s:8:\"singular\";s:49:\"application/vnd.ms-excel.template.macroEnabled.12\";s:6:\"plural\";s:49:\"application/vnd.ms-excel.template.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"xlam\";a:5:{s:4:\"mime\";s:46:\"application/vnd.ms-excel.addin.macroEnabled.12\";s:8:\"singular\";s:46:\"application/vnd.ms-excel.addin.macroEnabled.12\";s:6:\"plural\";s:46:\"application/vnd.ms-excel.addin.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"pptx\";a:5:{s:4:\"mime\";s:73:\"application/vnd.openxmlformats-officedocument.presentationml.presentation\";s:8:\"singular\";s:73:\"application/vnd.openxmlformats-officedocument.presentationml.presentation\";s:6:\"plural\";s:73:\"application/vnd.openxmlformats-officedocument.presentationml.presentation\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"pptm\";a:5:{s:4:\"mime\";s:58:\"application/vnd.ms-powerpoint.presentation.macroEnabled.12\";s:8:\"singular\";s:58:\"application/vnd.ms-powerpoint.presentation.macroEnabled.12\";s:6:\"plural\";s:58:\"application/vnd.ms-powerpoint.presentation.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"ppsx\";a:5:{s:4:\"mime\";s:70:\"application/vnd.openxmlformats-officedocument.presentationml.slideshow\";s:8:\"singular\";s:70:\"application/vnd.openxmlformats-officedocument.presentationml.slideshow\";s:6:\"plural\";s:70:\"application/vnd.openxmlformats-officedocument.presentationml.slideshow\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"ppsm\";a:5:{s:4:\"mime\";s:55:\"application/vnd.ms-powerpoint.slideshow.macroEnabled.12\";s:8:\"singular\";s:55:\"application/vnd.ms-powerpoint.slideshow.macroEnabled.12\";s:6:\"plural\";s:55:\"application/vnd.ms-powerpoint.slideshow.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"potx\";a:5:{s:4:\"mime\";s:69:\"application/vnd.openxmlformats-officedocument.presentationml.template\";s:8:\"singular\";s:69:\"application/vnd.openxmlformats-officedocument.presentationml.template\";s:6:\"plural\";s:69:\"application/vnd.openxmlformats-officedocument.presentationml.template\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"potm\";a:5:{s:4:\"mime\";s:54:\"application/vnd.ms-powerpoint.template.macroEnabled.12\";s:8:\"singular\";s:54:\"application/vnd.ms-powerpoint.template.macroEnabled.12\";s:6:\"plural\";s:54:\"application/vnd.ms-powerpoint.template.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"ppam\";a:5:{s:4:\"mime\";s:51:\"application/vnd.ms-powerpoint.addin.macroEnabled.12\";s:8:\"singular\";s:51:\"application/vnd.ms-powerpoint.addin.macroEnabled.12\";s:6:\"plural\";s:51:\"application/vnd.ms-powerpoint.addin.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"sldx\";a:5:{s:4:\"mime\";s:66:\"application/vnd.openxmlformats-officedocument.presentationml.slide\";s:8:\"singular\";s:66:\"application/vnd.openxmlformats-officedocument.presentationml.slide\";s:6:\"plural\";s:66:\"application/vnd.openxmlformats-officedocument.presentationml.slide\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"sldm\";a:5:{s:4:\"mime\";s:51:\"application/vnd.ms-powerpoint.slide.macroEnabled.12\";s:8:\"singular\";s:51:\"application/vnd.ms-powerpoint.slide.macroEnabled.12\";s:6:\"plural\";s:51:\"application/vnd.ms-powerpoint.slide.macroEnabled.12\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:28:\"onetoc|onetoc2|onetmp|onepkg\";a:5:{s:4:\"mime\";s:19:\"application/onenote\";s:8:\"singular\";s:19:\"application/onenote\";s:6:\"plural\";s:19:\"application/onenote\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:4:\"oxps\";a:5:{s:4:\"mime\";s:16:\"application/oxps\";s:8:\"singular\";s:16:\"application/oxps\";s:6:\"plural\";s:16:\"application/oxps\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"xps\";a:5:{s:4:\"mime\";s:30:\"application/vnd.ms-xpsdocument\";s:8:\"singular\";s:30:\"application/vnd.ms-xpsdocument\";s:6:\"plural\";s:30:\"application/vnd.ms-xpsdocument\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odt\";a:5:{s:4:\"mime\";s:39:\"application/vnd.oasis.opendocument.text\";s:8:\"singular\";s:39:\"application/vnd.oasis.opendocument.text\";s:6:\"plural\";s:39:\"application/vnd.oasis.opendocument.text\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odp\";a:5:{s:4:\"mime\";s:47:\"application/vnd.oasis.opendocument.presentation\";s:8:\"singular\";s:47:\"application/vnd.oasis.opendocument.presentation\";s:6:\"plural\";s:47:\"application/vnd.oasis.opendocument.presentation\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"ods\";a:5:{s:4:\"mime\";s:46:\"application/vnd.oasis.opendocument.spreadsheet\";s:8:\"singular\";s:46:\"application/vnd.oasis.opendocument.spreadsheet\";s:6:\"plural\";s:46:\"application/vnd.oasis.opendocument.spreadsheet\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odg\";a:5:{s:4:\"mime\";s:43:\"application/vnd.oasis.opendocument.graphics\";s:8:\"singular\";s:43:\"application/vnd.oasis.opendocument.graphics\";s:6:\"plural\";s:43:\"application/vnd.oasis.opendocument.graphics\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odc\";a:5:{s:4:\"mime\";s:40:\"application/vnd.oasis.opendocument.chart\";s:8:\"singular\";s:40:\"application/vnd.oasis.opendocument.chart\";s:6:\"plural\";s:40:\"application/vnd.oasis.opendocument.chart\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odb\";a:5:{s:4:\"mime\";s:43:\"application/vnd.oasis.opendocument.database\";s:8:\"singular\";s:43:\"application/vnd.oasis.opendocument.database\";s:6:\"plural\";s:43:\"application/vnd.oasis.opendocument.database\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"odf\";a:5:{s:4:\"mime\";s:42:\"application/vnd.oasis.opendocument.formula\";s:8:\"singular\";s:42:\"application/vnd.oasis.opendocument.formula\";s:6:\"plural\";s:42:\"application/vnd.oasis.opendocument.formula\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:6:\"wp|wpd\";a:5:{s:4:\"mime\";s:23:\"application/wordperfect\";s:8:\"singular\";s:23:\"application/wordperfect\";s:6:\"plural\";s:23:\"application/wordperfect\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:3:\"key\";a:5:{s:4:\"mime\";s:29:\"application/vnd.apple.keynote\";s:8:\"singular\";s:29:\"application/vnd.apple.keynote\";s:6:\"plural\";s:29:\"application/vnd.apple.keynote\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:7:\"numbers\";a:5:{s:4:\"mime\";s:29:\"application/vnd.apple.numbers\";s:8:\"singular\";s:29:\"application/vnd.apple.numbers\";s:6:\"plural\";s:29:\"application/vnd.apple.numbers\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}s:5:\"pages\";a:5:{s:4:\"mime\";s:27:\"application/vnd.apple.pages\";s:8:\"singular\";s:27:\"application/vnd.apple.pages\";s:6:\"plural\";s:27:\"application/vnd.apple.pages\";s:6:\"filter\";i:0;s:6:\"upload\";i:1;}}','no'),(2871,'wpuxss_eml_version','2.7.2','yes'),(3226,'4561904b2d0feb57ab7670e5c4583e93','a:2:{s:7:\"timeout\";i:1538170140;s:5:\"value\";s:7308:\"{\"new_version\":\"2.02.01\",\"stable_version\":\"2.02.01\",\"name\":\"User Registration\",\"slug\":\"formidable-registration\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/?changelog=1\",\"last_updated\":\"2018-09-26 16:11:50\",\"homepage\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzODIyNzczOToxZWJiMDQzOWE2OTYzOWQxMWI2MDgyOTA4NTlmOTNlZDoxNzM5ODQ6MzQ0ODFlODRiNDMyMTgxY2RjYzJhMWNjYjYzNmQ1NWM6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzODIyNzczOToxZWJiMDQzOWE2OTYzOWQxMWI2MDgyOTA4NTlmOTNlZDoxNzM5ODQ6MzQ0ODFlODRiNDMyMTgxY2RjYzJhMWNjYjYzNmQ1NWM6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"sections\":{\"description\":\"<p>Give new users access to your site as quickly and painlessly as possible. Allow users to register, edit and be able to login to their profiles on your site from the front end in a clean, customized registration form.<\\/p>\\n\",\"changelog\":\"<p><h4>v2.02.01 - September 26, 2018<\\/h4>\\r\\n<ul>\\n<li>Allow user profile updating to be triggered after a successful PayPal payment<\\/li>\\n<li>Fix: Show a blank form to logged in users who have permission to create other users, even if they have an entry in the form<\\/li>\\n<li>New: Added frmreg_allow_edit hook for other plugins to set when profile editing is allowed<\\/li>\\n<\\/ul>\\n<h4>v2.02 - September 14, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Get the page source to check if the page includes the form specified in the global settings (login form, reset password, or registration). This allows for these forms to be included in a sidebar or footer without returning error messages when the global settings are saved.<\\/li>\\n<li>New: Add hooks to change selected pages: frmreg_login_page_id, frmreg_resetpass_page_id, frmreg_register_page_id<\\/li>\\n<li>New: Allow a subsite to be created by a logged in user<\\/li>\\n<li>Fix: Allow user creation via API call<\\/li>\\n<li>Fix: Allow either set password by email or user moderation, but not both<\\/li>\\n<li>Fix: Issue with losing parameters when redirecting for login<\\/li>\\n<li>Fix: The user ID field was defaulting to the current user on registration forms when it should be empty<\\/li>\\n<li>Fix: If an error message is included in the url for password reset, show it instead of an unknown error<\\/li>\\n<li>Fix: Update for WP 3.9 compatibility<\\/li>\\n<li>Fix: Update for deprecated functions: save_settings, FrmForm::get_id_by_key, FrmProFieldsHelper::get_displayed_file_html<\\/li>\\n<li>New: Add Chinese translations<\\/li>\\n<\\/ul>\\n<h4>v2.01.01 - October 26, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add frmreg_after_create_subsite action.<\\/li>\\n<li>New: Add Norwegian translation.<\\/li>\\n<li>New: Add frmreg_login_error filter.<\\/li>\\n<li>Fix: Make sure show lost password and layout settings apply to widget.<\\/li>\\n<li>Fix: Convert special characters to standard characters in subdomain.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - October 4, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add global registration page setting.<\\/li>\\n<li>Enhancement: Allow radio and select fields for display name.<\\/li>\\n<li>Enhancement: Change field label in lost password form.<\\/li>\\n<li>Enhancement: Show hidden field type in Subdirectory or Subdomain settings.<\\/li>\\n<li>Enhancement: Always allow administrators to edit profiles through registration form.<\\/li>\\n<li>Enhancement: Redirect to login page if activation link is clicked again after activation.<\\/li>\\n<li>Fix: Show error messages in reset password form.<\\/li>\\n<li>Fix: Set logout label parameter correctly in shortcode builder.<\\/li>\\n<li>Fix: Passwords with special characters not saving as expected.<\\/li>\\n<\\/ul>\\n<h4>v2.0.01 - July 31, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Sliding login form in IE and Edge<\\/li>\\n<li>Fix: Set the login form and reset password form action the same way WordPress does<\\/li>\\n<li>Fix: Include lostpassword_form action in lost password form<\\/li>\\n<li>Fix: Allow HTML in login error messages<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"description\":[\"<p>Give new users access to your site as quickly and painlessly as possible. Allow users to register, edit and be able to login to their profiles on your site from the front end in a clean, customized registration form.<\\/p>\\n\"],\"changelog\":[\"<p><h4>v2.02.01 - September 26, 2018<\\/h4>\\r\\n<ul>\\n<li>Allow user profile updating to be triggered after a successful PayPal payment<\\/li>\\n<li>Fix: Show a blank form to logged in users who have permission to create other users, even if they have an entry in the form<\\/li>\\n<li>New: Added frmreg_allow_edit hook for other plugins to set when profile editing is allowed<\\/li>\\n<\\/ul>\\n<h4>v2.02 - September 14, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Get the page source to check if the page includes the form specified in the global settings (login form, reset password, or registration). This allows for these forms to be included in a sidebar or footer without returning error messages when the global settings are saved.<\\/li>\\n<li>New: Add hooks to change selected pages: frmreg_login_page_id, frmreg_resetpass_page_id, frmreg_register_page_id<\\/li>\\n<li>New: Allow a subsite to be created by a logged in user<\\/li>\\n<li>Fix: Allow user creation via API call<\\/li>\\n<li>Fix: Allow either set password by email or user moderation, but not both<\\/li>\\n<li>Fix: Issue with losing parameters when redirecting for login<\\/li>\\n<li>Fix: The user ID field was defaulting to the current user on registration forms when it should be empty<\\/li>\\n<li>Fix: If an error message is included in the url for password reset, show it instead of an unknown error<\\/li>\\n<li>Fix: Update for WP 3.9 compatibility<\\/li>\\n<li>Fix: Update for deprecated functions: save_settings, FrmForm::get_id_by_key, FrmProFieldsHelper::get_displayed_file_html<\\/li>\\n<li>New: Add Chinese translations<\\/li>\\n<\\/ul>\\n<h4>v2.01.01 - October 26, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add frmreg_after_create_subsite action.<\\/li>\\n<li>New: Add Norwegian translation.<\\/li>\\n<li>New: Add frmreg_login_error filter.<\\/li>\\n<li>Fix: Make sure show lost password and layout settings apply to widget.<\\/li>\\n<li>Fix: Convert special characters to standard characters in subdomain.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - October 4, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add global registration page setting.<\\/li>\\n<li>Enhancement: Allow radio and select fields for display name.<\\/li>\\n<li>Enhancement: Change field label in lost password form.<\\/li>\\n<li>Enhancement: Show hidden field type in Subdirectory or Subdomain settings.<\\/li>\\n<li>Enhancement: Always allow administrators to edit profiles through registration form.<\\/li>\\n<li>Enhancement: Redirect to login page if activation link is clicked again after activation.<\\/li>\\n<li>Fix: Show error messages in reset password form.<\\/li>\\n<li>Fix: Set logout label parameter correctly in shortcode builder.<\\/li>\\n<li>Fix: Passwords with special characters not saving as expected.<\\/li>\\n<\\/ul>\\n<h4>v2.0.01 - July 31, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Sliding login form in IE and Edge<\\/li>\\n<li>Fix: Set the login form and reset password form action the same way WordPress does<\\/li>\\n<li>Fix: Include lostpassword_form action in lost password form<\\/li>\\n<li>Fix: Allow HTML in login error messages<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"]}\";}','no'),(3271,'widget_monarchwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3273,'et_monarch_options','a:170:{s:34:\"sharing_locations_manage_locations\";a:0:{}s:33:\"sharing_networks_networks_sorting\";a:2:{s:5:\"label\";a:1:{i:0;s:8:\"Facebook\";}s:5:\"class\";a:1:{i:0;s:8:\"facebook\";}}s:26:\"sharing_sidebar_icon_style\";s:4:\"grow\";s:26:\"sharing_sidebar_icon_shape\";s:9:\"rectangle\";s:35:\"sharing_sidebar_sidebar_orientation\";s:4:\"left\";s:25:\"sharing_sidebar_animation\";s:6:\"fadein\";s:22:\"sharing_sidebar_counts\";b:0;s:26:\"sharing_sidebar_counts_num\";i:0;s:21:\"sharing_sidebar_total\";b:0;s:27:\"sharing_sidebar_total_color\";s:4:\"dark\";s:27:\"sharing_sidebar_display_all\";b:0;s:23:\"sharing_sidebar_spacing\";b:0;s:22:\"sharing_sidebar_mobile\";b:0;s:29:\"sharing_sidebar_custom_colors\";b:0;s:24:\"sharing_sidebar_bg_color\";s:0:\"\";s:30:\"sharing_sidebar_bg_color_hover\";s:0:\"\";s:26:\"sharing_sidebar_icon_color\";s:0:\"\";s:32:\"sharing_sidebar_icon_color_hover\";s:0:\"\";s:26:\"sharing_sidebar_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:25:\"sharing_inline_icon_style\";s:5:\"slide\";s:25:\"sharing_inline_icon_shape\";s:7:\"rounded\";s:29:\"sharing_inline_icons_location\";s:5:\"above\";s:30:\"sharing_inline_icons_alignment\";s:4:\"left\";s:25:\"sharing_inline_col_number\";s:1:\"4\";s:21:\"sharing_inline_counts\";s:1:\"1\";s:25:\"sharing_inline_counts_num\";i:0;s:20:\"sharing_inline_total\";b:0;s:28:\"sharing_inline_network_names\";s:1:\"1\";s:26:\"sharing_inline_display_all\";b:0;s:26:\"sharing_inline_outer_color\";s:4:\"dark\";s:22:\"sharing_inline_spacing\";b:0;s:21:\"sharing_inline_mobile\";b:0;s:28:\"sharing_inline_custom_colors\";b:0;s:23:\"sharing_inline_bg_color\";s:0:\"\";s:29:\"sharing_inline_bg_color_hover\";s:0:\"\";s:25:\"sharing_inline_icon_color\";s:0:\"\";s:31:\"sharing_inline_icon_color_hover\";s:0:\"\";s:25:\"sharing_inline_post_types\";a:1:{i:0;s:4:\"post\";}s:24:\"sharing_popup_icon_style\";s:5:\"slide\";s:24:\"sharing_popup_icon_shape\";s:7:\"rounded\";s:24:\"sharing_popup_title_text\";s:10:\"Share This\";s:26:\"sharing_popup_message_text\";s:34:\"Share this post with your friends!\";s:29:\"sharing_popup_icons_alignment\";s:4:\"left\";s:24:\"sharing_popup_col_number\";s:1:\"3\";s:23:\"sharing_popup_animation\";s:6:\"fadein\";s:24:\"sharing_popup_auto_popup\";s:1:\"1\";s:25:\"sharing_popup_popup_delay\";i:20;s:26:\"sharing_popup_trigger_idle\";b:0;s:26:\"sharing_popup_idle_timeout\";i:15;s:28:\"sharing_popup_trigger_bottom\";b:0;s:29:\"sharing_popup_trigger_comment\";b:0;s:28:\"sharing_popup_scroll_trigger\";b:0;s:24:\"sharing_popup_scroll_pos\";i:50;s:30:\"sharing_popup_trigger_purchase\";b:0;s:21:\"sharing_popup_cookies\";b:0;s:29:\"sharing_popup_cookie_duration\";i:1;s:20:\"sharing_popup_counts\";s:1:\"1\";s:24:\"sharing_popup_counts_num\";i:0;s:19:\"sharing_popup_total\";b:0;s:27:\"sharing_popup_network_names\";s:1:\"1\";s:25:\"sharing_popup_display_all\";b:0;s:21:\"sharing_popup_spacing\";b:0;s:20:\"sharing_popup_mobile\";b:0;s:27:\"sharing_popup_custom_colors\";b:0;s:22:\"sharing_popup_bg_color\";s:0:\"\";s:28:\"sharing_popup_bg_color_hover\";s:0:\"\";s:24:\"sharing_popup_icon_color\";s:0:\"\";s:30:\"sharing_popup_icon_color_hover\";s:0:\"\";s:24:\"sharing_popup_post_types\";a:1:{i:0;s:4:\"post\";}s:24:\"sharing_flyin_icon_style\";s:5:\"slide\";s:24:\"sharing_flyin_icon_shape\";s:7:\"rounded\";s:24:\"sharing_flyin_title_text\";s:10:\"Share This\";s:26:\"sharing_flyin_message_text\";s:34:\"Share this post with your friends!\";s:28:\"sharing_flyin_icons_location\";s:12:\"bottom_right\";s:29:\"sharing_flyin_icons_alignment\";s:4:\"left\";s:24:\"sharing_flyin_col_number\";s:1:\"2\";s:23:\"sharing_flyin_animation\";s:7:\"slideup\";s:24:\"sharing_flyin_auto_popup\";b:0;s:25:\"sharing_flyin_popup_delay\";i:20;s:26:\"sharing_flyin_trigger_idle\";b:0;s:26:\"sharing_flyin_idle_timeout\";i:15;s:28:\"sharing_flyin_trigger_bottom\";s:1:\"1\";s:29:\"sharing_flyin_trigger_comment\";b:0;s:28:\"sharing_flyin_scroll_trigger\";b:0;s:24:\"sharing_flyin_scroll_pos\";i:50;s:30:\"sharing_flyin_trigger_purchase\";b:0;s:21:\"sharing_flyin_cookies\";b:0;s:29:\"sharing_flyin_cookie_duration\";i:1;s:20:\"sharing_flyin_counts\";b:0;s:24:\"sharing_flyin_counts_num\";i:0;s:19:\"sharing_flyin_total\";b:0;s:27:\"sharing_flyin_network_names\";s:1:\"1\";s:25:\"sharing_flyin_display_all\";b:0;s:21:\"sharing_flyin_spacing\";b:0;s:20:\"sharing_flyin_mobile\";b:0;s:27:\"sharing_flyin_custom_colors\";b:0;s:22:\"sharing_flyin_bg_color\";s:0:\"\";s:28:\"sharing_flyin_bg_color_hover\";s:0:\"\";s:24:\"sharing_flyin_icon_color\";s:0:\"\";s:30:\"sharing_flyin_icon_color_hover\";s:0:\"\";s:24:\"sharing_flyin_post_types\";a:1:{i:0;s:4:\"post\";}s:24:\"sharing_media_icon_style\";s:6:\"simple\";s:24:\"sharing_media_icon_shape\";s:7:\"rounded\";s:29:\"sharing_media_icons_alignment\";s:4:\"left\";s:24:\"sharing_media_col_number\";s:4:\"auto\";s:20:\"sharing_media_counts\";b:0;s:24:\"sharing_media_counts_num\";i:0;s:19:\"sharing_media_total\";b:0;s:27:\"sharing_media_network_names\";s:1:\"1\";s:25:\"sharing_media_display_all\";b:0;s:25:\"sharing_media_outer_color\";s:4:\"dark\";s:21:\"sharing_media_spacing\";b:0;s:20:\"sharing_media_mobile\";b:0;s:27:\"sharing_media_custom_colors\";b:0;s:22:\"sharing_media_bg_color\";s:0:\"\";s:28:\"sharing_media_bg_color_hover\";s:0:\"\";s:24:\"sharing_media_icon_color\";s:0:\"\";s:30:\"sharing_media_icon_color_hover\";s:0:\"\";s:24:\"sharing_media_post_types\";a:1:{i:0;s:4:\"post\";}s:26:\"follow_networks_new_window\";s:1:\"1\";s:23:\"follow_networks_use_api\";b:0;s:24:\"follow_networks_vimeo_id\";s:0:\"\";s:28:\"follow_networks_vimeo_secret\";s:0:\"\";s:28:\"follow_networks_instagram_id\";s:0:\"\";s:32:\"follow_networks_instagram_secret\";s:0:\"\";s:27:\"follow_networks_linkedin_id\";s:0:\"\";s:31:\"follow_networks_linkedin_secret\";s:0:\"\";s:31:\"follow_networks_twitter_api_key\";s:0:\"\";s:34:\"follow_networks_twitter_api_secret\";s:0:\"\";s:29:\"follow_networks_twitter_token\";s:0:\"\";s:36:\"follow_networks_twitter_token_secret\";s:0:\"\";s:31:\"follow_networks_youtube_api_key\";s:0:\"\";s:24:\"follow_widget_icon_style\";s:4:\"flip\";s:24:\"follow_widget_icon_shape\";s:7:\"rounded\";s:28:\"follow_widget_icons_location\";s:3:\"top\";s:24:\"follow_widget_col_number\";s:1:\"2\";s:20:\"follow_widget_counts\";b:0;s:24:\"follow_widget_counts_num\";i:0;s:19:\"follow_widget_total\";b:0;s:27:\"follow_widget_network_names\";s:1:\"1\";s:25:\"follow_widget_outer_color\";s:4:\"dark\";s:21:\"follow_widget_spacing\";b:0;s:20:\"follow_widget_mobile\";b:0;s:27:\"follow_widget_custom_colors\";b:0;s:22:\"follow_widget_bg_color\";s:0:\"\";s:28:\"follow_widget_bg_color_hover\";s:0:\"\";s:24:\"follow_widget_icon_color\";s:0:\"\";s:30:\"follow_widget_icon_color_hover\";s:0:\"\";s:27:\"follow_shortcode_icon_style\";s:6:\"darken\";s:27:\"follow_shortcode_icon_shape\";s:7:\"rounded\";s:31:\"follow_shortcode_icons_location\";s:3:\"top\";s:27:\"follow_shortcode_col_number\";s:4:\"auto\";s:23:\"follow_shortcode_counts\";b:0;s:27:\"follow_shortcode_counts_num\";i:0;s:22:\"follow_shortcode_total\";b:0;s:30:\"follow_shortcode_network_names\";s:1:\"1\";s:28:\"follow_shortcode_outer_color\";s:4:\"dark\";s:24:\"follow_shortcode_spacing\";b:0;s:23:\"follow_shortcode_mobile\";b:0;s:30:\"follow_shortcode_custom_colors\";s:1:\"1\";s:25:\"follow_shortcode_bg_color\";s:7:\"#a6bf96\";s:31:\"follow_shortcode_bg_color_hover\";s:7:\"#ffffff\";s:27:\"follow_shortcode_icon_color\";s:7:\"#ffffff\";s:33:\"follow_shortcode_icon_color_hover\";s:7:\"#a6bf96\";s:24:\"general_main_update_freq\";i:3;s:27:\"general_main_reset_postdata\";b:0;s:24:\"general_main_facebook_id\";s:0:\"\";s:28:\"general_main_facebook_secret\";s:0:\"\";s:23:\"general_main_custom_css\";s:0:\"\";s:32:\"follow_networks_networks_sorting\";a:5:{s:5:\"label\";a:1:{i:0;s:8:\"Facebook\";}s:8:\"username\";a:1:{i:0;s:49:\"https://www.facebook.com/Stadsig-865301740343013/\";}s:9:\"client_id\";a:1:{i:0;s:0:\"\";}s:5:\"count\";a:1:{i:0;s:0:\"\";}s:5:\"class\";a:1:{i:0;s:8:\"facebook\";}}}','yes'),(3673,'75a9781aa3bd1379f2374d52fa468ae4','a:2:{s:7:\"timeout\";i:1562072741;s:5:\"value\";s:7107:\"{\"new_version\":\"2.02.01\",\"stable_version\":\"2.02.01\",\"name\":\"User Registration\",\"slug\":\"formidable-registration\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/?changelog=1\",\"last_updated\":\"2019-05-07 15:54:05\",\"homepage\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTU2MjEzMDM0MToxZWJiMDQzOWE2OTYzOWQxMWI2MDgyOTA4NTlmOTNlZDoxNzM5ODQ6YmU2YTBmYWQ2Y2NkNGVmZDFmNGJmNzI2OWZkZTY5MGY6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTU2MjEzMDM0MToxZWJiMDQzOWE2OTYzOWQxMWI2MDgyOTA4NTlmOTNlZDoxNzM5ODQ6YmU2YTBmYWQ2Y2NkNGVmZDFmNGJmNzI2OWZkZTY5MGY6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"sections\":{\"description\":\"<p>Give new users access to your site quickly and painlessly. Plus edit profiles and login from the front end.<\\/p>\\n\",\"changelog\":\"<p><h4>v2.02.01 - September 26, 2018<\\/h4>\\r\\n<ul>\\n<li>Allow user profile updating to be triggered after a successful PayPal payment<\\/li>\\n<li>Fix: Show a blank form to logged in users who have permission to create other users, even if they have an entry in the form<\\/li>\\n<li>New: Added frmreg_allow_edit hook for other plugins to set when profile editing is allowed<\\/li>\\n<\\/ul>\\n<h4>v2.02 - September 14, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Get the page source to check if the page includes the form specified in the global settings (login form, reset password, or registration). This allows for these forms to be included in a sidebar or footer without returning error messages when the global settings are saved.<\\/li>\\n<li>New: Add hooks to change selected pages: frmreg_login_page_id, frmreg_resetpass_page_id, frmreg_register_page_id<\\/li>\\n<li>New: Allow a subsite to be created by a logged in user<\\/li>\\n<li>Fix: Allow user creation via API call<\\/li>\\n<li>Fix: Allow either set password by email or user moderation, but not both<\\/li>\\n<li>Fix: Issue with losing parameters when redirecting for login<\\/li>\\n<li>Fix: The user ID field was defaulting to the current user on registration forms when it should be empty<\\/li>\\n<li>Fix: If an error message is included in the url for password reset, show it instead of an unknown error<\\/li>\\n<li>Fix: Update for WP 3.9 compatibility<\\/li>\\n<li>Fix: Update for deprecated functions: save_settings, FrmForm::get_id_by_key, FrmProFieldsHelper::get_displayed_file_html<\\/li>\\n<li>New: Add Chinese translations<\\/li>\\n<\\/ul>\\n<h4>v2.01.01 - October 26, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add frmreg_after_create_subsite action.<\\/li>\\n<li>New: Add Norwegian translation.<\\/li>\\n<li>New: Add frmreg_login_error filter.<\\/li>\\n<li>Fix: Make sure show lost password and layout settings apply to widget.<\\/li>\\n<li>Fix: Convert special characters to standard characters in subdomain.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - October 4, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add global registration page setting.<\\/li>\\n<li>Enhancement: Allow radio and select fields for display name.<\\/li>\\n<li>Enhancement: Change field label in lost password form.<\\/li>\\n<li>Enhancement: Show hidden field type in Subdirectory or Subdomain settings.<\\/li>\\n<li>Enhancement: Always allow administrators to edit profiles through registration form.<\\/li>\\n<li>Enhancement: Redirect to login page if activation link is clicked again after activation.<\\/li>\\n<li>Fix: Show error messages in reset password form.<\\/li>\\n<li>Fix: Set logout label parameter correctly in shortcode builder.<\\/li>\\n<li>Fix: Passwords with special characters not saving as expected.<\\/li>\\n<\\/ul>\\n<h4>v2.0.01 - July 31, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Sliding login form in IE and Edge<\\/li>\\n<li>Fix: Set the login form and reset password form action the same way WordPress does<\\/li>\\n<li>Fix: Include lostpassword_form action in lost password form<\\/li>\\n<li>Fix: Allow HTML in login error messages<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:0:{}\",\"description\":[\"<p>Give new users access to your site quickly and painlessly. Plus edit profiles and login from the front end.<\\/p>\\n\"],\"changelog\":[\"<p><h4>v2.02.01 - September 26, 2018<\\/h4>\\r\\n<ul>\\n<li>Allow user profile updating to be triggered after a successful PayPal payment<\\/li>\\n<li>Fix: Show a blank form to logged in users who have permission to create other users, even if they have an entry in the form<\\/li>\\n<li>New: Added frmreg_allow_edit hook for other plugins to set when profile editing is allowed<\\/li>\\n<\\/ul>\\n<h4>v2.02 - September 14, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Get the page source to check if the page includes the form specified in the global settings (login form, reset password, or registration). This allows for these forms to be included in a sidebar or footer without returning error messages when the global settings are saved.<\\/li>\\n<li>New: Add hooks to change selected pages: frmreg_login_page_id, frmreg_resetpass_page_id, frmreg_register_page_id<\\/li>\\n<li>New: Allow a subsite to be created by a logged in user<\\/li>\\n<li>Fix: Allow user creation via API call<\\/li>\\n<li>Fix: Allow either set password by email or user moderation, but not both<\\/li>\\n<li>Fix: Issue with losing parameters when redirecting for login<\\/li>\\n<li>Fix: The user ID field was defaulting to the current user on registration forms when it should be empty<\\/li>\\n<li>Fix: If an error message is included in the url for password reset, show it instead of an unknown error<\\/li>\\n<li>Fix: Update for WP 3.9 compatibility<\\/li>\\n<li>Fix: Update for deprecated functions: save_settings, FrmForm::get_id_by_key, FrmProFieldsHelper::get_displayed_file_html<\\/li>\\n<li>New: Add Chinese translations<\\/li>\\n<\\/ul>\\n<h4>v2.01.01 - October 26, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add frmreg_after_create_subsite action.<\\/li>\\n<li>New: Add Norwegian translation.<\\/li>\\n<li>New: Add frmreg_login_error filter.<\\/li>\\n<li>Fix: Make sure show lost password and layout settings apply to widget.<\\/li>\\n<li>Fix: Convert special characters to standard characters in subdomain.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - October 4, 2017<\\/h4>\\r\\n<ul>\\n<li>New: Add global registration page setting.<\\/li>\\n<li>Enhancement: Allow radio and select fields for display name.<\\/li>\\n<li>Enhancement: Change field label in lost password form.<\\/li>\\n<li>Enhancement: Show hidden field type in Subdirectory or Subdomain settings.<\\/li>\\n<li>Enhancement: Always allow administrators to edit profiles through registration form.<\\/li>\\n<li>Enhancement: Redirect to login page if activation link is clicked again after activation.<\\/li>\\n<li>Fix: Show error messages in reset password form.<\\/li>\\n<li>Fix: Set logout label parameter correctly in shortcode builder.<\\/li>\\n<li>Fix: Passwords with special characters not saving as expected.<\\/li>\\n<\\/ul>\\n<h4>v2.0.01 - July 31, 2017<\\/h4>\\r\\n<ul>\\n<li>Fix: Sliding login form in IE and Edge<\\/li>\\n<li>Fix: Set the login form and reset password form action the same way WordPress does<\\/li>\\n<li>Fix: Include lostpassword_form action in lost password form<\\/li>\\n<li>Fix: Allow HTML in login error messages<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"]}\";}','no'),(3890,'media_category_children','a:0:{}','yes'),(4609,'d1e64c4bc3501bf22b52cf003c137a44','a:2:{s:7:\"timeout\";i:1539739265;s:5:\"value\";s:37094:\"{\"new_version\":\"3.04.01\",\"stable_version\":\"3.04.01\",\"name\":\"Formidable Pro\",\"slug\":\"formidable-pro\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro\\/?changelog=1\",\"last_updated\":\"2018-10-15 15:42:31\",\"homepage\":\"https:\\/\\/formidableforms.com\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzOTc5Njg2NTpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDowNmJhMjViODRhYmUzYjJkNGYwY2NiMzNkNzcxMjJiNTpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTUzOTc5Njg2NTpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDowNmJhMjViODRhYmUzYjJkNGYwY2NiMzNkNzcxMjJiNTpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"sections\":{\"description\":\"<p>= The best WordPress form builder plugin for custom forms =\\nFormidable Forms is a flexible and free WordPress forms plugin. Easily create contact forms, polls and surveys, lead generation forms, email forms, and any other forms you imagine. Start with a pre-built contact form template or create totally custom forms. From the smallest sidebar opt-in form to large job and employment application forms, Formidable Forms is built to do it all. Learn more about Formidable Forms at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"FormidableForms.com\\\">FormidableForms.com<\\/a><\\/p>\\n<p>Create a professional WordPress contact form without any code. Get mobile-friendly and responsive forms that look great on any screen size. Additionally, it\'s simple to change the form layout with included layout classes. For more advanced customizations, take control of the form HTML and CSS.<\\/p>\\n<p><a href=\\\"https:\\/\\/formidableforms.com\\/knowledgebase\\/\\\" title=\\\"View form builder Documentation\\\">View form builder Documentation<\\/a><\\/p>\\n<p>= All the features you need for beautiful WordPress forms =\\nCreate unlimited forms with all the essential field types.<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<li>reCaptcha (Invisible or one-click checkbox)<\\/li>\\n<\\/ul>\\n<p>= Form templates =\\nCreate forms in seconds with <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/\\\">pre-built form templates<\\/a>. Or add your own form templates and export the forms to share. A free contact form template is included when you install Formidable Forms. We also have a growing library of <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/\\\">downloadable form templates<\\/a>.<\\/p>\\n<p>= Customize your WordPress forms =\\nWhether you start from scratch or from a form template, customize your forms however you would like.<\\/p>\\n<ul>\\n<li>Send <strong>unlimited form email notifications and autoresponders<\\/strong>.<\\/li>\\n<li>Use <strong>input placeholder text<\\/strong> in form fields that clear when typing starts.<\\/li>\\n<li>Use our ready-made CSS classes (or your own custom CSS classes) to arrange your form fields and create <strong>multi-column forms<\\/strong><\\/li>\\n<li><strong>Modify the form HTML<\\/strong> for your individual needs.<\\/li>\\n<li>Customize the form success message and submit button text.<\\/li>\\n<li>Redirect to another page after submit or show content from a protected page.<\\/li>\\n<\\/ul>\\n<p>= Style your WordPress contact forms with no code =\\nUse the built-in <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">visual form style generator<\\/a> to instantly customize the look and feel of your WordPress forms. With just a few clicks, your forms can be transformed to match your personal style. A single form styling template will be applied to all the forms on your site. But if you decide you need different styles for different forms, Formidable Forms Pro is waiting.<\\/p>\\n<p>= Publish WordPress forms with ease =\\nOnce your WP form is built and designed just the way you like it, publish with an easy-to-use <strong>shortcode builder<\\/strong> UI. Direct links are also available on a blank page for <strong>form previews<\\/strong> and <strong>email surveys<\\/strong>.<\\/p>\\n<p><strong>Honeypot spam protection<\\/strong> is included in every website form. Or add Invisible reCAPTCHA, one-click reCAPTCHA, and Akismet for extra Spam control in your contact forms.<\\/p>\\n<p>= Save every form submission =\\nYou may already know it, but sending emails with your self-hosted WordPress website isn\'t 100% reliable. But every lead captured in your online contact forms is important. Don\'t lose a single one! This is why Formidable saves every contact form submission in your WordPress database and lists them on your Formidable -&gt; Entries page. Now even if a form email notification fails, you won\\u2019t lose a lead.<\\/p>\\n<p>Looking for <strong>GDPR compliance for forms<\\/strong>? No problem. Turn off IP tracking or stop saving form submissions. Or add a checkbox field to your form to collect consent.<\\/p>\\n<p>Need to import your leads to another service like MailChimp? No problem. <strong>Export form leads to a CSV<\\/strong> then open it in Excel or import anywhere.<\\/p>\\n<p>Plus, don\'t lose leads by accidentally deleting a form. <strong>Send forms to the trash<\\/strong> and recover them if needed.<\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8<\\/a><\\/p>\\n<p>= Pro Form Builder Plugin Features =\\nFormidable Forms Pro is an upgrade that adds even more power to your free forms. Multi-page forms, conditional logic, payment form integrations, data management, front-end post submissions for user-generated content, front-end editing, and boat loads more. <\\/p>\\n<p>Other WordPress form builder plugins only let you collect data. But our Pro forms also add options to display form submissions on the front-end of your site. Input, display, edit and filter data on the front-end without any additional plugins. Formidable Forms is a powerful solution for purchase forms, order forms, member directories, user registration forms, event calendars, and more.<\\/p>\\n<ul>\\n<li><strong>Even more field types<\\/strong>: Page breaks, section headings, repeating field groups (repeaters), multiple file uploads, rich text, datepicker, time, scale, star ratings, slider, toggle, dynamic fields populated from other forms, password, tags, address, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Multi-Step forms with progress bar<\\/a>: Create beautiful paged forms with rootline and progress indicators. Use conditional logic on page breaks for branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Conditional logic for smart forms<\\/a>: Show or hide fields in your form based on user selections or the role of the user.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in your form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/\\\">Calculated Fields<\\/a>: create basic and complex calculations, and even combine text from multiple fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">Visual form styler with multiple templates<\\/a>: Create multiple form styling templates and assign them to any of your forms. Need Bootstrap form styling? We\\u2019ve got you covered.<\\/li>\\n<li>Entry management: Flexibly and powerfully display, edit, and delete entries from anywhere on your site, and specify who has permission to do so.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/\\\" title=\\\"Display form data with Views\\\">Display form data with Views<\\/a>: Format, filter and display the data submitted in your WordPress forms in custom Views.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/\\\">Graphs and charts for data visualization<\\/a>: Display statistics from form entries, and graph your data in a variety of eye catching styles with graphs that automatically update as new data is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/\\\">User submitted front-end posts and pages<\\/a>: Create and edit WordPress posts, pages, and even custom post types from front-end online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/\\\">Front-end editing<\\/a>: allow users to edit their form entries and posts from the front-end of your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/\\\">Saved and continue partial submissions<\\/a>: logged-in users can save form progress and return later.<\\/li>\\n<li>Form permission settings: limit form visibility based on user role.<\\/li>\\n<li>Conditionally redirect after form submission.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/\\\">Fill out forms automatically<\\/a> with user meta or values from your posts including custom fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/\\\">Import and Export form submissions<\\/a> with CSV.<\\/li>\\n<li>Limit the number of form entries per user, IP, or cookie.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/demos\\/\\\">pre-built form\\/view demo templates<\\/a> as a starting point or a final product.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/\\\" title=\\\"White labeling\\\">White labeling<\\/a>: Replace the Formidable branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/\\\">World Class Support<\\/a>: have questions or need guidance on how to set up your application? We are happy to help. Our purpose with Formidable Forms is to help you <strong>take on bigger projects, earn more clients, and grow your business<\\/strong>.<\\/li>\\n<\\/ul>\\n<p>= Form add-on library =<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\\\" title=\\\"User registration forms\\\">User registration Forms<\\/a>. Register users and create subdomains when using WordPress multisite.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/\\\" title=\\\"Form action automation\\\">Form action automation<\\/a>. Schedule email notifications, SMS messages, and API actions.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/\\\" title=\\\"Digital Signature Forms\\\">Digital Signature Forms<\\/a>. Add a signature field to your form. The user may write their signature with a trackpad\\/mouse or just type it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\\\" title=\\\"Formidable Forms API\\\">Formidable Forms API<\\/a>. Send entry results to any other site that has a Rest API. This includes the option of sending entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/\\\" title=\\\"PayPal Forms\\\">PayPal Forms<\\/a>. Automate your business by collecting instant payments from your clients. Collect information, calculate a total, and send clients on to PayPal.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/\\\" title=\\\"Stripe Forms\\\">Stripe Forms<\\/a>. Any Formidable forms on your site can accept credit card payments without users ever leaving your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/\\\" title=\\\"Authorize.net AIM Forms\\\">Authorize.net AIM Forms<\\/a>. Accept one-time payments directly on your site, using Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/\\\" title=\\\"MailChimp Forms\\\">MailChimp Forms<\\/a>. Add leads to a MailChimp mailing list when they submit forms and update their information along with the entry.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/\\\" title=\\\"Aweber Forms\\\">Aweber Forms<\\/a>. Subscribe users to an AWeber mailing list when they submit a form. AWeber is a powerful email marketing service.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/\\\" title=\\\"Highrise Forms\\\">Highrise Forms<\\/a>. Add your leads to your Highrise CRM account any time a Formidable form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/\\\" title=\\\"Twilio for SMS Forms\\\">Twilio for SMS Forms<\\/a>. Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when form entries are submitted or updated.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/\\\" title=\\\"WPML Forms\\\">WPML Forms<\\/a>. Translate your forms into multiple languages using the Formidable-integrated WPML plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/\\\" title=\\\"Polylang Forms\\\">Polylang Forms<\\/a>. Create bilingual or multilingual forms with help from Polylang.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/\\\" title=\\\"Bootstrap Form Styles\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap styling to all your Formidable forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/\\\" title=\\\"Bootstrap Modal Form\\\">Bootstrap Modal Form<\\/a>. Open forms, views, other shortcodes, or sections of content in a Bootstrap modal popup.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/\\\" title=\\\"Salesforce Forms\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your WordPress forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\\\" title=\\\"Zapier Forms\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.<\\/li>\\n<\\/ul>\\n<p>Learn more at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"Formidable Forms\\\">Formidable Forms<\\/a><\\/p>\\n<p><a href=\\\"https:\\/\\/github.com\\/Strategy11\\/formidable-forms\\\" title=\\\"Contribute on Github\\\">Contribute on Github<\\/a><\\/p>\",\"changelog\":\"<p><h4>v3.04.01 - October 15, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix: Allow field settings to open when included inside a section<\\/li>\\n<li>Fix: Clean up long file tiles in the file uploader<\\/li>\\n<li>Update translations<\\/li>\\n<li>Move instructions in the Advanced tab on the form settings sidebar from free to pro<\\/li>\\n<\\/ul>\\n<h4>v3.04 - October 11, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add option to schedule a form to open and close on a specific date or close after a specified number of entries<\\/li>\\n<li>New: Move the drop file message into the field settings<\\/li>\\n<li>New: Restyle the file upload UI<\\/li>\\n<li>Update Dropzone script to v5.5<\\/li>\\n<li>Fix: Reduce cases that trigger admin warning for inaccurate calculations<\\/li>\\n<\\/ul>\\n<h4>v3.03.03 - September 26, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add support for RTL progress bars<\\/li>\\n<li>Fix: Properly compare dates and times through a dynamic field. Allow [if x show=y greater_than=NOW] when y is a date field.<\\/li>\\n<li>Fix: Allow default values to be set in a checkbox\\/multiselect field when the value includes a comma-separated list with spaces<\\/li>\\n<li>Fix: Getting an attachment id from a url was sometimes failing<\\/li>\\n<li>Fix: If a form is limited to one entry per user, including the entry_id=x in the form shortcode was being ignored and returning the current user\'s entry<\\/li>\\n<li>Fix: Improve the backend search for user id fields. When a user ID field is selected for the backend search, check the user login, email, display name, and nice name.<\\/li>\\n<li>Fix: Improve the appearance of long progress bars on small screens and those with titles of varying lengths<\\/li>\\n<li>Fix: Correctly pass the $atts in the pagination filters<\\/li>\\n<li>Fix: When a time or date field is watching a lookup field, give them the values in the correct format for that field<\\/li>\\n<\\/ul>\\n<h4>v3.03.02 - September 12, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow view ordering by entry key since this is faster than ordering by a field value.<\\/li>\\n<li>Tweak: If no value in the field used for a calculation, show nothing instead of 0.<\\/li>\\n<li>Tweak: Add lookup_field to array included in frm_filtered_lookup_options hook<\\/li>\\n<li>Fix: Dates weren\'t validating correctly with end year \'1\' instead of \'+1\'<\\/li>\\n<li>Fix: A combination of default values and conditional logic for Other fields was a causing javascript error. Now if an other field has a default value and conditional logic, the default value it correctly set when the field is displayed.<\\/li>\\n<li>Fix: Javascript errors were appearing with some date code customizations.<\\/li>\\n<li>Fix: Hide the first remove button in a repeater when the form styling is off.<\\/li>\\n<\\/ul>\\n<h4>v3.03.01 - August 6, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Accept mod operator (%) inside of frm-math processes<\\/li>\\n<li>New: Allow type=return_raw to return an unfiltered value<\\/li>\\n<li>Fix: Don\'t allow the first row to be removed in a repeater when icons are used to add and remove rows<\\/li>\\n<li>Fix: Show all values from a field in a repeating section with the frm-field-value shortcode instead of only the first value<\\/li>\\n<li>Fix: If a file is moved out of the WP file system, show it anyway when editing an entry form with a file upload<\\/li>\\n<li>Fix: Product images were being removed when importing into WooCommerce<\\/li>\\n<li>Fix: When javascript validation and ajax submit are off, the password strength indicator was showing all red after form validation<\\/li>\\n<li>Add more escaping for translated strings<\\/li>\\n<\\/ul>\\n<\\/p>\\n\",\"installation\":\"<ol>\\n<li>Go to your Plugins -&gt; Add New page in your WordPress admin<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to create a new form<\\/li>\\n<li>Insert your forms on a page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> in your page template<\\/li>\\n<\\/ol>\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-772x250.png\"},\"icons\":\"a:0:{}\",\"stable_tag\":\"3.04\",\"contributors\":{\"formidableforms\":\"\\/\\/profiles.wordpress.org\\/formidableforms\",\"sswells\":\"\\/\\/profiles.wordpress.org\\/sswells\",\"srwells\":\"\\/\\/profiles.wordpress.org\\/srwells\",\"jamie.wahlin\":\"\\/\\/profiles.wordpress.org\\/jamie.wahlin\"},\"description\":[\"<p>= The best WordPress form builder plugin for custom forms =\\nFormidable Forms is a flexible and free WordPress forms plugin. Easily create contact forms, polls and surveys, lead generation forms, email forms, and any other forms you imagine. Start with a pre-built contact form template or create totally custom forms. From the smallest sidebar opt-in form to large job and employment application forms, Formidable Forms is built to do it all. Learn more about Formidable Forms at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"FormidableForms.com\\\">FormidableForms.com<\\/a><\\/p>\\n<p>Create a professional WordPress contact form without any code. Get mobile-friendly and responsive forms that look great on any screen size. Additionally, it\'s simple to change the form layout with included layout classes. For more advanced customizations, take control of the form HTML and CSS.<\\/p>\\n<p><a href=\\\"https:\\/\\/formidableforms.com\\/knowledgebase\\/\\\" title=\\\"View form builder Documentation\\\">View form builder Documentation<\\/a><\\/p>\\n<p>= All the features you need for beautiful WordPress forms =\\nCreate unlimited forms with all the essential field types.<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<li>reCaptcha (Invisible or one-click checkbox)<\\/li>\\n<\\/ul>\\n<p>= Form templates =\\nCreate forms in seconds with <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/\\\">pre-built form templates<\\/a>. Or add your own form templates and export the forms to share. A free contact form template is included when you install Formidable Forms. We also have a growing library of <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/\\\">downloadable form templates<\\/a>.<\\/p>\\n<p>= Customize your WordPress forms =\\nWhether you start from scratch or from a form template, customize your forms however you would like.<\\/p>\\n<ul>\\n<li>Send <strong>unlimited form email notifications and autoresponders<\\/strong>.<\\/li>\\n<li>Use <strong>input placeholder text<\\/strong> in form fields that clear when typing starts.<\\/li>\\n<li>Use our ready-made CSS classes (or your own custom CSS classes) to arrange your form fields and create <strong>multi-column forms<\\/strong><\\/li>\\n<li><strong>Modify the form HTML<\\/strong> for your individual needs.<\\/li>\\n<li>Customize the form success message and submit button text.<\\/li>\\n<li>Redirect to another page after submit or show content from a protected page.<\\/li>\\n<\\/ul>\\n<p>= Style your WordPress contact forms with no code =\\nUse the built-in <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">visual form style generator<\\/a> to instantly customize the look and feel of your WordPress forms. With just a few clicks, your forms can be transformed to match your personal style. A single form styling template will be applied to all the forms on your site. But if you decide you need different styles for different forms, Formidable Forms Pro is waiting.<\\/p>\\n<p>= Publish WordPress forms with ease =\\nOnce your WP form is built and designed just the way you like it, publish with an easy-to-use <strong>shortcode builder<\\/strong> UI. Direct links are also available on a blank page for <strong>form previews<\\/strong> and <strong>email surveys<\\/strong>.<\\/p>\\n<p><strong>Honeypot spam protection<\\/strong> is included in every website form. Or add Invisible reCAPTCHA, one-click reCAPTCHA, and Akismet for extra Spam control in your contact forms.<\\/p>\\n<p>= Save every form submission =\\nYou may already know it, but sending emails with your self-hosted WordPress website isn\'t 100% reliable. But every lead captured in your online contact forms is important. Don\'t lose a single one! This is why Formidable saves every contact form submission in your WordPress database and lists them on your Formidable -&gt; Entries page. Now even if a form email notification fails, you won\\u2019t lose a lead.<\\/p>\\n<p>Looking for <strong>GDPR compliance for forms<\\/strong>? No problem. Turn off IP tracking or stop saving form submissions. Or add a checkbox field to your form to collect consent.<\\/p>\\n<p>Need to import your leads to another service like MailChimp? No problem. <strong>Export form leads to a CSV<\\/strong> then open it in Excel or import anywhere.<\\/p>\\n<p>Plus, don\'t lose leads by accidentally deleting a form. <strong>Send forms to the trash<\\/strong> and recover them if needed.<\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8<\\/a><\\/p>\\n<p>= Pro Form Builder Plugin Features =\\nFormidable Forms Pro is an upgrade that adds even more power to your free forms. Multi-page forms, conditional logic, payment form integrations, data management, front-end post submissions for user-generated content, front-end editing, and boat loads more. <\\/p>\\n<p>Other WordPress form builder plugins only let you collect data. But our Pro forms also add options to display form submissions on the front-end of your site. Input, display, edit and filter data on the front-end without any additional plugins. Formidable Forms is a powerful solution for purchase forms, order forms, member directories, user registration forms, event calendars, and more.<\\/p>\\n<ul>\\n<li><strong>Even more field types<\\/strong>: Page breaks, section headings, repeating field groups (repeaters), multiple file uploads, rich text, datepicker, time, scale, star ratings, slider, toggle, dynamic fields populated from other forms, password, tags, address, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Multi-Step forms with progress bar<\\/a>: Create beautiful paged forms with rootline and progress indicators. Use conditional logic on page breaks for branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/\\\">Conditional logic for smart forms<\\/a>: Show or hide fields in your form based on user selections or the role of the user.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in your form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/\\\">Calculated Fields<\\/a>: create basic and complex calculations, and even combine text from multiple fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/\\\">Visual form styler with multiple templates<\\/a>: Create multiple form styling templates and assign them to any of your forms. Need Bootstrap form styling? We\\u2019ve got you covered.<\\/li>\\n<li>Entry management: Flexibly and powerfully display, edit, and delete entries from anywhere on your site, and specify who has permission to do so.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/\\\" title=\\\"Display form data with Views\\\">Display form data with Views<\\/a>: Format, filter and display the data submitted in your WordPress forms in custom Views.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/\\\">Graphs and charts for data visualization<\\/a>: Display statistics from form entries, and graph your data in a variety of eye catching styles with graphs that automatically update as new data is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/\\\">User submitted front-end posts and pages<\\/a>: Create and edit WordPress posts, pages, and even custom post types from front-end online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/\\\">Front-end editing<\\/a>: allow users to edit their form entries and posts from the front-end of your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/\\\">Saved and continue partial submissions<\\/a>: logged-in users can save form progress and return later.<\\/li>\\n<li>Form permission settings: limit form visibility based on user role.<\\/li>\\n<li>Conditionally redirect after form submission.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/\\\">Fill out forms automatically<\\/a> with user meta or values from your posts including custom fields.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/\\\">Import and Export form submissions<\\/a> with CSV.<\\/li>\\n<li>Limit the number of form entries per user, IP, or cookie.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/demos\\/\\\">pre-built form\\/view demo templates<\\/a> as a starting point or a final product.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/\\\" title=\\\"White labeling\\\">White labeling<\\/a>: Replace the Formidable branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/\\\">World Class Support<\\/a>: have questions or need guidance on how to set up your application? We are happy to help. Our purpose with Formidable Forms is to help you <strong>take on bigger projects, earn more clients, and grow your business<\\/strong>.<\\/li>\\n<\\/ul>\\n<p>= Form add-on library =<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\\\" title=\\\"User registration forms\\\">User registration Forms<\\/a>. Register users and create subdomains when using WordPress multisite.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/\\\" title=\\\"Form action automation\\\">Form action automation<\\/a>. Schedule email notifications, SMS messages, and API actions.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/\\\" title=\\\"Digital Signature Forms\\\">Digital Signature Forms<\\/a>. Add a signature field to your form. The user may write their signature with a trackpad\\/mouse or just type it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\\\" title=\\\"Formidable Forms API\\\">Formidable Forms API<\\/a>. Send entry results to any other site that has a Rest API. This includes the option of sending entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/\\\" title=\\\"PayPal Forms\\\">PayPal Forms<\\/a>. Automate your business by collecting instant payments from your clients. Collect information, calculate a total, and send clients on to PayPal.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/\\\" title=\\\"Stripe Forms\\\">Stripe Forms<\\/a>. Any Formidable forms on your site can accept credit card payments without users ever leaving your site.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/\\\" title=\\\"Authorize.net AIM Forms\\\">Authorize.net AIM Forms<\\/a>. Accept one-time payments directly on your site, using Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/\\\" title=\\\"MailChimp Forms\\\">MailChimp Forms<\\/a>. Add leads to a MailChimp mailing list when they submit forms and update their information along with the entry.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/\\\" title=\\\"Aweber Forms\\\">Aweber Forms<\\/a>. Subscribe users to an AWeber mailing list when they submit a form. AWeber is a powerful email marketing service.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/\\\" title=\\\"Highrise Forms\\\">Highrise Forms<\\/a>. Add your leads to your Highrise CRM account any time a Formidable form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/\\\" title=\\\"Twilio for SMS Forms\\\">Twilio for SMS Forms<\\/a>. Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when form entries are submitted or updated.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/\\\" title=\\\"WPML Forms\\\">WPML Forms<\\/a>. Translate your forms into multiple languages using the Formidable-integrated WPML plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/\\\" title=\\\"Polylang Forms\\\">Polylang Forms<\\/a>. Create bilingual or multilingual forms with help from Polylang.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/\\\" title=\\\"Bootstrap Form Styles\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap styling to all your Formidable forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/\\\" title=\\\"Bootstrap Modal Form\\\">Bootstrap Modal Form<\\/a>. Open forms, views, other shortcodes, or sections of content in a Bootstrap modal popup.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/\\\" title=\\\"Salesforce Forms\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your WordPress forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\\\" title=\\\"Zapier Forms\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.<\\/li>\\n<\\/ul>\\n<p>Learn more at <a href=\\\"https:\\/\\/formidableforms.com\\/\\\" title=\\\"Formidable Forms\\\">Formidable Forms<\\/a><\\/p>\\n<p><a href=\\\"https:\\/\\/github.com\\/Strategy11\\/formidable-forms\\\" title=\\\"Contribute on Github\\\">Contribute on Github<\\/a><\\/p>\"],\"changelog\":[\"<p><h4>v3.04.01 - October 15, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix: Allow field settings to open when included inside a section<\\/li>\\n<li>Fix: Clean up long file tiles in the file uploader<\\/li>\\n<li>Update translations<\\/li>\\n<li>Move instructions in the Advanced tab on the form settings sidebar from free to pro<\\/li>\\n<\\/ul>\\n<h4>v3.04 - October 11, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add option to schedule a form to open and close on a specific date or close after a specified number of entries<\\/li>\\n<li>New: Move the drop file message into the field settings<\\/li>\\n<li>New: Restyle the file upload UI<\\/li>\\n<li>Update Dropzone script to v5.5<\\/li>\\n<li>Fix: Reduce cases that trigger admin warning for inaccurate calculations<\\/li>\\n<\\/ul>\\n<h4>v3.03.03 - September 26, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add support for RTL progress bars<\\/li>\\n<li>Fix: Properly compare dates and times through a dynamic field. Allow [if x show=y greater_than=NOW] when y is a date field.<\\/li>\\n<li>Fix: Allow default values to be set in a checkbox\\/multiselect field when the value includes a comma-separated list with spaces<\\/li>\\n<li>Fix: Getting an attachment id from a url was sometimes failing<\\/li>\\n<li>Fix: If a form is limited to one entry per user, including the entry_id=x in the form shortcode was being ignored and returning the current user\'s entry<\\/li>\\n<li>Fix: Improve the backend search for user id fields. When a user ID field is selected for the backend search, check the user login, email, display name, and nice name.<\\/li>\\n<li>Fix: Improve the appearance of long progress bars on small screens and those with titles of varying lengths<\\/li>\\n<li>Fix: Correctly pass the $atts in the pagination filters<\\/li>\\n<li>Fix: When a time or date field is watching a lookup field, give them the values in the correct format for that field<\\/li>\\n<\\/ul>\\n<h4>v3.03.02 - September 12, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow view ordering by entry key since this is faster than ordering by a field value.<\\/li>\\n<li>Tweak: If no value in the field used for a calculation, show nothing instead of 0.<\\/li>\\n<li>Tweak: Add lookup_field to array included in frm_filtered_lookup_options hook<\\/li>\\n<li>Fix: Dates weren\'t validating correctly with end year \'1\' instead of \'+1\'<\\/li>\\n<li>Fix: A combination of default values and conditional logic for Other fields was a causing javascript error. Now if an other field has a default value and conditional logic, the default value it correctly set when the field is displayed.<\\/li>\\n<li>Fix: Javascript errors were appearing with some date code customizations.<\\/li>\\n<li>Fix: Hide the first remove button in a repeater when the form styling is off.<\\/li>\\n<\\/ul>\\n<h4>v3.03.01 - August 6, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Accept mod operator (%) inside of frm-math processes<\\/li>\\n<li>New: Allow type=return_raw to return an unfiltered value<\\/li>\\n<li>Fix: Don\'t allow the first row to be removed in a repeater when icons are used to add and remove rows<\\/li>\\n<li>Fix: Show all values from a field in a repeating section with the frm-field-value shortcode instead of only the first value<\\/li>\\n<li>Fix: If a file is moved out of the WP file system, show it anyway when editing an entry form with a file upload<\\/li>\\n<li>Fix: Product images were being removed when importing into WooCommerce<\\/li>\\n<li>Fix: When javascript validation and ajax submit are off, the password strength indicator was showing all red after form validation<\\/li>\\n<li>Add more escaping for translated strings<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"],\"installation\":[\"<ol>\\n<li>Go to your Plugins -&gt; Add New page in your WordPress admin<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to create a new form<\\/li>\\n<li>Insert your forms on a page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> in your page template<\\/li>\\n<\\/ol>\"]}\";}','no'),(4668,'fe3fc85105e86951388d2efd8ec240a9','a:2:{s:7:\"timeout\";i:1562072743;s:5:\"value\";s:5949:\"{\"new_version\":\"1.08\",\"stable_version\":\"1.08\",\"name\":\"Formidable API\",\"slug\":\"formidable-api\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/?changelog=1\",\"last_updated\":\"2019-05-27 09:21:09\",\"homepage\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTU2MjEzMDM0MzozZGNkMGJiYzE0OTVkYzg3YTMxYzdiZDZkYmY2MmZiMzoxNjgwNzI6OWU2MTc2NDA2MTFjNTk2OGQzM2Q2MmNiMDc2ZjNhNTQ6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTU2MjEzMDM0MzozZGNkMGJiYzE0OTVkYzg3YTMxYzdiZDZkYmY2MmZiMzoxNjgwNzI6OWU2MTc2NDA2MTFjNTk2OGQzM2Q2MmNiMDc2ZjNhNTQ6aHR0cHNALy93d3cuc3RhZHNpZy5jby56YTow\",\"sections\":{\"description\":\"<p>Add a full forms API for forms, form fields, views, and entries. Then send submissions to other sites with REST APIs.<\\/p>\\n\",\"changelog\":\"<p><h4>v1.08 - May 27, 2019<\\/h4>\\r\\n<ul>\\n<li>New: Add exclude_script and exclude_style parameters to the frm-api shortcode for excluding specific styles and scripts.<\\/li>\\n<li>New: When using the frm-api shortcode, scripts included on the page will be automatically excluded to prevent duplication.<\\/li>\\n<li>Don\'t allow GET access to field routes for those who don\'t have access to view forms on the back end.<\\/li>\\n<li>Switch shortcodes in data settings when form is duplicated.<\\/li>\\n<li>Fix: Javascript was not included with views, so shortcodes like frm-entry-update-field did not respond.<\\/li>\\n<li>Fix: Clicking the + row button quickly was creating duplicate rows.<\\/li>\\n<li>Fix: The ... was missing in 4.0 for newly added data rows. This fix requires Formidable v4.0.02<\\/li>\\n<\\/ul>\\n<h4>v1.07 - December 26, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix: multiple files were not correctly attached to the created entry<\\/li>\\n<li>Fix: when a file was created via the API, it was being duplicated on the receiving end<\\/li>\\n<li>Fix: When the API plugin is active, and Formidable is not, there was an error when creating a new page with the new WP editor<\\/li>\\n<\\/ul>\\n<h4>v1.06 - October 8, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add image importing via the REST API. Now an image can be uploaded from another site when the URL is included in the API request.<\\/li>\\n<li>Fix: Prevent CORS error with ajax calls. This resolves issues with double submissions, redirecting with validation errors, and adding rows in a repeater.<\\/li>\\n<li>Fix: The returned form object was different after a form was edited than after create or get.<\\/li>\\n<\\/ul>\\n<h4>v1.05.01 - August 22, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix issue with file fields not saving the received value<\\/li>\\n<\\/ul>\\n<h4>v1.05 - July 27, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add start_date and end_date parameters to filter the route to get entries<\\/li>\\n<li>Fix: Add better functionality to the search parameter in the route to get entries<\\/li>\\n<li>Fix: Allow the registration validation to trigger during API call<\\/li>\\n<li>Fix: reCaptcha was returning an error when creating an entry<\\/li>\\n<li>Fix: Creating an entry that included dynamic fields was causing a fatal error by using deprecated functions<\\/li>\\n<li>Fix: The route to create a form wasn\'t working correctly<\\/li>\\n<li>Remove old sslverify =&gt; false lines since they are no longer recommended<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:0:{}\",\"description\":[\"<p>Add a full forms API for forms, form fields, views, and entries. Then send submissions to other sites with REST APIs.<\\/p>\\n\"],\"changelog\":[\"<p><h4>v1.08 - May 27, 2019<\\/h4>\\r\\n<ul>\\n<li>New: Add exclude_script and exclude_style parameters to the frm-api shortcode for excluding specific styles and scripts.<\\/li>\\n<li>New: When using the frm-api shortcode, scripts included on the page will be automatically excluded to prevent duplication.<\\/li>\\n<li>Don\'t allow GET access to field routes for those who don\'t have access to view forms on the back end.<\\/li>\\n<li>Switch shortcodes in data settings when form is duplicated.<\\/li>\\n<li>Fix: Javascript was not included with views, so shortcodes like frm-entry-update-field did not respond.<\\/li>\\n<li>Fix: Clicking the + row button quickly was creating duplicate rows.<\\/li>\\n<li>Fix: The ... was missing in 4.0 for newly added data rows. This fix requires Formidable v4.0.02<\\/li>\\n<\\/ul>\\n<h4>v1.07 - December 26, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix: multiple files were not correctly attached to the created entry<\\/li>\\n<li>Fix: when a file was created via the API, it was being duplicated on the receiving end<\\/li>\\n<li>Fix: When the API plugin is active, and Formidable is not, there was an error when creating a new page with the new WP editor<\\/li>\\n<\\/ul>\\n<h4>v1.06 - October 8, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add image importing via the REST API. Now an image can be uploaded from another site when the URL is included in the API request.<\\/li>\\n<li>Fix: Prevent CORS error with ajax calls. This resolves issues with double submissions, redirecting with validation errors, and adding rows in a repeater.<\\/li>\\n<li>Fix: The returned form object was different after a form was edited than after create or get.<\\/li>\\n<\\/ul>\\n<h4>v1.05.01 - August 22, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix issue with file fields not saving the received value<\\/li>\\n<\\/ul>\\n<h4>v1.05 - July 27, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add start_date and end_date parameters to filter the route to get entries<\\/li>\\n<li>Fix: Add better functionality to the search parameter in the route to get entries<\\/li>\\n<li>Fix: Allow the registration validation to trigger during API call<\\/li>\\n<li>Fix: reCaptcha was returning an error when creating an entry<\\/li>\\n<li>Fix: Creating an entry that included dynamic fields was causing a fatal error by using deprecated functions<\\/li>\\n<li>Fix: The route to create a form wasn\'t working correctly<\\/li>\\n<li>Remove old sslverify =&gt; false lines since they are no longer recommended<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"]}\";}','no'),(6814,'f5ada03e410036ff33520a7b4731d7a7','a:2:{s:7:\"timeout\";i:1543937054;s:5:\"value\";s:79649:\"{\"new_version\":\"3.04.02\",\"stable_version\":\"3.04.02\",\"name\":\"Formidable Pro\",\"slug\":\"formidable-pro\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro\\/?changelog=1\",\"last_updated\":\"2018-11-15 16:12:59\",\"homepage\":\"https:\\/\\/formidableforms.com\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTU0Mzk5MTA1NDpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDpkMDJkYTcxM2JkYWVmYTVmZDk2ZmE3ZWY2NGRlOTIwMjpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTU0Mzk5MTA1NDpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDpkMDJkYTcxM2JkYWVmYTVmZDk2ZmE3ZWY2NGRlOTIwMjpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"sections\":{\"description\":\"<p>= The Most Powerful WordPress form builder plugin on the market =\\nWe built <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Formidable Forms<\\/a> to offer the &quot;first-ever&quot; solutions-focused WordPress form plugin on the market. You can use our drag &amp; drop WordPress form builder plugin to create contact forms, surveys, quiz forms, registration forms, payment forms, purchase forms, email marketing forms, and just about any other form you can imagine.<\\/p>\\n<p>At Formidable Forms, creating the most extendable form builder plugin is our #1 priority, so you save time when building even the most advanced forms. Unlike other WordPress form maker plugins that focus solely on building contact forms, we believe in allowing our users to push the limits and create complex forms quickly!<\\/p>\\n<p>Before we take a deep-dive into the features of the powerful Formidable form builder plugin, you should know that Formidable Forms is 100% mobile responsive so your contact forms and all other types of forms will always look great on all devices (desktop, laptop, tablets, and smartphones).<\\/p>\\n<p>On top of that, we have optimized Formidable contact forms and advanced forms for speed and maximum server performance. Whether you use Formidable Forms to build a contact form on your own site or an advanced form for your client, you can confidently say that it\'s one of the FASTEST WordPress form builders on the market.<\\/p>\\n<blockquote>\\n<p><strong>Formidable Forms Pro<\\/strong><br \\/>\\nThis form builder plugin is the lite version of the Formidable Forms Pro plugin that comes with all the contact form and advanced form features you will ever need. Our premium form features include repeater fields, email subscription forms, multi-page contact forms, file upload forms, smart forms with conditional logic, payment integrations, form templates, form relationships, cascading dropdown fields, front-end form editing, powerful Formidable Views to display data in web applications, and far more than just contact forms. <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\" rel=\\\"friend\\\" title=\\\"Formidable Forms\\\">Click here to purchase the most advanced premium WordPress form builder plugin now!<\\/a><\\/p>\\n<\\/blockquote>\\n<p>You can start with our pre-built contact form template or create totally custom forms from scratch all with an easy-to-use drag &amp; drop form builder interface. <\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8&amp;rel=0\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8&amp;rel=0<\\/a><\\/p>\\n<p>Let\'s take a look at all the powerful form builder features that you get with Formidable Forms for making amazing contact forms, lead forms, subscription forms, request a quote forms, donation forms, payment order forms and more.<\\/p>\\n<p>= Drag &amp; Drop Contact Form Maker and Advanced Form Builder =<\\/p>\\n<p>The Formidable Forms drag &amp; drop form builder allows you to quickly create unlimited contact forms, surveys, quizzes, registration forms, and just about any other type of form that you want.<\\/p>\\n<p>Our form builder plugin comes with all the powerful form fields that you need to create a solution-focused form, fast!<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<\\/ul>\\n<p>= Complete Entry Management for Contact Forms and Surveys =<\\/p>\\n<p>Formidable Forms allows you to view all your contact form and survey entries right from your WordPress dashboard.<\\/p>\\n<p>Once a user submits a contact form, their response is automatically stored in your WordPress database. <\\/p>\\n<p>Formidable Forms is <strong>100% GDPR-friendly<\\/strong>. You can turn off IP tracking or stop saving contact form submissions entirely. Alternatively, you can add a GDPR checkbox field to your contact forms and payment forms to collect consent.<\\/p>\\n<p>Need to import your contact form leads to another service like MailChimp? No problem. <strong>Export contact form leads to a CSV<\\/strong>, open it in Excel, and import anywhere.<\\/p>\\n<p>You can also configure unlimited form email notifications and autoresponders triggered by contact form submissions. <\\/p>\\n<p>On top of that, you can easily customize the contact form success message the user sees after they submit the form, or redirect them to another page for your more advanced form needs.<\\/p>\\n<p>= The Only Form Maker Plugin with an Advanced Form Styler =<\\/p>\\n<p>With our built-in form styler, you can instantly customize the look and feel of your contact forms. With just a few clicks, your contact form, email form, and advanced forms can be transformed to match your website design.<\\/p>\\n<p>By default, Formidable Forms applies a single styling template to all Formidable contact forms and advanced forms on your site. But if you want a custom form style for each individual contact form, sidebar form, and registration form, you can upgrade to Formidable Forms Pro.<\\/p>\\n<p>= Build Smart Surveys with Beautiful Reports = <\\/p>\\n<p>Aside from simple contact forms, Formidable Forms comes with a built-in survey feature, so you can quickly create powerful surveys and see beautiful reports.<\\/p>\\n<p>The best part is that you can do this all within Formidable Forms without any third-party tools.<\\/p>\\n<p>= Quickly Create Advanced Registration Forms for Any Use Case = <\\/p>\\n<p>Whether you need to create a youth sport team registration form, event registration form, or church retreat registration form, Formidable Forms has got you covered. Unlike other contact form plugins, Formidable Forms comes with a repeater field that allows you to create the most powerful registration forms.<\\/p>\\n<p>Then, our marketing integrations and APIs can send the contact form and registration form data anywhere you want.<\\/p>\\n<p>= Accept Credit Cards and Easily Collect Payments = <\\/p>\\n<p>By now, you probably already realize the theme that Formidable Forms is more than just a contact form plugin. You can use Formidable Forms to create payment forms and accept credit card payments right from your website.<\\/p>\\n<p>We offer seamless integration with PayPal, Stripe, and Authorize.net, so you can create order forms and purchase forms with our drag &amp; drop form builder. <\\/p>\\n<p>You can even use Formidable Forms to create WooCommerce forms with custom fields (more on that later).<\\/p>\\n<p>= Grow Your Business with Marketing Integrations =<\\/p>\\n<p>We know that marketing is the key to grow your business. That\'s why Formidable Forms allows you to connect contact forms, payment forms, and advanced forms with a marketing platform of your choice.<\\/p>\\n<p>We integrate with popular email marketing services like:<\\/p>\\n<ul>\\n<li>MailChimp<\\/li>\\n<li>AWeber<\\/li>\\n<li>Constant Contact<\\/li>\\n<li>GetResponse<\\/li>\\n<li>MailPoet<\\/li>\\n<li>Active Campaign<\\/li>\\n<li>Salesforce<\\/li>\\n<li>HubSpot<\\/li>\\n<\\/ul>\\n<p>On top of these native integrations, we also integrate with Zapier, so you can quickly route your contact form data to over 1,000+ more services with just a few clicks.<\\/p>\\n<p>= Create Data-Driven Web Applications with Formidable Views = <\\/p>\\n<p>Formidable Views are by far the most powerful feature that makes Formidable far more than just a form builder plugin. Views allow you to flexibly display any submitted form data on the front-end of your website.<\\/p>\\n<p>Our customers use Formidable Views to create data-driven web applications like real estate listings, employment listings, event calendars, business or member directories, job boards, and other searchable databases.<\\/p>\\n<p>As you can see, Formidable Forms is not your average contact form plugin. It\'s a true all-in-one WordPress form solution.<\\/p>\\n<p>= Increase Your Sales with WooCommerce Product Forms = <\\/p>\\n<p>Formidable Forms is the only WordPress form builder plugin that offers extensive integration with WooCommerce.<\\/p>\\n<p>Our goal is to empower you to build powerful WooCommerce product forms, so you can increase your store sales.<\\/p>\\n<p>You can use Formidable Forms to add a WooCommerce Product configurator with custom calculation fields, and automatically send the data to the WooCommerce cart with variable pricing options.<\\/p>\\n<p>Need your customers to upload a file when they purchase a product? No problem. Simply drag &amp; drop a file upload field into your WooCommerce form and you\'re done.<\\/p>\\n<p>You can even show submitted form values in the WooCommerce purchase receipt emails as well as trigger SMS text messages or marketing integrations when an order is completed.<\\/p>\\n<p>And of course, you can use Formidable Forms to add a simple contact form on your WooCommerce store.<\\/p>\\n<p>= Build Powerful Quiz Forms &amp; Calculators = <\\/p>\\n<p>Along with a contact form, you can also use the Formidable form builder plugin to create quiz forms and calculator forms.<\\/p>\\n<p>Here are some example web calculators you can quickly add to your site:<\\/p>\\n<ul>\\n<li>Advanced Mortgage Calculator<\\/li>\\n<li>Car Payment Calculator<\\/li>\\n<li>BMI Calculator<\\/li>\\n<li>User Age Calculator<\\/li>\\n<li>Online Quote Calculator<\\/li>\\n<li>Net Promoter Score (NPS) Survey Calculator<\\/li>\\n<\\/ul>\\n<p>... and our powerful form calculations allow you to build just about any other type of calculator form.<\\/p>\\n<p>If that wasn\'t enough, you can also use our Formidable Form builder to create quizzes on your site and display results. This is great for membership sites, LMS, or just for viral quizzes to grow your email list.<\\/p>\\n<p>Our goal is to go beyond simple contact forms and allow users to create form-based solutions without any code :)<\\/p>\\n<p>= Create WordPress User Registration Forms, Profile Forms, and More = <\\/p>\\n<p>If you run a WordPress membership site, then you need more advanced forms along with your contact form.<\\/p>\\n<p>The Formidable Form builder plugin allows you to customize your WordPress user registration forms, so you can collect additional data when the user profile is created.<\\/p>\\n<p>With our front-end form editing, you can also build custom profile forms and allow users to keep their profile updated, or even progressively add to the profile from a set of forms, from the first contact form to the last payment form.<\\/p>\\n<p>Our front-end form editing feature is unique to us, and you will not find any other WordPress contact form plugin offering such a solution with the level of extendability that we do.<\\/p>\\n<p>= Beautiful Graphs and Reports to Help You Analyze and Showcase Data = <\\/p>\\n<p>We believe that data alone does no good if you can\'t analyze it. That\'s why we make it easy for you to analyze your contact form, survey, quiz, calculator, and other form data with beautiful graphs and reports.<\\/p>\\n<p>You can even showcase form data on the front-end of your website by embedding graphs in your WordPress posts or pages.<\\/p>\\n<p>= All the Advanced Form Fields and Features You Need to Grow Your Business =<\\/p>\\n<p>Formidable Forms goes far above and beyond contact forms to offer all the advanced form fields and features you need to grow your business.<\\/p>\\n<p>This includes things like multi-page forms, save and continue forms, cascading form fields, powerful conditional logic, partial form submissions, invisible spam protection, front-end user post submission, calculators, user-tracking, and so much more.<\\/p>\\n<p>We\'re on a mission to offer an all-in-one solution-focused WordPress form plugin, so you don\'t have to install 5 plugins alongside your contact form maker plugin to do everything you want.<\\/p>\\n<p>= Extend and Customize Your Forms - Developer\'s Dream Come True =<\\/p>\\n<p>Formidable Forms is the form plugin of choice for smart developers, freelancers, and agencies because it helps them build complex form solutions and basic contact forms quickly and defy the limits imposed by time and knowledge.<\\/p>\\n<p>Our goal is to help you build complex websites with low overhead. We believe big projects don\'t always need big resources.<\\/p>\\n<p>That\'s why we made Formidable Forms the most extendable WordPress form builder plugin on the market.<\\/p>\\n<p>You can easily route your data from contact forms and advanced forms with our powerful API. Formidable Views allow you to display form data anywhere on the front-end, so you can quickly create data-driven web applications.<\\/p>\\n<p>On top of that, our hooks and filters allow you to completely extend Formidable Forms to meet your needs. We even include hundreds of code examples in our docs to give you the confidence to get started.<\\/p>\\n<p>= Full Formidable Forms Feature List =<\\/p>\\n<p>Since Formidable Forms is not your average WordPress contact form plugin, this feature list is going to be very long. Grab a cup of coffee and read through, or just install the most powerful WordPress form maker plugin, your choice :)<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/drag-drop-form-builder\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Online drag and drop form builder<\\/a>. Build everything from contact forms and email forms to calculators, registration forms, and complex online forms. Make amazing forms the easy way with a simple WordPress drag and drop form builder. No code required.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Display form data with Views<\\/a>. Other WordPress form builder plugins only let you collect data. Formidable Forms lets you format, filter, and display form submissions in custom Formidable Views on the front-end of your site. Views turn forms into solutions. Job boards, event calendars, business directories, ratings systems, and management solutions. If you can come up with it, most likely Formidable can handle it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/dynamically-add-form-fields\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Repeating field groups (repeaters)<\\/a>. Allow your users to add sets of fields to registration forms, application forms, email forms, calculator forms, and other advanced forms on the fly.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multiple-file-upload-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Drag and drop multiple file upload forms<\\/a>. Easily upload documents, files, photos, and music, with any number of files in contact forms, job application forms (resumes), WordPress User Profile Forms (avatars), registration forms, get a quote forms, and other advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Multi-step forms with progress bars<\\/a>. Want to increase conversion rates and collect more leads with smart contact forms? Create beautiful paged forms with rootline and progress indicators. Add conditional logic to page breaks for smart branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/cascading-dropdown-lookup-field\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Cascading lookup fields<\\/a>. Change values in other form fields or drill down through options to reveal a final value. Designed for country\\/state\\/city fields in contact forms and registration forms and year\\/make\\/model fields in auto forms, or to get a price from a separate product form.<\\/li>\\n<li>Datepicker fields with advanced <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/datepicker-options\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">datepicker options<\\/a> including blackout dates, dynamic minimum and maximum dates, and inline calendars. Our datepickers are great for basic online booking forms, event registration forms, and specialized contact forms.<\\/li>\\n<li>Create relationships with Dynamic fields. Populate form fields from other forms and link data between two forms without duplication. Form relationships are helpful in a huge number of cases including linking employment application forms to a job, quiz forms to a class, event registration forms to an event, sports registration forms to a team, and contact forms to a department.<\\/li>\\n<li>Add password fields with a password strength meter in WordPress user registration forms, profile forms, and change password forms.<\\/li>\\n<li>Collect reviews with star ratings in feedback forms, recipe ratings forms, product review forms, event rating forms, customer testimonial forms, and yes, even contact forms. Then display and share the ratings in Formidable Views.<\\/li>\\n<li>Add more field types with our form creator including Rich text fields, Time fields, Scale fields, Slider fields, Toggle fields, Tags fields, Address fields, and Section headings.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/confirm-email-address-password-wordpress-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Confirmation fields<\\/a>. Double check email addresses or passwords and prevent typos from cannibalizing your contact form leads.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/conditional-logic-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Conditional logic for smart forms<\\/a>. Show or hide fields in contact forms and advanced forms based on user selections or user roles. Make complex forms simple and increase form conversion rates.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/email-autoresponders-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Send email notifications &amp; autoresponders<\\/a>. Automatically let clients know you received their contact form message. Then create customized email notifications for multiple recipients and get info from a contact form or email form to those who need it.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in contact forms, email forms, payment forms, and registration forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Calculator forms<\\/a>. Create basic and complex calculations, and even combine text from multiple fields for a mortgage calculator, auto loan calculator, or many other calculator forms. Even a contact form could benefit from calculations for easy quotes and price estimates.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Visual form style creator<\\/a>. Our form creator for contact forms, calculators, and other online forms not only allows you to build forms, but also create branded forms that match your site. Change colors, borders, padding and much more without any code.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/flexible-layouts-responsive-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Flexible form layout design<\\/a>. Build mobile responsive contact forms and advanced form layouts with multiple fields in a row by using our CSS layout classes.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-mobile-friendly-responsive-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Mobile-friendly, responsive forms<\\/a>. All of our forms are sized automatically for every screen size. Ensure that everyone can see and submit your contact forms and other online forms from any device.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">User submitted front-end posts and pages<\\/a>. Create and edit WordPress posts, pages, and even custom post types from your front-end online forms. Send user-generated content quickly from a post creation form to a page.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/form-entry-management-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Simple entry management<\\/a>. Flexibly and powerfully display, edit, and delete form entries from anywhere on your site, and specify who has permission to do so. Your logged-in users can fully manage their personal journal entries, weight tracking, guest blog posts, RSVP status, and whatever else you need, far and above just contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WordPress front-end editing<\\/a>. Allow users to edit their form entries and posts from the front-end of your site. Create an online journaling platform, member directory, classified ads, community recipes, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Save and continue partial form submissions<\\/a>. Logged-in users can save form progress and return later. Whether it\'s a contact form or a long multi-paged form, users can pick up right where they left off.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Graphs and charts for data visualization<\\/a>. Display statistics from surveys, polls, quiz forms, questionnaires, and advanced forms. Or graph the data in a variety of ways that automatically update as new form data is submitted (great for weight tracking over time).<\\/li>\\n<li>Form permission settings. Limit visibility of specialized contact forms and advanced forms based on user role.<\\/li>\\n<li>Form entry limits. Limit a contact form, registration form, survey, quiz, or directory submissions to only allow one entry per user, IP, or cookie.<\\/li>\\n<li>Form scheduling. Open and close event registration forms and signup forms on a specific date. Or close registration forms when the seat limit or team size has been reached. Want a contact form for questions about a planned event that auto closes when the event starts? No problem.<\\/li>\\n<li>Conditionally redirect to a custom page after a contact form, custom search form, quiz form, calculator form, payment form, support ticket form, or other online form is submitted. Help clients get the answers they are looking for, or show a tailored result based on their form selections.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/customize-form-html-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Customize form HTML<\\/a>. We believe that not only contact forms, but also advanced forms should be extendable to meet your needs. So we give you access to change the form HTML (like Contact Form 7), but still keep the ease and speed of a drag &amp; drop form builder plugin. Our team labors for simplicity without sacrificing flexibility.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Import and export forms, form submissions, styles, and views<\\/a>. Quickly move forms, entries, views and styles on another site. Need to export leads from a contact form to another service? Check.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Form templates for instant form building<\\/a>. Get started quickly with the most advanced form creator that includes form templates, style templates, and Formidable View templates. Our WordPress form generator makes it FAST to build contact forms, job application forms, and other online forms.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">pre-built form\\/view templates<\\/a> as a shortcut to a final product. Our growing form template library includes contact forms, payment forms, calculators, a WooCommerce product creator, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wcag-accessible-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WCAG accessible forms with A11Y compliance<\\/a>. Don\'t alienate your audience. Ensure your contact forms, surveys, quiz forms, lead capture forms, and other online forms are compliant and available to anyone.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/invisible-spam-protection\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Invisible SPAM protection<\\/a>. Don\'t waste time sorting through SPAM from your contact form. Get instant and powerful anti-spam features from honeypot, invisible reCAPTCHA, Akismet, and the WordPress comment blacklist.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Fill out forms automatically<\\/a> with values from the user profile or posts (i.e. custom fields). When a user is logged in, prefill the fields you know like first name, last name, and email address in a contact form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">White label form builder<\\/a>. Replace the Formidable Forms branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free contact forms and online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WordPress user registration forms<\\/a>. Register users, edit profiles, reset passwords, and add a login form. When using WordPress multisite forms, you can even allow your logged in or logged out users to create new subdomains.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Digital signature forms<\\/a>. Eliminate paper forms with a digital signature field in your contact forms, application forms, registration forms, or advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Form action automation<\\/a>. Schedule email notifications, SMS messages, and API actions to trigger at a later time. You can automatically delete guest posts after 30 days, send weekly digest emails, trigger happy birthday text messages from a contact form or lead form and much more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Formidable Forms API<\\/a>. Send form entries to other REST APIs. This includes the option to send form entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/quiz-maker\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Quiz maker forms<\\/a>. Write your quiz questions in a quiz form, submit an entry as the quiz key, and publish the quiz on a page. Then all the quiz form grading is automatically done for you.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">World class support<\\/a>. Have questions or need guidance on how to use our contact form builder or set up your web application? We are happy to help. Our passion with Formidable Forms is to help you <strong>defy the limits<\\/strong> so you can take on bigger projects, earn more clients, and grow your business.<\\/li>\\n<\\/ul>\\n<p>= Payment Forms, Form APIs, and Marketing Integrations =\\nIn addition to all the form builder features listed above, power up contact forms, registration forms, and calculator forms with these API integrations.<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">PayPal Payment Forms<\\/a>. Automate your business by collecting instant payments and recurring payments from clients. Collect information, calculate a total, and send clients to PayPal from your payment forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Stripe Payment Forms<\\/a>. Keep users on your site while collecting payments from a credit card form. Select from one time and recurring charges in order forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Authorize.net AIM Payment Forms<\\/a>. Accept one-time payments in order forms directly on your site using Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/woocommerce\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WooCommerce product configurator<\\/a>. Add custom fields to a WooCommerce product form and collect extra data when a product is added to the cart. Use form calculations for variable pricing, upload a file with the purchase, and send custom emails when a purchase is completed.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">MailChimp Forms<\\/a>. Add and update leads in a MailChimp email marketing list from lead forms, contact forms, order forms, and email forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/constant-contact\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Constant Contact Forms<\\/a>. Create leads automatically in Constant Contact with newsletter signup forms and contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/getresponse-wordpress-plugin\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">GetResponse Forms<\\/a>. Collect leads in contact forms, add them to GetResponse, then trigger GetResponse marketing automations.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">AWeber Forms<\\/a>. Subscribe users to an AWeber mailing list when a newsletter signup form or contact form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailpoet-newsletters\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">MailPoet Newsletter forms<\\/a>. Fill your email marketing lists from newsletter signup forms and contact forms. Then send WordPress newsletters from your own site using MailPoet.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Highrise Forms<\\/a>. Add leads to your Highrise CRM account any time a contact form, registration form, or payment form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your contact page and advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/activecampaign-wordpress-plugin\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">ActiveCampaign Forms<\\/a>. Let your contact form pull double duty as a payment form, post creation form, user registration form, and an ActiveCampaign integration.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/hubspot-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">HubSpot Forms<\\/a>. Route contact form and lead form data to HubSpot CRM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Twilio for SMS Forms<\\/a>. Collect votes and poll responses via SMS text or send SMS notifications when form entries are submitted or updated. Get notified instantly when an important contact form or payment form is completed.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WPML Forms<\\/a>. Translate contact forms, registration forms, and advanced forms into multiple languages using our integrated multilingual forms plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Polylang Forms<\\/a>. Get the form creator with Polylang bilingual or multilingual contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form. With Zapier, you have the option to trigger thousands of other actions from a contact form, lead form, quote form, quiz form, or any other advanced online form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap form styling to contact forms, registration forms, surveys, and advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Bootstrap Modal Form<\\/a>. Open contact forms, login forms, Formidable views, other shortcodes, and sections of content in a Bootstrap modal popup.<\\/li>\\n<\\/ul>\\n<p>After reading this feature list, you can probably imagine why Formidable Forms is the most advanced WordPress form plugin on the market, designed for far more than just contact forms.<\\/p>\\n<p>Give Formidable Forms a try.<\\/p>\\n<p>Want to unlock the full power? <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Upgrade to our Pro version<\\/a> to get all the features for smart contact forms and full web applications.<\\/p>\\n<p>= Form Plugin Credits =\\nThis form builder plugin is created by Steve and Steph Wells along with our amazing Formidable Forms Team.<\\/p>\\n<p>Formidable Forms is now part of the <a href=\\\"https:\\/\\/www.wpbeginner.com\\/\\\">WPBeginner<\\/a> accelerator, and <a href=\\\"https:\\/\\/syedbalkhi.com\\/\\\">Syed Balkhi<\\/a> is an Advisor in our company.<\\/p>\",\"changelog\":\"<p><h4>v3.04.02 - November 5, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add the option to download addons from the Formidable -&gt; Addons page when the Pro version is activated with a current license<\\/li>\\n<li>Fix issue with double field ids on some advanced shortcodes<\\/li>\\n<li>Fix php warnings on new view page<\\/li>\\n<\\/ul>\\n<h4>v3.04.01 - October 15, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix: Allow field settings to open when included inside a section<\\/li>\\n<li>Fix: Clean up long file tiles in the file uploader<\\/li>\\n<li>Update translations<\\/li>\\n<li>Move instructions in the Advanced tab on the form settings sidebar from free to pro<\\/li>\\n<\\/ul>\\n<h4>v3.04 - October 11, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add option to schedule a form to open and close on a specific date or close after a specified number of entries<\\/li>\\n<li>New: Move the drop file message into the field settings<\\/li>\\n<li>New: Restyle the file upload UI<\\/li>\\n<li>Update Dropzone script to v5.5<\\/li>\\n<li>Fix: Reduce cases that trigger admin warning for inaccurate calculations<\\/li>\\n<\\/ul>\\n<h4>v3.03.03 - September 26, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add support for RTL progress bars<\\/li>\\n<li>Fix: Properly compare dates and times through a dynamic field. Allow [if x show=y greater_than=NOW] when y is a date field.<\\/li>\\n<li>Fix: Allow default values to be set in a checkbox\\/multiselect field when the value includes a comma-separated list with spaces<\\/li>\\n<li>Fix: Getting an attachment id from a url was sometimes failing<\\/li>\\n<li>Fix: If a form is limited to one entry per user, including the entry_id=x in the form shortcode was being ignored and returning the current user\'s entry<\\/li>\\n<li>Fix: Improve the backend search for user id fields. When a user ID field is selected for the backend search, check the user login, email, display name, and nice name.<\\/li>\\n<li>Fix: Improve the appearance of long progress bars on small screens and those with titles of varying lengths<\\/li>\\n<li>Fix: Correctly pass the $atts in the pagination filters<\\/li>\\n<li>Fix: When a time or date field is watching a lookup field, give them the values in the correct format for that field<\\/li>\\n<\\/ul>\\n<h4>v3.03.02 - September 12, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow view ordering by entry key since this is faster than ordering by a field value.<\\/li>\\n<li>Tweak: If no value in the field used for a calculation, show nothing instead of 0.<\\/li>\\n<li>Tweak: Add lookup_field to array included in frm_filtered_lookup_options hook<\\/li>\\n<li>Fix: Dates weren\'t validating correctly with end year \'1\' instead of \'+1\'<\\/li>\\n<li>Fix: A combination of default values and conditional logic for Other fields was a causing javascript error. Now if an other field has a default value and conditional logic, the default value it correctly set when the field is displayed.<\\/li>\\n<li>Fix: Javascript errors were appearing with some date code customizations.<\\/li>\\n<li>Fix: Hide the first remove button in a repeater when the form styling is off.<\\/li>\\n<\\/ul>\\n<\\/p>\\n\",\"installation\":\"<ol>\\n<li>Go to the Plugins -&gt; \'Add New\' page in your WP admin area<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to go to the form generator page and create a new contact form, email form, registration form, or advanced form<\\/li>\\n<li>Insert your newly created contact form, quiz, survey, registration form, or advanced form on a Contact Us page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> to add a contact form in a contact page template<\\/li>\\n<\\/ol>\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-772x250.png\"},\"icons\":\"a:0:{}\",\"stable_tag\":\"3.04.02\",\"contributors\":{\"formidableforms\":\"\\/\\/profiles.wordpress.org\\/formidableforms\",\"sswells\":\"\\/\\/profiles.wordpress.org\\/sswells\",\"srwells\":\"\\/\\/profiles.wordpress.org\\/srwells\",\"jamie.wahlin\":\"\\/\\/profiles.wordpress.org\\/jamie.wahlin\"},\"description\":[\"<p>= The Most Powerful WordPress form builder plugin on the market =\\nWe built <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Formidable Forms<\\/a> to offer the &quot;first-ever&quot; solutions-focused WordPress form plugin on the market. You can use our drag &amp; drop WordPress form builder plugin to create contact forms, surveys, quiz forms, registration forms, payment forms, purchase forms, email marketing forms, and just about any other form you can imagine.<\\/p>\\n<p>At Formidable Forms, creating the most extendable form builder plugin is our #1 priority, so you save time when building even the most advanced forms. Unlike other WordPress form maker plugins that focus solely on building contact forms, we believe in allowing our users to push the limits and create complex forms quickly!<\\/p>\\n<p>Before we take a deep-dive into the features of the powerful Formidable form builder plugin, you should know that Formidable Forms is 100% mobile responsive so your contact forms and all other types of forms will always look great on all devices (desktop, laptop, tablets, and smartphones).<\\/p>\\n<p>On top of that, we have optimized Formidable contact forms and advanced forms for speed and maximum server performance. Whether you use Formidable Forms to build a contact form on your own site or an advanced form for your client, you can confidently say that it\'s one of the FASTEST WordPress form builders on the market.<\\/p>\\n<blockquote>\\n<p><strong>Formidable Forms Pro<\\/strong><br \\/>\\nThis form builder plugin is the lite version of the Formidable Forms Pro plugin that comes with all the contact form and advanced form features you will ever need. Our premium form features include repeater fields, email subscription forms, multi-page contact forms, file upload forms, smart forms with conditional logic, payment integrations, form templates, form relationships, cascading dropdown fields, front-end form editing, powerful Formidable Views to display data in web applications, and far more than just contact forms. <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\" rel=\\\"friend\\\" title=\\\"Formidable Forms\\\">Click here to purchase the most advanced premium WordPress form builder plugin now!<\\/a><\\/p>\\n<\\/blockquote>\\n<p>You can start with our pre-built contact form template or create totally custom forms from scratch all with an easy-to-use drag &amp; drop form builder interface. <\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8&amp;rel=0\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8&amp;rel=0<\\/a><\\/p>\\n<p>Let\'s take a look at all the powerful form builder features that you get with Formidable Forms for making amazing contact forms, lead forms, subscription forms, request a quote forms, donation forms, payment order forms and more.<\\/p>\\n<p>= Drag &amp; Drop Contact Form Maker and Advanced Form Builder =<\\/p>\\n<p>The Formidable Forms drag &amp; drop form builder allows you to quickly create unlimited contact forms, surveys, quizzes, registration forms, and just about any other type of form that you want.<\\/p>\\n<p>Our form builder plugin comes with all the powerful form fields that you need to create a solution-focused form, fast!<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<\\/ul>\\n<p>= Complete Entry Management for Contact Forms and Surveys =<\\/p>\\n<p>Formidable Forms allows you to view all your contact form and survey entries right from your WordPress dashboard.<\\/p>\\n<p>Once a user submits a contact form, their response is automatically stored in your WordPress database. <\\/p>\\n<p>Formidable Forms is <strong>100% GDPR-friendly<\\/strong>. You can turn off IP tracking or stop saving contact form submissions entirely. Alternatively, you can add a GDPR checkbox field to your contact forms and payment forms to collect consent.<\\/p>\\n<p>Need to import your contact form leads to another service like MailChimp? No problem. <strong>Export contact form leads to a CSV<\\/strong>, open it in Excel, and import anywhere.<\\/p>\\n<p>You can also configure unlimited form email notifications and autoresponders triggered by contact form submissions. <\\/p>\\n<p>On top of that, you can easily customize the contact form success message the user sees after they submit the form, or redirect them to another page for your more advanced form needs.<\\/p>\\n<p>= The Only Form Maker Plugin with an Advanced Form Styler =<\\/p>\\n<p>With our built-in form styler, you can instantly customize the look and feel of your contact forms. With just a few clicks, your contact form, email form, and advanced forms can be transformed to match your website design.<\\/p>\\n<p>By default, Formidable Forms applies a single styling template to all Formidable contact forms and advanced forms on your site. But if you want a custom form style for each individual contact form, sidebar form, and registration form, you can upgrade to Formidable Forms Pro.<\\/p>\\n<p>= Build Smart Surveys with Beautiful Reports = <\\/p>\\n<p>Aside from simple contact forms, Formidable Forms comes with a built-in survey feature, so you can quickly create powerful surveys and see beautiful reports.<\\/p>\\n<p>The best part is that you can do this all within Formidable Forms without any third-party tools.<\\/p>\\n<p>= Quickly Create Advanced Registration Forms for Any Use Case = <\\/p>\\n<p>Whether you need to create a youth sport team registration form, event registration form, or church retreat registration form, Formidable Forms has got you covered. Unlike other contact form plugins, Formidable Forms comes with a repeater field that allows you to create the most powerful registration forms.<\\/p>\\n<p>Then, our marketing integrations and APIs can send the contact form and registration form data anywhere you want.<\\/p>\\n<p>= Accept Credit Cards and Easily Collect Payments = <\\/p>\\n<p>By now, you probably already realize the theme that Formidable Forms is more than just a contact form plugin. You can use Formidable Forms to create payment forms and accept credit card payments right from your website.<\\/p>\\n<p>We offer seamless integration with PayPal, Stripe, and Authorize.net, so you can create order forms and purchase forms with our drag &amp; drop form builder. <\\/p>\\n<p>You can even use Formidable Forms to create WooCommerce forms with custom fields (more on that later).<\\/p>\\n<p>= Grow Your Business with Marketing Integrations =<\\/p>\\n<p>We know that marketing is the key to grow your business. That\'s why Formidable Forms allows you to connect contact forms, payment forms, and advanced forms with a marketing platform of your choice.<\\/p>\\n<p>We integrate with popular email marketing services like:<\\/p>\\n<ul>\\n<li>MailChimp<\\/li>\\n<li>AWeber<\\/li>\\n<li>Constant Contact<\\/li>\\n<li>GetResponse<\\/li>\\n<li>MailPoet<\\/li>\\n<li>Active Campaign<\\/li>\\n<li>Salesforce<\\/li>\\n<li>HubSpot<\\/li>\\n<\\/ul>\\n<p>On top of these native integrations, we also integrate with Zapier, so you can quickly route your contact form data to over 1,000+ more services with just a few clicks.<\\/p>\\n<p>= Create Data-Driven Web Applications with Formidable Views = <\\/p>\\n<p>Formidable Views are by far the most powerful feature that makes Formidable far more than just a form builder plugin. Views allow you to flexibly display any submitted form data on the front-end of your website.<\\/p>\\n<p>Our customers use Formidable Views to create data-driven web applications like real estate listings, employment listings, event calendars, business or member directories, job boards, and other searchable databases.<\\/p>\\n<p>As you can see, Formidable Forms is not your average contact form plugin. It\'s a true all-in-one WordPress form solution.<\\/p>\\n<p>= Increase Your Sales with WooCommerce Product Forms = <\\/p>\\n<p>Formidable Forms is the only WordPress form builder plugin that offers extensive integration with WooCommerce.<\\/p>\\n<p>Our goal is to empower you to build powerful WooCommerce product forms, so you can increase your store sales.<\\/p>\\n<p>You can use Formidable Forms to add a WooCommerce Product configurator with custom calculation fields, and automatically send the data to the WooCommerce cart with variable pricing options.<\\/p>\\n<p>Need your customers to upload a file when they purchase a product? No problem. Simply drag &amp; drop a file upload field into your WooCommerce form and you\'re done.<\\/p>\\n<p>You can even show submitted form values in the WooCommerce purchase receipt emails as well as trigger SMS text messages or marketing integrations when an order is completed.<\\/p>\\n<p>And of course, you can use Formidable Forms to add a simple contact form on your WooCommerce store.<\\/p>\\n<p>= Build Powerful Quiz Forms &amp; Calculators = <\\/p>\\n<p>Along with a contact form, you can also use the Formidable form builder plugin to create quiz forms and calculator forms.<\\/p>\\n<p>Here are some example web calculators you can quickly add to your site:<\\/p>\\n<ul>\\n<li>Advanced Mortgage Calculator<\\/li>\\n<li>Car Payment Calculator<\\/li>\\n<li>BMI Calculator<\\/li>\\n<li>User Age Calculator<\\/li>\\n<li>Online Quote Calculator<\\/li>\\n<li>Net Promoter Score (NPS) Survey Calculator<\\/li>\\n<\\/ul>\\n<p>... and our powerful form calculations allow you to build just about any other type of calculator form.<\\/p>\\n<p>If that wasn\'t enough, you can also use our Formidable Form builder to create quizzes on your site and display results. This is great for membership sites, LMS, or just for viral quizzes to grow your email list.<\\/p>\\n<p>Our goal is to go beyond simple contact forms and allow users to create form-based solutions without any code :)<\\/p>\\n<p>= Create WordPress User Registration Forms, Profile Forms, and More = <\\/p>\\n<p>If you run a WordPress membership site, then you need more advanced forms along with your contact form.<\\/p>\\n<p>The Formidable Form builder plugin allows you to customize your WordPress user registration forms, so you can collect additional data when the user profile is created.<\\/p>\\n<p>With our front-end form editing, you can also build custom profile forms and allow users to keep their profile updated, or even progressively add to the profile from a set of forms, from the first contact form to the last payment form.<\\/p>\\n<p>Our front-end form editing feature is unique to us, and you will not find any other WordPress contact form plugin offering such a solution with the level of extendability that we do.<\\/p>\\n<p>= Beautiful Graphs and Reports to Help You Analyze and Showcase Data = <\\/p>\\n<p>We believe that data alone does no good if you can\'t analyze it. That\'s why we make it easy for you to analyze your contact form, survey, quiz, calculator, and other form data with beautiful graphs and reports.<\\/p>\\n<p>You can even showcase form data on the front-end of your website by embedding graphs in your WordPress posts or pages.<\\/p>\\n<p>= All the Advanced Form Fields and Features You Need to Grow Your Business =<\\/p>\\n<p>Formidable Forms goes far above and beyond contact forms to offer all the advanced form fields and features you need to grow your business.<\\/p>\\n<p>This includes things like multi-page forms, save and continue forms, cascading form fields, powerful conditional logic, partial form submissions, invisible spam protection, front-end user post submission, calculators, user-tracking, and so much more.<\\/p>\\n<p>We\'re on a mission to offer an all-in-one solution-focused WordPress form plugin, so you don\'t have to install 5 plugins alongside your contact form maker plugin to do everything you want.<\\/p>\\n<p>= Extend and Customize Your Forms - Developer\'s Dream Come True =<\\/p>\\n<p>Formidable Forms is the form plugin of choice for smart developers, freelancers, and agencies because it helps them build complex form solutions and basic contact forms quickly and defy the limits imposed by time and knowledge.<\\/p>\\n<p>Our goal is to help you build complex websites with low overhead. We believe big projects don\'t always need big resources.<\\/p>\\n<p>That\'s why we made Formidable Forms the most extendable WordPress form builder plugin on the market.<\\/p>\\n<p>You can easily route your data from contact forms and advanced forms with our powerful API. Formidable Views allow you to display form data anywhere on the front-end, so you can quickly create data-driven web applications.<\\/p>\\n<p>On top of that, our hooks and filters allow you to completely extend Formidable Forms to meet your needs. We even include hundreds of code examples in our docs to give you the confidence to get started.<\\/p>\\n<p>= Full Formidable Forms Feature List =<\\/p>\\n<p>Since Formidable Forms is not your average WordPress contact form plugin, this feature list is going to be very long. Grab a cup of coffee and read through, or just install the most powerful WordPress form maker plugin, your choice :)<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/drag-drop-form-builder\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Online drag and drop form builder<\\/a>. Build everything from contact forms and email forms to calculators, registration forms, and complex online forms. Make amazing forms the easy way with a simple WordPress drag and drop form builder. No code required.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Display form data with Views<\\/a>. Other WordPress form builder plugins only let you collect data. Formidable Forms lets you format, filter, and display form submissions in custom Formidable Views on the front-end of your site. Views turn forms into solutions. Job boards, event calendars, business directories, ratings systems, and management solutions. If you can come up with it, most likely Formidable can handle it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/dynamically-add-form-fields\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Repeating field groups (repeaters)<\\/a>. Allow your users to add sets of fields to registration forms, application forms, email forms, calculator forms, and other advanced forms on the fly.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multiple-file-upload-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Drag and drop multiple file upload forms<\\/a>. Easily upload documents, files, photos, and music, with any number of files in contact forms, job application forms (resumes), WordPress User Profile Forms (avatars), registration forms, get a quote forms, and other advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Multi-step forms with progress bars<\\/a>. Want to increase conversion rates and collect more leads with smart contact forms? Create beautiful paged forms with rootline and progress indicators. Add conditional logic to page breaks for smart branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/cascading-dropdown-lookup-field\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Cascading lookup fields<\\/a>. Change values in other form fields or drill down through options to reveal a final value. Designed for country\\/state\\/city fields in contact forms and registration forms and year\\/make\\/model fields in auto forms, or to get a price from a separate product form.<\\/li>\\n<li>Datepicker fields with advanced <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/datepicker-options\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">datepicker options<\\/a> including blackout dates, dynamic minimum and maximum dates, and inline calendars. Our datepickers are great for basic online booking forms, event registration forms, and specialized contact forms.<\\/li>\\n<li>Create relationships with Dynamic fields. Populate form fields from other forms and link data between two forms without duplication. Form relationships are helpful in a huge number of cases including linking employment application forms to a job, quiz forms to a class, event registration forms to an event, sports registration forms to a team, and contact forms to a department.<\\/li>\\n<li>Add password fields with a password strength meter in WordPress user registration forms, profile forms, and change password forms.<\\/li>\\n<li>Collect reviews with star ratings in feedback forms, recipe ratings forms, product review forms, event rating forms, customer testimonial forms, and yes, even contact forms. Then display and share the ratings in Formidable Views.<\\/li>\\n<li>Add more field types with our form creator including Rich text fields, Time fields, Scale fields, Slider fields, Toggle fields, Tags fields, Address fields, and Section headings.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/confirm-email-address-password-wordpress-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Confirmation fields<\\/a>. Double check email addresses or passwords and prevent typos from cannibalizing your contact form leads.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/conditional-logic-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Conditional logic for smart forms<\\/a>. Show or hide fields in contact forms and advanced forms based on user selections or user roles. Make complex forms simple and increase form conversion rates.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/email-autoresponders-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Send email notifications &amp; autoresponders<\\/a>. Automatically let clients know you received their contact form message. Then create customized email notifications for multiple recipients and get info from a contact form or email form to those who need it.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in contact forms, email forms, payment forms, and registration forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Calculator forms<\\/a>. Create basic and complex calculations, and even combine text from multiple fields for a mortgage calculator, auto loan calculator, or many other calculator forms. Even a contact form could benefit from calculations for easy quotes and price estimates.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Visual form style creator<\\/a>. Our form creator for contact forms, calculators, and other online forms not only allows you to build forms, but also create branded forms that match your site. Change colors, borders, padding and much more without any code.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/flexible-layouts-responsive-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Flexible form layout design<\\/a>. Build mobile responsive contact forms and advanced form layouts with multiple fields in a row by using our CSS layout classes.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-mobile-friendly-responsive-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Mobile-friendly, responsive forms<\\/a>. All of our forms are sized automatically for every screen size. Ensure that everyone can see and submit your contact forms and other online forms from any device.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">User submitted front-end posts and pages<\\/a>. Create and edit WordPress posts, pages, and even custom post types from your front-end online forms. Send user-generated content quickly from a post creation form to a page.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/form-entry-management-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Simple entry management<\\/a>. Flexibly and powerfully display, edit, and delete form entries from anywhere on your site, and specify who has permission to do so. Your logged-in users can fully manage their personal journal entries, weight tracking, guest blog posts, RSVP status, and whatever else you need, far and above just contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WordPress front-end editing<\\/a>. Allow users to edit their form entries and posts from the front-end of your site. Create an online journaling platform, member directory, classified ads, community recipes, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Save and continue partial form submissions<\\/a>. Logged-in users can save form progress and return later. Whether it\'s a contact form or a long multi-paged form, users can pick up right where they left off.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Graphs and charts for data visualization<\\/a>. Display statistics from surveys, polls, quiz forms, questionnaires, and advanced forms. Or graph the data in a variety of ways that automatically update as new form data is submitted (great for weight tracking over time).<\\/li>\\n<li>Form permission settings. Limit visibility of specialized contact forms and advanced forms based on user role.<\\/li>\\n<li>Form entry limits. Limit a contact form, registration form, survey, quiz, or directory submissions to only allow one entry per user, IP, or cookie.<\\/li>\\n<li>Form scheduling. Open and close event registration forms and signup forms on a specific date. Or close registration forms when the seat limit or team size has been reached. Want a contact form for questions about a planned event that auto closes when the event starts? No problem.<\\/li>\\n<li>Conditionally redirect to a custom page after a contact form, custom search form, quiz form, calculator form, payment form, support ticket form, or other online form is submitted. Help clients get the answers they are looking for, or show a tailored result based on their form selections.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/customize-form-html-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Customize form HTML<\\/a>. We believe that not only contact forms, but also advanced forms should be extendable to meet your needs. So we give you access to change the form HTML (like Contact Form 7), but still keep the ease and speed of a drag &amp; drop form builder plugin. Our team labors for simplicity without sacrificing flexibility.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Import and export forms, form submissions, styles, and views<\\/a>. Quickly move forms, entries, views and styles on another site. Need to export leads from a contact form to another service? Check.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Form templates for instant form building<\\/a>. Get started quickly with the most advanced form creator that includes form templates, style templates, and Formidable View templates. Our WordPress form generator makes it FAST to build contact forms, job application forms, and other online forms.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">pre-built form\\/view templates<\\/a> as a shortcut to a final product. Our growing form template library includes contact forms, payment forms, calculators, a WooCommerce product creator, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wcag-accessible-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WCAG accessible forms with A11Y compliance<\\/a>. Don\'t alienate your audience. Ensure your contact forms, surveys, quiz forms, lead capture forms, and other online forms are compliant and available to anyone.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/invisible-spam-protection\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Invisible SPAM protection<\\/a>. Don\'t waste time sorting through SPAM from your contact form. Get instant and powerful anti-spam features from honeypot, invisible reCAPTCHA, Akismet, and the WordPress comment blacklist.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Fill out forms automatically<\\/a> with values from the user profile or posts (i.e. custom fields). When a user is logged in, prefill the fields you know like first name, last name, and email address in a contact form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">White label form builder<\\/a>. Replace the Formidable Forms branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free contact forms and online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WordPress user registration forms<\\/a>. Register users, edit profiles, reset passwords, and add a login form. When using WordPress multisite forms, you can even allow your logged in or logged out users to create new subdomains.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Digital signature forms<\\/a>. Eliminate paper forms with a digital signature field in your contact forms, application forms, registration forms, or advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Form action automation<\\/a>. Schedule email notifications, SMS messages, and API actions to trigger at a later time. You can automatically delete guest posts after 30 days, send weekly digest emails, trigger happy birthday text messages from a contact form or lead form and much more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Formidable Forms API<\\/a>. Send form entries to other REST APIs. This includes the option to send form entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/quiz-maker\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Quiz maker forms<\\/a>. Write your quiz questions in a quiz form, submit an entry as the quiz key, and publish the quiz on a page. Then all the quiz form grading is automatically done for you.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">World class support<\\/a>. Have questions or need guidance on how to use our contact form builder or set up your web application? We are happy to help. Our passion with Formidable Forms is to help you <strong>defy the limits<\\/strong> so you can take on bigger projects, earn more clients, and grow your business.<\\/li>\\n<\\/ul>\\n<p>= Payment Forms, Form APIs, and Marketing Integrations =\\nIn addition to all the form builder features listed above, power up contact forms, registration forms, and calculator forms with these API integrations.<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">PayPal Payment Forms<\\/a>. Automate your business by collecting instant payments and recurring payments from clients. Collect information, calculate a total, and send clients to PayPal from your payment forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Stripe Payment Forms<\\/a>. Keep users on your site while collecting payments from a credit card form. Select from one time and recurring charges in order forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Authorize.net AIM Payment Forms<\\/a>. Accept one-time payments in order forms directly on your site using Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/woocommerce\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WooCommerce product configurator<\\/a>. Add custom fields to a WooCommerce product form and collect extra data when a product is added to the cart. Use form calculations for variable pricing, upload a file with the purchase, and send custom emails when a purchase is completed.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">MailChimp Forms<\\/a>. Add and update leads in a MailChimp email marketing list from lead forms, contact forms, order forms, and email forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/constant-contact\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Constant Contact Forms<\\/a>. Create leads automatically in Constant Contact with newsletter signup forms and contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/getresponse-wordpress-plugin\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">GetResponse Forms<\\/a>. Collect leads in contact forms, add them to GetResponse, then trigger GetResponse marketing automations.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">AWeber Forms<\\/a>. Subscribe users to an AWeber mailing list when a newsletter signup form or contact form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailpoet-newsletters\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">MailPoet Newsletter forms<\\/a>. Fill your email marketing lists from newsletter signup forms and contact forms. Then send WordPress newsletters from your own site using MailPoet.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Highrise Forms<\\/a>. Add leads to your Highrise CRM account any time a contact form, registration form, or payment form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your contact page and advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/activecampaign-wordpress-plugin\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">ActiveCampaign Forms<\\/a>. Let your contact form pull double duty as a payment form, post creation form, user registration form, and an ActiveCampaign integration.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/hubspot-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">HubSpot Forms<\\/a>. Route contact form and lead form data to HubSpot CRM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Twilio for SMS Forms<\\/a>. Collect votes and poll responses via SMS text or send SMS notifications when form entries are submitted or updated. Get notified instantly when an important contact form or payment form is completed.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WPML Forms<\\/a>. Translate contact forms, registration forms, and advanced forms into multiple languages using our integrated multilingual forms plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Polylang Forms<\\/a>. Get the form creator with Polylang bilingual or multilingual contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form. With Zapier, you have the option to trigger thousands of other actions from a contact form, lead form, quote form, quiz form, or any other advanced online form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap form styling to contact forms, registration forms, surveys, and advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Bootstrap Modal Form<\\/a>. Open contact forms, login forms, Formidable views, other shortcodes, and sections of content in a Bootstrap modal popup.<\\/li>\\n<\\/ul>\\n<p>After reading this feature list, you can probably imagine why Formidable Forms is the most advanced WordPress form plugin on the market, designed for far more than just contact forms.<\\/p>\\n<p>Give Formidable Forms a try.<\\/p>\\n<p>Want to unlock the full power? <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Upgrade to our Pro version<\\/a> to get all the features for smart contact forms and full web applications.<\\/p>\\n<p>= Form Plugin Credits =\\nThis form builder plugin is created by Steve and Steph Wells along with our amazing Formidable Forms Team.<\\/p>\\n<p>Formidable Forms is now part of the <a href=\\\"https:\\/\\/www.wpbeginner.com\\/\\\">WPBeginner<\\/a> accelerator, and <a href=\\\"https:\\/\\/syedbalkhi.com\\/\\\">Syed Balkhi<\\/a> is an Advisor in our company.<\\/p>\"],\"changelog\":[\"<p><h4>v3.04.02 - November 5, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add the option to download addons from the Formidable -&gt; Addons page when the Pro version is activated with a current license<\\/li>\\n<li>Fix issue with double field ids on some advanced shortcodes<\\/li>\\n<li>Fix php warnings on new view page<\\/li>\\n<\\/ul>\\n<h4>v3.04.01 - October 15, 2018<\\/h4>\\r\\n<ul>\\n<li>Fix: Allow field settings to open when included inside a section<\\/li>\\n<li>Fix: Clean up long file tiles in the file uploader<\\/li>\\n<li>Update translations<\\/li>\\n<li>Move instructions in the Advanced tab on the form settings sidebar from free to pro<\\/li>\\n<\\/ul>\\n<h4>v3.04 - October 11, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add option to schedule a form to open and close on a specific date or close after a specified number of entries<\\/li>\\n<li>New: Move the drop file message into the field settings<\\/li>\\n<li>New: Restyle the file upload UI<\\/li>\\n<li>Update Dropzone script to v5.5<\\/li>\\n<li>Fix: Reduce cases that trigger admin warning for inaccurate calculations<\\/li>\\n<\\/ul>\\n<h4>v3.03.03 - September 26, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Add support for RTL progress bars<\\/li>\\n<li>Fix: Properly compare dates and times through a dynamic field. Allow [if x show=y greater_than=NOW] when y is a date field.<\\/li>\\n<li>Fix: Allow default values to be set in a checkbox\\/multiselect field when the value includes a comma-separated list with spaces<\\/li>\\n<li>Fix: Getting an attachment id from a url was sometimes failing<\\/li>\\n<li>Fix: If a form is limited to one entry per user, including the entry_id=x in the form shortcode was being ignored and returning the current user\'s entry<\\/li>\\n<li>Fix: Improve the backend search for user id fields. When a user ID field is selected for the backend search, check the user login, email, display name, and nice name.<\\/li>\\n<li>Fix: Improve the appearance of long progress bars on small screens and those with titles of varying lengths<\\/li>\\n<li>Fix: Correctly pass the $atts in the pagination filters<\\/li>\\n<li>Fix: When a time or date field is watching a lookup field, give them the values in the correct format for that field<\\/li>\\n<\\/ul>\\n<h4>v3.03.02 - September 12, 2018<\\/h4>\\r\\n<ul>\\n<li>New: Allow view ordering by entry key since this is faster than ordering by a field value.<\\/li>\\n<li>Tweak: If no value in the field used for a calculation, show nothing instead of 0.<\\/li>\\n<li>Tweak: Add lookup_field to array included in frm_filtered_lookup_options hook<\\/li>\\n<li>Fix: Dates weren\'t validating correctly with end year \'1\' instead of \'+1\'<\\/li>\\n<li>Fix: A combination of default values and conditional logic for Other fields was a causing javascript error. Now if an other field has a default value and conditional logic, the default value it correctly set when the field is displayed.<\\/li>\\n<li>Fix: Javascript errors were appearing with some date code customizations.<\\/li>\\n<li>Fix: Hide the first remove button in a repeater when the form styling is off.<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"],\"installation\":[\"<ol>\\n<li>Go to the Plugins -&gt; \'Add New\' page in your WP admin area<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to go to the form generator page and create a new contact form, email form, registration form, or advanced form<\\/li>\\n<li>Insert your newly created contact form, quiz, survey, registration form, or advanced form on a Contact Us page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> to add a contact form in a contact page template<\\/li>\\n<\\/ol>\"]}\";}','no'),(6866,'widget_divi_blog_extras','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(16222,'52537b35f982055ad845266a492e637d','a:2:{s:7:\"timeout\";i:1562072613;s:5:\"value\";s:83177:\"{\"new_version\":\"4.01.01\",\"stable_version\":\"4.01.01\",\"name\":\"Formidable Pro\",\"slug\":\"formidable-pro\",\"url\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro\\/?changelog=1\",\"last_updated\":\"2019-06-28 09:00:14\",\"homepage\":\"https:\\/\\/formidableforms.com\\/\",\"package\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTU2MjEzMDIxMzpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDpkYjk3ZDQ2MzU2YzI2NjdhNDQ3OTgxMWFhOWZkMTI5YzpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"download_link\":\"https:\\/\\/formidableforms.com\\/edd-sl\\/package_download\\/MTU2MjEzMDIxMzpFTjhTSC1JQ0JKSS1DUTlVVS1MVDdGUTo5Mzc5MDpkYjk3ZDQ2MzU2YzI2NjdhNDQ3OTgxMWFhOWZkMTI5YzpodHRwc0AvL3d3dy5zdGFkc2lnLmNvLnphOjA=\",\"sections\":{\"description\":\"<p>= The Most Powerful WordPress form builder plugin on the market =\\nWe built <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Formidable Forms<\\/a> to offer the &quot;first-ever&quot; solutions-focused WordPress form plugin on the market. You can use our drag &amp; drop WordPress form builder plugin to create contact forms, surveys, quiz forms, registration forms, payment forms, purchase forms, email marketing forms, and just about any other form you can imagine.<\\/p>\\n<p>At Formidable Forms, creating the most extendable form builder plugin is our #1 priority, so you save time when building even the most advanced forms. Unlike other WordPress form maker plugins that focus solely on building contact forms, we believe in allowing our users to push the limits and create complex forms quickly!<\\/p>\\n<p>Before we take a deep-dive into the features of the powerful Formidable form builder plugin, you should know that Formidable Forms is 100% mobile responsive so your contact forms and all other types of forms will always look great on all devices (desktop, laptop, tablets, and smartphones).<\\/p>\\n<p>On top of that, we have optimized Formidable contact forms and advanced forms for speed and maximum server performance. Whether you use Formidable Forms to build a contact form on your own site or an advanced form for your client, you can confidently say that it\'s one of the FASTEST WordPress form builders on the market.<\\/p>\\n<blockquote>\\n<p><strong>Formidable Forms Pro<\\/strong><br \\/>\\nThis form builder plugin is the lite version of the Formidable Forms Pro plugin that comes with all the contact form and advanced form features you will ever need. Our premium form features include repeater fields, email subscription forms, multi-page contact forms, file upload forms, smart forms with conditional logic, payment integrations, form templates, form relationships, cascading dropdown fields, front-end form editing, powerful Formidable Views to display data in web applications, and far more than just contact forms. <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\" rel=\\\"friend\\\" title=\\\"Formidable Forms\\\">Click here to purchase the most advanced premium WordPress form builder plugin now!<\\/a><\\/p>\\n<\\/blockquote>\\n<p>You can start with our pre-built contact form template or create totally custom forms from scratch all with an easy-to-use drag &amp; drop form builder interface. <\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8&amp;rel=0\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8&amp;rel=0<\\/a><\\/p>\\n<p>Let\'s take a look at all the powerful form builder features that you get with Formidable Forms for making amazing contact forms, lead forms, subscription forms, request a quote forms, donation forms, payment order forms and more.<\\/p>\\n<p>= Drag &amp; Drop Contact Form Maker and Advanced Form Builder =<\\/p>\\n<p>The Formidable Forms drag &amp; drop form builder allows you to quickly create unlimited contact forms, surveys, quizzes, registration forms, and just about any other type of form that you want.<\\/p>\\n<p>Our form builder plugin comes with all the powerful form fields that you need to create a solution-focused form, fast!<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<\\/ul>\\n<p>= Complete Entry Management for Contact Forms and Surveys =<\\/p>\\n<p>Formidable Forms allows you to view all your contact form and survey entries right from your WordPress dashboard.<\\/p>\\n<p>Once a user submits a contact form, their response is automatically stored in your WordPress database. <\\/p>\\n<p>Formidable Forms is <strong>100% GDPR-friendly<\\/strong>. You can turn off IP tracking or stop saving contact form submissions entirely. Alternatively, you can add a GDPR checkbox field to your contact forms and payment forms to collect consent.<\\/p>\\n<p>Need to import your contact form leads to another service like MailChimp? No problem. <strong>Export contact form leads to a CSV<\\/strong>, open it in Excel, and import anywhere.<\\/p>\\n<p>You can also configure unlimited form email notifications and autoresponders triggered by contact form submissions. <\\/p>\\n<p>On top of that, you can easily customize the contact form success message the user sees after they submit the form, or redirect them to another page for your more advanced form needs.<\\/p>\\n<p>= The Only Form Maker Plugin with an Advanced Form Styler =<\\/p>\\n<p>With our built-in form styler, you can instantly customize the look and feel of your contact forms. With just a few clicks, your contact form, email form, and advanced forms can be transformed to match your website design.<\\/p>\\n<p>By default, Formidable Forms applies a single styling template to all Formidable contact forms and advanced forms on your site. But if you want a custom form style for each individual contact form, sidebar form, and registration form, you can upgrade to Formidable Forms Pro.<\\/p>\\n<p>= Build Smart Surveys with Beautiful Reports = <\\/p>\\n<p>Aside from simple contact forms, Formidable Forms comes with a built-in survey feature, so you can quickly create powerful surveys and see beautiful reports.<\\/p>\\n<p>The best part is that you can do this all within Formidable Forms without any third-party tools.<\\/p>\\n<p>= Quickly Create Advanced Registration Forms for Any Use Case = <\\/p>\\n<p>Whether you need to create a youth sport team registration form, event registration form, or church retreat registration form, Formidable Forms has got you covered. Unlike other contact form plugins, Formidable Forms comes with a repeater field that allows you to create the most powerful registration forms.<\\/p>\\n<p>Then, our marketing integrations and APIs can send the contact form and registration form data anywhere you want.<\\/p>\\n<p>= Accept Credit Cards and Easily Collect Payments = <\\/p>\\n<p>By now, you probably already realize the theme that Formidable Forms is more than just a contact form plugin. You can use Formidable Forms to create payment forms and accept credit card payments right from your website.<\\/p>\\n<p>We offer seamless integration with PayPal, Stripe, and Authorize.net, so you can create order forms and purchase forms with our drag &amp; drop form builder. <\\/p>\\n<p>You can even use Formidable Forms to create WooCommerce forms with custom fields (more on that later).<\\/p>\\n<p>= Grow Your Business with Marketing Integrations =<\\/p>\\n<p>We know that marketing is the key to grow your business. That\'s why Formidable Forms allows you to connect contact forms, payment forms, and advanced forms with a marketing platform of your choice.<\\/p>\\n<p>We integrate with popular email marketing services like:<\\/p>\\n<ul>\\n<li>MailChimp<\\/li>\\n<li>AWeber<\\/li>\\n<li>Constant Contact<\\/li>\\n<li>GetResponse<\\/li>\\n<li>MailPoet<\\/li>\\n<li>Active Campaign<\\/li>\\n<li>Salesforce<\\/li>\\n<li>HubSpot<\\/li>\\n<\\/ul>\\n<p>On top of these native integrations, we also integrate with Zapier, so you can quickly route your contact form data to over 1,000+ more services with just a few clicks.<\\/p>\\n<p>= Create Data-Driven Web Applications with Formidable Views = <\\/p>\\n<p>Formidable Views are by far the most powerful feature that makes Formidable far more than just a form builder plugin. Views allow you to flexibly display any submitted form data on the front-end of your website.<\\/p>\\n<p>Our customers use Formidable Views to create data-driven web applications like real estate listings, employment listings, event calendars, business or member directories, job boards, and other searchable databases.<\\/p>\\n<p>As you can see, Formidable Forms is not your average contact form plugin. It\'s a true all-in-one WordPress form solution.<\\/p>\\n<p>= Increase Your Sales with WooCommerce Product Forms = <\\/p>\\n<p>Formidable Forms is the only WordPress form builder plugin that offers extensive integration with WooCommerce.<\\/p>\\n<p>Our goal is to empower you to build powerful WooCommerce product forms, so you can increase your store sales.<\\/p>\\n<p>You can use Formidable Forms to add a WooCommerce Product configurator with custom calculation fields, and automatically send the data to the WooCommerce cart with variable pricing options.<\\/p>\\n<p>Need your customers to upload a file when they purchase a product? No problem. Simply drag &amp; drop a file upload field into your WooCommerce form and you\'re done.<\\/p>\\n<p>You can even show submitted form values in the WooCommerce purchase receipt emails as well as trigger SMS text messages or marketing integrations when an order is completed.<\\/p>\\n<p>And of course, you can use Formidable Forms to add a simple contact form on your WooCommerce store.<\\/p>\\n<p>= Build Powerful Quiz Forms &amp; Calculators = <\\/p>\\n<p>Along with a contact form, you can also use the Formidable form builder plugin to create quiz forms and calculator forms.<\\/p>\\n<p>Here are some example web calculators you can quickly add to your site:<\\/p>\\n<ul>\\n<li>Advanced Mortgage Calculator<\\/li>\\n<li>Car Payment Calculator<\\/li>\\n<li>BMI Calculator<\\/li>\\n<li>User Age Calculator<\\/li>\\n<li>Online Quote Calculator<\\/li>\\n<li>Net Promoter Score (NPS) Survey Calculator<\\/li>\\n<\\/ul>\\n<p>... and our powerful form calculations allow you to build just about any other type of calculator form.<\\/p>\\n<p>If that wasn\'t enough, you can also use our Formidable Form builder to create quizzes on your site and display results. This is great for membership sites, LMS, or just for viral quizzes to grow your email list.<\\/p>\\n<p>Our goal is to go beyond simple contact forms and allow users to create form-based solutions without any code :)<\\/p>\\n<p>= Create WordPress User Registration Forms, Profile Forms, and More = <\\/p>\\n<p>If you run a WordPress membership site, then you need more advanced forms along with your contact form.<\\/p>\\n<p>The Formidable Form builder plugin allows you to customize your WordPress user registration forms, so you can collect additional data when the user profile is created.<\\/p>\\n<p>With our front-end form editing, you can also build custom profile forms and allow users to keep their profile updated, or even progressively add to the profile from a set of forms, from the first contact form to the last payment form.<\\/p>\\n<p>Our front-end form editing feature is unique to us, and you will not find any other WordPress contact form plugin offering such a solution with the level of extendability that we do.<\\/p>\\n<p>= Beautiful Graphs and Reports to Help You Analyze and Showcase Data = <\\/p>\\n<p>We believe that data alone does no good if you can\'t analyze it. That\'s why we make it easy for you to analyze your contact form, survey, quiz, calculator, and other form data with beautiful graphs and reports.<\\/p>\\n<p>You can even showcase form data on the front-end of your website by embedding graphs in your WordPress posts or pages.<\\/p>\\n<p>= All the Advanced Form Fields and Features You Need to Grow Your Business =<\\/p>\\n<p>Formidable Forms goes far above and beyond contact forms to offer all the advanced form fields and features you need to grow your business.<\\/p>\\n<p>This includes things like multi-page forms, save and continue forms, cascading form fields, powerful conditional logic, partial form submissions, invisible spam protection, front-end user post submission, calculators, user-tracking, and so much more.<\\/p>\\n<p>We\'re on a mission to offer an all-in-one solution-focused WordPress form plugin, so you don\'t have to install 5 plugins alongside your contact form maker plugin to do everything you want.<\\/p>\\n<p>= Extend and Customize Your Forms - Developer\'s Dream Come True =<\\/p>\\n<p>Formidable Forms is the form plugin of choice for smart developers, freelancers, and agencies because it helps them build complex form solutions and basic contact forms quickly and defy the limits imposed by time and knowledge.<\\/p>\\n<p>Our goal is to help you build complex websites with low overhead. We believe big projects don\'t always need big resources.<\\/p>\\n<p>That\'s why we made Formidable Forms the most extendable WordPress form builder plugin on the market.<\\/p>\\n<p>You can easily route your data from contact forms and advanced forms with our powerful API. Formidable Views allow you to display form data anywhere on the front-end, so you can quickly create data-driven web applications.<\\/p>\\n<p>On top of that, our hooks and filters allow you to completely extend Formidable Forms to meet your needs. We even include hundreds of code examples in our docs to give you the confidence to get started.<\\/p>\\n<p>= Full Formidable Forms Feature List =<\\/p>\\n<p>Since Formidable Forms is not your average WordPress contact form plugin, this feature list is going to be very long. Grab a cup of coffee and read through, or just install the most powerful WordPress form maker plugin, your choice :)<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/drag-drop-form-builder\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Online drag and drop form builder<\\/a>. Build everything from contact forms and email forms to calculators, registration forms, and complex online forms. Make amazing forms the easy way with a simple WordPress drag and drop form builder. No code required.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Display form data with Views<\\/a>. Other WordPress form builder plugins only let you collect data. Formidable Forms lets you format, filter, and display form submissions in custom Formidable Views on the front-end of your site. Views turn forms into solutions. Job boards, event calendars, business directories, ratings systems, and management solutions. If you can come up with it, most likely Formidable can handle it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/dynamically-add-form-fields\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Repeating field groups (repeaters)<\\/a>. Allow your users to add sets of fields to registration forms, application forms, email forms, calculator forms, and other advanced forms on the fly.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multiple-file-upload-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Drag and drop multiple file upload forms<\\/a>. Easily upload documents, files, photos, and music, with any number of files in contact forms, job application forms (resumes), WordPress User Profile Forms (avatars), registration forms, get a quote forms, and other advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Multi-step forms with progress bars<\\/a>. Want to increase conversion rates and collect more leads with smart contact forms? Create beautiful paged forms with rootline and progress indicators. Add conditional logic to page breaks for smart branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/cascading-dropdown-lookup-field\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Cascading lookup fields<\\/a>. Change values in other form fields or drill down through options to reveal a final value. Designed for country\\/state\\/city fields in contact forms and registration forms and year\\/make\\/model fields in auto forms, or to get a price from a separate product form.<\\/li>\\n<li>Datepicker fields with advanced <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/datepicker-options\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">datepicker options<\\/a> including blackout dates, dynamic minimum and maximum dates, and inline calendars. Our datepickers are great for basic online booking forms, event registration forms, and specialized contact forms.<\\/li>\\n<li>Create relationships with Dynamic fields. Populate form fields from other forms and link data between two forms without duplication. Form relationships are helpful in a huge number of cases including linking employment application forms to a job, quiz forms to a class, event registration forms to an event, sports registration forms to a team, and contact forms to a department.<\\/li>\\n<li>Add password fields with a password strength meter in WordPress user registration forms, profile forms, and change password forms.<\\/li>\\n<li>Collect reviews with star ratings in feedback forms, recipe ratings forms, product review forms, event rating forms, customer testimonial forms, and yes, even contact forms. Then display and share the ratings in Formidable Views.<\\/li>\\n<li>Add more field types with our form creator including Rich text fields, Time fields, Scale fields, Slider fields, Toggle fields, Tags fields, Address fields, and Section headings.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/confirm-email-address-password-wordpress-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Confirmation fields<\\/a>. Double check email addresses or passwords and prevent typos from cannibalizing your contact form leads.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/conditional-logic-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Conditional logic for smart forms<\\/a>. Show or hide fields in contact forms and advanced forms based on user selections or user roles. Make complex forms simple and increase form conversion rates.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/email-autoresponders-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Send email notifications &amp; autoresponders<\\/a>. Automatically let clients know you received their contact form message. Then create customized email notifications for multiple recipients and get info from a contact form or email form to those who need it.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in contact forms, email forms, payment forms, and registration forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Calculator forms<\\/a>. Create basic and complex calculations, and even combine text from multiple fields for a mortgage calculator, auto loan calculator, or many other calculator forms. Even a contact form could benefit from calculations for easy quotes and price estimates.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Visual form style creator<\\/a>. Our form creator for contact forms, calculators, and other online forms not only allows you to build forms, but also create branded forms that match your site. Change colors, borders, padding and much more without any code.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/flexible-layouts-responsive-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Flexible form layout design<\\/a>. Build mobile responsive contact forms and advanced form layouts with multiple fields in a row by using our CSS layout classes.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-mobile-friendly-responsive-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Mobile-friendly, responsive forms<\\/a>. All of our forms are sized automatically for every screen size. Ensure that everyone can see and submit your contact forms and other online forms from any device.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">User submitted front-end posts and pages<\\/a>. Create and edit WordPress posts, pages, and even custom post types from your front-end online forms. Send user-generated content quickly from a post creation form to a page.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/form-entry-management-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Simple entry management<\\/a>. Flexibly and powerfully display, edit, and delete form entries from anywhere on your site, and specify who has permission to do so. Your logged-in users can fully manage their personal journal entries, weight tracking, guest blog posts, RSVP status, and whatever else you need, far and above just contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WordPress front-end editing<\\/a>. Allow users to edit their form entries and posts from the front-end of your site. Create an online journaling platform, member directory, classified ads, community recipes, and more.<\\/li>\\n<li>Logged-in users can <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">save and continue partial form submissions<\\/a>. Whether it\'s a contact form or a long multi-paged form, users can save form progress and pick up right where they left off.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Graphs and charts for data visualization<\\/a>. Display statistics from surveys, polls, quiz forms, questionnaires, and advanced forms. Or graph the data in a variety of ways that automatically update as new form data is submitted (great for weight tracking over time).<\\/li>\\n<li>Form permission settings. Limit visibility of specialized contact forms and advanced forms based on user role.<\\/li>\\n<li>Form entry limits. Limit a contact form, registration form, survey, quiz, or directory submissions to only allow one entry per user, IP, or cookie.<\\/li>\\n<li>Form scheduling. Open and close event registration forms and signup forms on a specific date. Or close registration forms when the seat limit or team size has been reached. Want a contact form for questions about a planned event that auto closes when the event starts? No problem.<\\/li>\\n<li>Conditionally redirect to a custom page after a contact form, custom search form, quiz form, calculator form, payment form, support ticket form, or other online form is submitted. Help clients get the answers they are looking for, or show a tailored result based on their form selections.<\\/li>\\n<li>We believe that not only contact forms, but also advanced forms should be extendable to meet your needs. So we give you access to <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/customize-form-html-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">customize the form HTML<\\/a> (like Contact Form 7), but still keep the ease and speed of a drag &amp; drop form builder plugin. Our team labors for simplicity without sacrificing flexibility.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Import and export forms, form submissions, styles, and views<\\/a>. Quickly move forms, entries, views and styles to another site. Need to export leads from a contact form to another service? Check.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Form templates for instant form building<\\/a>. Get started quickly with the most advanced form creator that includes form templates, style templates, and Formidable View templates. Our WordPress form generator makes it FAST to build contact forms, job application forms, and other online forms.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">pre-built form\\/view templates<\\/a> as a shortcut to a final product. Our growing form template library includes contact forms, payment forms, calculators, a WooCommerce product creator, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wcag-accessible-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WCAG accessible forms with A11Y and ADA compliance<\\/a>. Don\'t alienate your audience. Ensure your contact forms, surveys, quiz forms, lead capture forms, and other online forms are compliant and available to anyone. Allow those using screenreaders to successfully use and submit not only your contact forms, but also the advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/invisible-spam-protection\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Invisible SPAM protection<\\/a>. Don\'t waste time sorting through SPAM from your contact form. Get instant and powerful anti-spam features from honeypot, invisible reCAPTCHA, Akismet, and the WordPress comment blacklist.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Fill out forms automatically<\\/a> with values from the user profile or posts (i.e. custom fields). When a user is logged in, prefill known values like first name, last name, and email address in a contact form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">White label form builder<\\/a>. Replace the Formidable Forms branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free contact forms or online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WordPress user registration forms<\\/a>. Register WordPress users, edit profiles, reset passwords, and add a login form. When using WordPress multisite forms, you can even allow logged in and logged out users to create new subdomains.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Digital signature forms<\\/a>. Eliminate paper forms with a digital signature field in contact forms, application forms, registration forms, or advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Form action automation<\\/a>. Schedule form email notifications, SMS messages, and webhooks to trigger at a later time. You can automatically delete guest posts after 30 days, send weekly digest emails, trigger happy birthday text messages from a contact form or lead form and much more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Formidable Forms API<\\/a>. Send form entries to other REST APIs and add a set of form webhooks. This includes the option to send form entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/quiz-maker\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Quiz maker forms<\\/a>. Write your quiz form questions, submit an entry as the quiz key, and publish the quiz on a page. Then all the quiz form grading is automatically done for you.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">World class support<\\/a>. Have questions or need guidance on how to use our contact form builder or set up your web application? We are happy to help. Our passion with Formidable Forms is to help you <strong>defy the limits<\\/strong> so you can take on bigger projects, earn more clients, and grow your business.<\\/li>\\n<\\/ul>\\n<p>= Payment Forms, Form APIs, and Marketing Integrations =\\nIn addition to all the form builder features listed above, power up contact forms, registration forms, and calculator forms with these integrations.<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">PayPal Payment Forms<\\/a>. Automate your business by collecting instant payments and recurring payments from clients. Collect information, calculate a total, and send clients to PayPal from your payment forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Stripe Payment Forms<\\/a>. Keep users on your site while collecting payments from a credit card form. Select from one time and recurring charges in order forms, donation forms, and contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Authorize.net AIM Payment Forms<\\/a>. Process one-time payments in order forms, registration forms, and calculator forms with Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/woocommerce\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WooCommerce product configurator<\\/a>. Add custom fields to a WooCommerce product form and collect extra data when a product is added to the cart. Use form calculations for variable pricing, upload a file with the purchase, and send custom emails when a purchase is completed.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">MailChimp Forms<\\/a>. Add and update leads in a MailChimp email marketing list from lead forms, contact forms, order forms, and email forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/constant-contact\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Constant Contact Forms<\\/a>. Create leads automatically in Constant Contact with newsletter signup forms and contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/getresponse-wordpress-plugin\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">GetResponse Forms<\\/a>. Collect leads in contact forms, add them to GetResponse, and trigger GetResponse marketing automations.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">AWeber Forms<\\/a>. Subscribe users to an AWeber mailing list when a newsletter signup form or contact form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailpoet-newsletters\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">MailPoet Newsletter forms<\\/a>. Fill your email marketing lists from newsletter signup forms and contact forms. Then send WordPress newsletters from your own site using MailPoet.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Highrise Forms<\\/a>. Add leads to your Highrise CRM account any time a WordPress contact form, registration form, or payment form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your contact page and advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/activecampaign-wordpress-plugin\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">ActiveCampaign Forms<\\/a>. Let your contact form pull double duty as a payment form, post creation form, user registration form, and an ActiveCampaign integration.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/hubspot-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">HubSpot Forms<\\/a>. Route contact form and lead form data from your WordPress forms to HubSpot CRM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Twilio for SMS Forms<\\/a>. Collect votes and poll responses via SMS text or send SMS notifications when form entries are submitted. Get notified instantly when an important contact form or payment form is completed, and let your form leads know you received their message.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WPML Forms<\\/a>. Translate contact forms, registration forms, and advanced forms into multiple languages using our integrated multilingual forms plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Polylang Forms<\\/a>. Get the form creator with Polylang bilingual or multilingual contact forms. Use the form builder to make your form, then translate it without duplicate forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or upload a Dropbox file from a contact form, calculator form, payment form, and more. With Zapier, you have the option to trigger thousands of actions from a lead form, quote form, quiz form, and other online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap form styling to contact forms, registration forms, survey forms, and advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Bootstrap Modal Form<\\/a>. Open contact forms, login forms, Formidable views, shortcodes, and other content in a Bootstrap modal popup.<\\/li>\\n<\\/ul>\\n<p>After reading this feature list, you can probably imagine why Formidable Forms is the most advanced WordPress form plugin on the market, designed for far more than just contact forms.<\\/p>\\n<p>Give Formidable Forms a try.<\\/p>\\n<p>Want to unlock the full power? <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Upgrade to our Pro forms<\\/a> to get all the features for smart contact forms and full web applications.<\\/p>\\n<p>= Form Plugin Credits =\\nThis form builder plugin is created by Steve and Steph Wells and the amazing Formidable Forms Team.<\\/p>\\n<p>Formidable Forms is part of the <a href=\\\"https:\\/\\/www.wpbeginner.com\\/\\\">WPBeginner<\\/a> accelerator with <a href=\\\"https:\\/\\/syedbalkhi.com\\/\\\">Syed Balkhi<\\/a> as an Advisor to our company.<\\/p>\",\"changelog\":\"<p><h4>v4.01.01 - June 28, 2019<\\/h4>\\r\\n<ul>\\n<li>Use svg for admin menu white label icon<\\/li>\\n<li>Fix: Include form styles on every page of an ajax form when styling is loaded only on applicable pages.<\\/li>\\n<li>Fix: Correctly show &lt; when includes in field values in a view.<\\/li>\\n<li>Fix: Some forms with a combination of lookups and upload fields were showing a disabled submit button when editing on the back-end.<\\/li>\\n<\\/ul>\\n<h4>v4.01 - June 27, 2019<\\/h4>\\r\\n<ul>\\n<li>New: Remove any row in a repeater.<\\/li>\\n<li>New: If a dependent lookup field is required but has no options, don\'t require it.<\\/li>\\n<li>Tweak: Show the thumbnail image on the Show entry page instead of full sized image.<\\/li>\\n<li>Tweak: When a license is active, keep the license key box empty instead of showing dots to prevent confusion.<\\/li>\\n<li>Tweak: If a number field is empty, don\'t show a 0 for the value in emails and views.<\\/li>\\n<li>Fix: Some dynamic fields with a placeholder were showing \'Array\' for the placeholder.<\\/li>\\n<li>Fix: reCaptcha fields were missing the visibility option in the field settings.<\\/li>\\n<\\/ul>\\n<h4>v4.0.04 - June 10, 2019<\\/h4>\\r\\n<ul>\\n<li>New: When creating a new view, auto select the form.<\\/li>\\n<li>Fix: Password fields used to show on the Show entry page pre 4.0. Add them back.<\\/li>\\n<li>Fix: The field list in the View builder didn\'t allow scrolling all the way to the bottom in forms with a lot of fields.<\\/li>\\n<li>Fix: Field options in radio, checkbox, and select fields that include an &amp; will now show the correct value by default. They will also work much better with conditional logic.<\\/li>\\n<li>Fix: Searching and filtering views by a value that includes &amp; has been greatly improved.<\\/li>\\n<li>Fix: Lookup fields that include an &amp; were not correctly getting watching values. They were also not being correctly marked as selected when returning to edit the entry.<\\/li>\\n<li>Fix: New \'Payment method\' fields added by the Stripe plugin were showing as text fields.<\\/li>\\n<\\/ul>\\n<h4>v4.0.03 - June 3, 2019<\\/h4>\\r\\n<ul>\\n<li>New: Add a \'List\' option for lookup fields. This allows a value to be displayed from the linked entry without inserting it into another field.<\\/li>\\n<li>Use the same layout for the new and edit entries pages to prevent movement after creating an entry.<\\/li>\\n<li>Add the form filter box back to the view listing page<\\/li>\\n<li>Fix: If a form with logic is imported, make sure the logic works on page load<\\/li>\\n<li>Fix: After creating an entry from the back-end, some of the links in the sidebar links weren\'t functional.<\\/li>\\n<li>Fix: Prevent javascript error when adding new conditional logic rows in builder before all fields are loaded.<\\/li>\\n<li>Fix: The button to add Conditional logic wasn\'t responding on some hosts with low server limits.<\\/li>\\n<li>Fix: Prevent a reCaptcha from being rendered twice with two forms on the same page when one was a multi-page form.<\\/li>\\n<li>Fix: Clicking on \'not setup message\' in a lookup field in Firefox did not open the field settings.<\\/li>\\n<\\/ul>\\n<h4>v4.0.02 - May 29, 2019<\\/h4>\\r\\n<ul>\\n<li>New: Prevent disallowed file types from being selected in file uploader. This lets people know before a file is uploaded if it isn\'t allowed.<\\/li>\\n<li>New: More live changes in builder: the \'not set up\' message in dynamic fields<\\/li>\\n<li>New: Include scripts for view when loaded via API or after the footer<\\/li>\\n<li>New: Add show_image, show_filename, and add_link in the frm-show-entry shortcode<\\/li>\\n<li>New: Convert icon font to svgs in back-end to prevent caching issues<\\/li>\\n<li>Code: Show logic by default on field types created pre 3.0 methods<\\/li>\\n<li>Fix: Placeholders were getting the default value in some cases<\\/li>\\n<li>Fix: Fix issue with link to add other option missing after option is deleted<\\/li>\\n<li>Fix: Include the \'other\' option in the conditional logic options for new fields<\\/li>\\n<li>Fix: Delete the fields inside a section when the section is deleted<\\/li>\\n<li>Fix: Correctly order the fields in the calculation options<\\/li>\\n<li>Fix: Include images with links on the show entry page<\\/li>\\n<li>Fix: Remove a few PHP notices.<\\/li>\\n<\\/ul>\\n<\\/p>\\n\",\"installation\":\"<ol>\\n<li>Go to the Plugins -&gt; \'Add New\' page in your WP admin area<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to go to the form generator page and create a new contact form, email form, registration form, or advanced form<\\/li>\\n<li>Insert your newly created contact form, quiz, survey form, registration form, or advanced form on a Contact Us page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> to add a contact form in a contact page template<\\/li>\\n<\\/ol>\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-772x250.png\"},\"icons\":\"a:0:{}\",\"stable_tag\":\"4.01.01\",\"contributors\":{\"formidableforms\":{\"display_name\":\"formidableforms\",\"profile\":\"\\/\\/profiles.wordpress.org\\/formidableforms\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=formidableforms\"},\"sswells\":{\"display_name\":\"sswells\",\"profile\":\"\\/\\/profiles.wordpress.org\\/sswells\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=sswells\"},\"srwells\":{\"display_name\":\"srwells\",\"profile\":\"\\/\\/profiles.wordpress.org\\/srwells\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=srwells\"},\"jamie.wahlin\":{\"display_name\":\"jamie.wahlin\",\"profile\":\"\\/\\/profiles.wordpress.org\\/jamie.wahlin\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=jamie.wahlin\"}},\"description\":[\"<p>= The Most Powerful WordPress form builder plugin on the market =\\nWe built <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Formidable Forms<\\/a> to offer the &quot;first-ever&quot; solutions-focused WordPress form plugin on the market. You can use our drag &amp; drop WordPress form builder plugin to create contact forms, surveys, quiz forms, registration forms, payment forms, purchase forms, email marketing forms, and just about any other form you can imagine.<\\/p>\\n<p>At Formidable Forms, creating the most extendable form builder plugin is our #1 priority, so you save time when building even the most advanced forms. Unlike other WordPress form maker plugins that focus solely on building contact forms, we believe in allowing our users to push the limits and create complex forms quickly!<\\/p>\\n<p>Before we take a deep-dive into the features of the powerful Formidable form builder plugin, you should know that Formidable Forms is 100% mobile responsive so your contact forms and all other types of forms will always look great on all devices (desktop, laptop, tablets, and smartphones).<\\/p>\\n<p>On top of that, we have optimized Formidable contact forms and advanced forms for speed and maximum server performance. Whether you use Formidable Forms to build a contact form on your own site or an advanced form for your client, you can confidently say that it\'s one of the FASTEST WordPress form builders on the market.<\\/p>\\n<blockquote>\\n<p><strong>Formidable Forms Pro<\\/strong><br \\/>\\nThis form builder plugin is the lite version of the Formidable Forms Pro plugin that comes with all the contact form and advanced form features you will ever need. Our premium form features include repeater fields, email subscription forms, multi-page contact forms, file upload forms, smart forms with conditional logic, payment integrations, form templates, form relationships, cascading dropdown fields, front-end form editing, powerful Formidable Views to display data in web applications, and far more than just contact forms. <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\" rel=\\\"friend\\\" title=\\\"Formidable Forms\\\">Click here to purchase the most advanced premium WordPress form builder plugin now!<\\/a><\\/p>\\n<\\/blockquote>\\n<p>You can start with our pre-built contact form template or create totally custom forms from scratch all with an easy-to-use drag &amp; drop form builder interface. <\\/p>\\n<p><a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8&amp;rel=0\\\">https:\\/\\/www.youtube.com\\/watch?v=d2IPmicn2x8&amp;rel=0<\\/a><\\/p>\\n<p>Let\'s take a look at all the powerful form builder features that you get with Formidable Forms for making amazing contact forms, lead forms, subscription forms, request a quote forms, donation forms, payment order forms and more.<\\/p>\\n<p>= Drag &amp; Drop Contact Form Maker and Advanced Form Builder =<\\/p>\\n<p>The Formidable Forms drag &amp; drop form builder allows you to quickly create unlimited contact forms, surveys, quizzes, registration forms, and just about any other type of form that you want.<\\/p>\\n<p>Our form builder plugin comes with all the powerful form fields that you need to create a solution-focused form, fast!<\\/p>\\n<ul>\\n<li>Single line text (for names, phone numbers, addresses, and more)<\\/li>\\n<li>Email<\\/li>\\n<li>Website\\/URL<\\/li>\\n<li>Paragraph text<\\/li>\\n<li>Radio buttons<\\/li>\\n<li>Checkboxes<\\/li>\\n<li>Dropdown select boxes<\\/li>\\n<li>Number<\\/li>\\n<li>Phone number<\\/li>\\n<li>Hidden fields<\\/li>\\n<li>User ID<\\/li>\\n<li>HTML block<\\/li>\\n<\\/ul>\\n<p>= Complete Entry Management for Contact Forms and Surveys =<\\/p>\\n<p>Formidable Forms allows you to view all your contact form and survey entries right from your WordPress dashboard.<\\/p>\\n<p>Once a user submits a contact form, their response is automatically stored in your WordPress database. <\\/p>\\n<p>Formidable Forms is <strong>100% GDPR-friendly<\\/strong>. You can turn off IP tracking or stop saving contact form submissions entirely. Alternatively, you can add a GDPR checkbox field to your contact forms and payment forms to collect consent.<\\/p>\\n<p>Need to import your contact form leads to another service like MailChimp? No problem. <strong>Export contact form leads to a CSV<\\/strong>, open it in Excel, and import anywhere.<\\/p>\\n<p>You can also configure unlimited form email notifications and autoresponders triggered by contact form submissions. <\\/p>\\n<p>On top of that, you can easily customize the contact form success message the user sees after they submit the form, or redirect them to another page for your more advanced form needs.<\\/p>\\n<p>= The Only Form Maker Plugin with an Advanced Form Styler =<\\/p>\\n<p>With our built-in form styler, you can instantly customize the look and feel of your contact forms. With just a few clicks, your contact form, email form, and advanced forms can be transformed to match your website design.<\\/p>\\n<p>By default, Formidable Forms applies a single styling template to all Formidable contact forms and advanced forms on your site. But if you want a custom form style for each individual contact form, sidebar form, and registration form, you can upgrade to Formidable Forms Pro.<\\/p>\\n<p>= Build Smart Surveys with Beautiful Reports = <\\/p>\\n<p>Aside from simple contact forms, Formidable Forms comes with a built-in survey feature, so you can quickly create powerful surveys and see beautiful reports.<\\/p>\\n<p>The best part is that you can do this all within Formidable Forms without any third-party tools.<\\/p>\\n<p>= Quickly Create Advanced Registration Forms for Any Use Case = <\\/p>\\n<p>Whether you need to create a youth sport team registration form, event registration form, or church retreat registration form, Formidable Forms has got you covered. Unlike other contact form plugins, Formidable Forms comes with a repeater field that allows you to create the most powerful registration forms.<\\/p>\\n<p>Then, our marketing integrations and APIs can send the contact form and registration form data anywhere you want.<\\/p>\\n<p>= Accept Credit Cards and Easily Collect Payments = <\\/p>\\n<p>By now, you probably already realize the theme that Formidable Forms is more than just a contact form plugin. You can use Formidable Forms to create payment forms and accept credit card payments right from your website.<\\/p>\\n<p>We offer seamless integration with PayPal, Stripe, and Authorize.net, so you can create order forms and purchase forms with our drag &amp; drop form builder. <\\/p>\\n<p>You can even use Formidable Forms to create WooCommerce forms with custom fields (more on that later).<\\/p>\\n<p>= Grow Your Business with Marketing Integrations =<\\/p>\\n<p>We know that marketing is the key to grow your business. That\'s why Formidable Forms allows you to connect contact forms, payment forms, and advanced forms with a marketing platform of your choice.<\\/p>\\n<p>We integrate with popular email marketing services like:<\\/p>\\n<ul>\\n<li>MailChimp<\\/li>\\n<li>AWeber<\\/li>\\n<li>Constant Contact<\\/li>\\n<li>GetResponse<\\/li>\\n<li>MailPoet<\\/li>\\n<li>Active Campaign<\\/li>\\n<li>Salesforce<\\/li>\\n<li>HubSpot<\\/li>\\n<\\/ul>\\n<p>On top of these native integrations, we also integrate with Zapier, so you can quickly route your contact form data to over 1,000+ more services with just a few clicks.<\\/p>\\n<p>= Create Data-Driven Web Applications with Formidable Views = <\\/p>\\n<p>Formidable Views are by far the most powerful feature that makes Formidable far more than just a form builder plugin. Views allow you to flexibly display any submitted form data on the front-end of your website.<\\/p>\\n<p>Our customers use Formidable Views to create data-driven web applications like real estate listings, employment listings, event calendars, business or member directories, job boards, and other searchable databases.<\\/p>\\n<p>As you can see, Formidable Forms is not your average contact form plugin. It\'s a true all-in-one WordPress form solution.<\\/p>\\n<p>= Increase Your Sales with WooCommerce Product Forms = <\\/p>\\n<p>Formidable Forms is the only WordPress form builder plugin that offers extensive integration with WooCommerce.<\\/p>\\n<p>Our goal is to empower you to build powerful WooCommerce product forms, so you can increase your store sales.<\\/p>\\n<p>You can use Formidable Forms to add a WooCommerce Product configurator with custom calculation fields, and automatically send the data to the WooCommerce cart with variable pricing options.<\\/p>\\n<p>Need your customers to upload a file when they purchase a product? No problem. Simply drag &amp; drop a file upload field into your WooCommerce form and you\'re done.<\\/p>\\n<p>You can even show submitted form values in the WooCommerce purchase receipt emails as well as trigger SMS text messages or marketing integrations when an order is completed.<\\/p>\\n<p>And of course, you can use Formidable Forms to add a simple contact form on your WooCommerce store.<\\/p>\\n<p>= Build Powerful Quiz Forms &amp; Calculators = <\\/p>\\n<p>Along with a contact form, you can also use the Formidable form builder plugin to create quiz forms and calculator forms.<\\/p>\\n<p>Here are some example web calculators you can quickly add to your site:<\\/p>\\n<ul>\\n<li>Advanced Mortgage Calculator<\\/li>\\n<li>Car Payment Calculator<\\/li>\\n<li>BMI Calculator<\\/li>\\n<li>User Age Calculator<\\/li>\\n<li>Online Quote Calculator<\\/li>\\n<li>Net Promoter Score (NPS) Survey Calculator<\\/li>\\n<\\/ul>\\n<p>... and our powerful form calculations allow you to build just about any other type of calculator form.<\\/p>\\n<p>If that wasn\'t enough, you can also use our Formidable Form builder to create quizzes on your site and display results. This is great for membership sites, LMS, or just for viral quizzes to grow your email list.<\\/p>\\n<p>Our goal is to go beyond simple contact forms and allow users to create form-based solutions without any code :)<\\/p>\\n<p>= Create WordPress User Registration Forms, Profile Forms, and More = <\\/p>\\n<p>If you run a WordPress membership site, then you need more advanced forms along with your contact form.<\\/p>\\n<p>The Formidable Form builder plugin allows you to customize your WordPress user registration forms, so you can collect additional data when the user profile is created.<\\/p>\\n<p>With our front-end form editing, you can also build custom profile forms and allow users to keep their profile updated, or even progressively add to the profile from a set of forms, from the first contact form to the last payment form.<\\/p>\\n<p>Our front-end form editing feature is unique to us, and you will not find any other WordPress contact form plugin offering such a solution with the level of extendability that we do.<\\/p>\\n<p>= Beautiful Graphs and Reports to Help You Analyze and Showcase Data = <\\/p>\\n<p>We believe that data alone does no good if you can\'t analyze it. That\'s why we make it easy for you to analyze your contact form, survey, quiz, calculator, and other form data with beautiful graphs and reports.<\\/p>\\n<p>You can even showcase form data on the front-end of your website by embedding graphs in your WordPress posts or pages.<\\/p>\\n<p>= All the Advanced Form Fields and Features You Need to Grow Your Business =<\\/p>\\n<p>Formidable Forms goes far above and beyond contact forms to offer all the advanced form fields and features you need to grow your business.<\\/p>\\n<p>This includes things like multi-page forms, save and continue forms, cascading form fields, powerful conditional logic, partial form submissions, invisible spam protection, front-end user post submission, calculators, user-tracking, and so much more.<\\/p>\\n<p>We\'re on a mission to offer an all-in-one solution-focused WordPress form plugin, so you don\'t have to install 5 plugins alongside your contact form maker plugin to do everything you want.<\\/p>\\n<p>= Extend and Customize Your Forms - Developer\'s Dream Come True =<\\/p>\\n<p>Formidable Forms is the form plugin of choice for smart developers, freelancers, and agencies because it helps them build complex form solutions and basic contact forms quickly and defy the limits imposed by time and knowledge.<\\/p>\\n<p>Our goal is to help you build complex websites with low overhead. We believe big projects don\'t always need big resources.<\\/p>\\n<p>That\'s why we made Formidable Forms the most extendable WordPress form builder plugin on the market.<\\/p>\\n<p>You can easily route your data from contact forms and advanced forms with our powerful API. Formidable Views allow you to display form data anywhere on the front-end, so you can quickly create data-driven web applications.<\\/p>\\n<p>On top of that, our hooks and filters allow you to completely extend Formidable Forms to meet your needs. We even include hundreds of code examples in our docs to give you the confidence to get started.<\\/p>\\n<p>= Full Formidable Forms Feature List =<\\/p>\\n<p>Since Formidable Forms is not your average WordPress contact form plugin, this feature list is going to be very long. Grab a cup of coffee and read through, or just install the most powerful WordPress form maker plugin, your choice :)<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/drag-drop-form-builder\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Online drag and drop form builder<\\/a>. Build everything from contact forms and email forms to calculators, registration forms, and complex online forms. Make amazing forms the easy way with a simple WordPress drag and drop form builder. No code required.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/display-form-data-views\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Display form data with Views<\\/a>. Other WordPress form builder plugins only let you collect data. Formidable Forms lets you format, filter, and display form submissions in custom Formidable Views on the front-end of your site. Views turn forms into solutions. Job boards, event calendars, business directories, ratings systems, and management solutions. If you can come up with it, most likely Formidable can handle it.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/dynamically-add-form-fields\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Repeating field groups (repeaters)<\\/a>. Allow your users to add sets of fields to registration forms, application forms, email forms, calculator forms, and other advanced forms on the fly.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multiple-file-upload-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Drag and drop multiple file upload forms<\\/a>. Easily upload documents, files, photos, and music, with any number of files in contact forms, job application forms (resumes), WordPress User Profile Forms (avatars), registration forms, get a quote forms, and other advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-multi-step-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Multi-step forms with progress bars<\\/a>. Want to increase conversion rates and collect more leads with smart contact forms? Create beautiful paged forms with rootline and progress indicators. Add conditional logic to page breaks for smart branching forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/cascading-dropdown-lookup-field\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Cascading lookup fields<\\/a>. Change values in other form fields or drill down through options to reveal a final value. Designed for country\\/state\\/city fields in contact forms and registration forms and year\\/make\\/model fields in auto forms, or to get a price from a separate product form.<\\/li>\\n<li>Datepicker fields with advanced <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/datepicker-options\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">datepicker options<\\/a> including blackout dates, dynamic minimum and maximum dates, and inline calendars. Our datepickers are great for basic online booking forms, event registration forms, and specialized contact forms.<\\/li>\\n<li>Create relationships with Dynamic fields. Populate form fields from other forms and link data between two forms without duplication. Form relationships are helpful in a huge number of cases including linking employment application forms to a job, quiz forms to a class, event registration forms to an event, sports registration forms to a team, and contact forms to a department.<\\/li>\\n<li>Add password fields with a password strength meter in WordPress user registration forms, profile forms, and change password forms.<\\/li>\\n<li>Collect reviews with star ratings in feedback forms, recipe ratings forms, product review forms, event rating forms, customer testimonial forms, and yes, even contact forms. Then display and share the ratings in Formidable Views.<\\/li>\\n<li>Add more field types with our form creator including Rich text fields, Time fields, Scale fields, Slider fields, Toggle fields, Tags fields, Address fields, and Section headings.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/confirm-email-address-password-wordpress-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Confirmation fields<\\/a>. Double check email addresses or passwords and prevent typos from cannibalizing your contact form leads.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/conditional-logic-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Conditional logic for smart forms<\\/a>. Show or hide fields in contact forms and advanced forms based on user selections or user roles. Make complex forms simple and increase form conversion rates.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/email-autoresponders-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Send email notifications &amp; autoresponders<\\/a>. Automatically let clients know you received their contact form message. Then create customized email notifications for multiple recipients and get info from a contact form or email form to those who need it.<\\/li>\\n<li>Email routing: Conditionally send multiple autoresponder emails and notifications based on values in contact forms, email forms, payment forms, and registration forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-calculated-fields-form\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Calculator forms<\\/a>. Create basic and complex calculations, and even combine text from multiple fields for a mortgage calculator, auto loan calculator, or many other calculator forms. Even a contact form could benefit from calculations for easy quotes and price estimates.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-visual-form-styler\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Visual form style creator<\\/a>. Our form creator for contact forms, calculators, and other online forms not only allows you to build forms, but also create branded forms that match your site. Change colors, borders, padding and much more without any code.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/flexible-layouts-responsive-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Flexible form layout design<\\/a>. Build mobile responsive contact forms and advanced form layouts with multiple fields in a row by using our CSS layout classes.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-mobile-friendly-responsive-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Mobile-friendly, responsive forms<\\/a>. All of our forms are sized automatically for every screen size. Ensure that everyone can see and submit your contact forms and other online forms from any device.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/user-submitted-posts-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">User submitted front-end posts and pages<\\/a>. Create and edit WordPress posts, pages, and even custom post types from your front-end online forms. Send user-generated content quickly from a post creation form to a page.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/form-entry-management-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Simple entry management<\\/a>. Flexibly and powerfully display, edit, and delete form entries from anywhere on your site, and specify who has permission to do so. Your logged-in users can fully manage their personal journal entries, weight tracking, guest blog posts, RSVP status, and whatever else you need, far and above just contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/front-end-editing-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WordPress front-end editing<\\/a>. Allow users to edit their form entries and posts from the front-end of your site. Create an online journaling platform, member directory, classified ads, community recipes, and more.<\\/li>\\n<li>Logged-in users can <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/save-and-continue-partial-submissions\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">save and continue partial form submissions<\\/a>. Whether it\'s a contact form or a long multi-paged form, users can save form progress and pick up right where they left off.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/create-a-graph-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Graphs and charts for data visualization<\\/a>. Display statistics from surveys, polls, quiz forms, questionnaires, and advanced forms. Or graph the data in a variety of ways that automatically update as new form data is submitted (great for weight tracking over time).<\\/li>\\n<li>Form permission settings. Limit visibility of specialized contact forms and advanced forms based on user role.<\\/li>\\n<li>Form entry limits. Limit a contact form, registration form, survey, quiz, or directory submissions to only allow one entry per user, IP, or cookie.<\\/li>\\n<li>Form scheduling. Open and close event registration forms and signup forms on a specific date. Or close registration forms when the seat limit or team size has been reached. Want a contact form for questions about a planned event that auto closes when the event starts? No problem.<\\/li>\\n<li>Conditionally redirect to a custom page after a contact form, custom search form, quiz form, calculator form, payment form, support ticket form, or other online form is submitted. Help clients get the answers they are looking for, or show a tailored result based on their form selections.<\\/li>\\n<li>We believe that not only contact forms, but also advanced forms should be extendable to meet your needs. So we give you access to <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/customize-form-html-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">customize the form HTML<\\/a> (like Contact Form 7), but still keep the ease and speed of a drag &amp; drop form builder plugin. Our team labors for simplicity without sacrificing flexibility.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/importing-exporting-wordpress-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Import and export forms, form submissions, styles, and views<\\/a>. Quickly move forms, entries, views and styles to another site. Need to export leads from a contact form to another service? Check.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wordpress-form-templates\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Form templates for instant form building<\\/a>. Get started quickly with the most advanced form creator that includes form templates, style templates, and Formidable View templates. Our WordPress form generator makes it FAST to build contact forms, job application forms, and other online forms.<\\/li>\\n<li>Import our <a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/category\\/form-templates\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">pre-built form\\/view templates<\\/a> as a shortcut to a final product. Our growing form template library includes contact forms, payment forms, calculators, a WooCommerce product creator, and more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/wcag-accessible-forms\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WCAG accessible forms with A11Y and ADA compliance<\\/a>. Don\'t alienate your audience. Ensure your contact forms, surveys, quiz forms, lead capture forms, and other online forms are compliant and available to anyone. Allow those using screenreaders to successfully use and submit not only your contact forms, but also the advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/invisible-spam-protection\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Invisible SPAM protection<\\/a>. Don\'t waste time sorting through SPAM from your contact form. Get instant and powerful anti-spam features from honeypot, invisible reCAPTCHA, Akismet, and the WordPress comment blacklist.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/fill-out-forms-automatically\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Fill out forms automatically<\\/a> with values from the user profile or posts (i.e. custom fields). When a user is logged in, prefill known values like first name, last name, and email address in a contact form.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/features\\/white-label-form-builder-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">White label form builder<\\/a>. Replace the Formidable Forms branding with your own in the admin area. Plus, we never show &quot;powered by&quot; links in your free contact forms or online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WordPress user registration forms<\\/a>. Register WordPress users, edit profiles, reset passwords, and add a login form. When using WordPress multisite forms, you can even allow logged in and logged out users to create new subdomains.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Digital signature forms<\\/a>. Eliminate paper forms with a digital signature field in contact forms, application forms, registration forms, or advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Form action automation<\\/a>. Schedule form email notifications, SMS messages, and webhooks to trigger at a later time. You can automatically delete guest posts after 30 days, send weekly digest emails, trigger happy birthday text messages from a contact form or lead form and much more.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Formidable Forms API<\\/a>. Send form entries to other REST APIs and add a set of form webhooks. This includes the option to send form entries from one Formidable site to another.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/quiz-maker\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Quiz maker forms<\\/a>. Write your quiz form questions, submit an entry as the quiz key, and publish the quiz on a page. Then all the quiz form grading is automatically done for you.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/support\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">World class support<\\/a>. Have questions or need guidance on how to use our contact form builder or set up your web application? We are happy to help. Our passion with Formidable Forms is to help you <strong>defy the limits<\\/strong> so you can take on bigger projects, earn more clients, and grow your business.<\\/li>\\n<\\/ul>\\n<p>= Payment Forms, Form APIs, and Marketing Integrations =\\nIn addition to all the form builder features listed above, power up contact forms, registration forms, and calculator forms with these integrations.<\\/p>\\n<ul>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">PayPal Payment Forms<\\/a>. Automate your business by collecting instant payments and recurring payments from clients. Collect information, calculate a total, and send clients to PayPal from your payment forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Stripe Payment Forms<\\/a>. Keep users on your site while collecting payments from a credit card form. Select from one time and recurring charges in order forms, donation forms, and contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Authorize.net AIM Payment Forms<\\/a>. Process one-time payments in order forms, registration forms, and calculator forms with Authorize.net AIM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/woocommerce\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WooCommerce product configurator<\\/a>. Add custom fields to a WooCommerce product form and collect extra data when a product is added to the cart. Use form calculations for variable pricing, upload a file with the purchase, and send custom emails when a purchase is completed.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">MailChimp Forms<\\/a>. Add and update leads in a MailChimp email marketing list from lead forms, contact forms, order forms, and email forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/constant-contact\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Constant Contact Forms<\\/a>. Create leads automatically in Constant Contact with newsletter signup forms and contact forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/getresponse-wordpress-plugin\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">GetResponse Forms<\\/a>. Collect leads in contact forms, add them to GetResponse, and trigger GetResponse marketing automations.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">AWeber Forms<\\/a>. Subscribe users to an AWeber mailing list when a newsletter signup form or contact form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/mailpoet-newsletters\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">MailPoet Newsletter forms<\\/a>. Fill your email marketing lists from newsletter signup forms and contact forms. Then send WordPress newsletters from your own site using MailPoet.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Highrise Forms<\\/a>. Add leads to your Highrise CRM account any time a WordPress contact form, registration form, or payment form is submitted.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Salesforce Forms<\\/a>. Create leads, contacts, and any other Salesforce objects directly from your contact page and advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/activecampaign-wordpress-plugin\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">ActiveCampaign Forms<\\/a>. Let your contact form pull double duty as a payment form, post creation form, user registration form, and an ActiveCampaign integration.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/hubspot-wordpress\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">HubSpot Forms<\\/a>. Route contact form and lead form data from your WordPress forms to HubSpot CRM.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Twilio for SMS Forms<\\/a>. Collect votes and poll responses via SMS text or send SMS notifications when form entries are submitted. Get notified instantly when an important contact form or payment form is completed, and let your form leads know you received their message.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">WPML Forms<\\/a>. Translate contact forms, registration forms, and advanced forms into multiple languages using our integrated multilingual forms plugin.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Polylang Forms<\\/a>. Get the form creator with Polylang bilingual or multilingual contact forms. Use the form builder to make your form, then translate it without duplicate forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Zapier Forms<\\/a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or upload a Dropbox file from a contact form, calculator form, payment form, and more. With Zapier, you have the option to trigger thousands of actions from a lead form, quote form, quiz form, and other online forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Bootstrap Form Styles<\\/a>. Instantly add Bootstrap form styling to contact forms, registration forms, survey forms, and advanced forms.<\\/li>\\n<li><a href=\\\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Bootstrap Modal Form<\\/a>. Open contact forms, login forms, Formidable views, shortcodes, and other content in a Bootstrap modal popup.<\\/li>\\n<\\/ul>\\n<p>After reading this feature list, you can probably imagine why Formidable Forms is the most advanced WordPress form plugin on the market, designed for far more than just contact forms.<\\/p>\\n<p>Give Formidable Forms a try.<\\/p>\\n<p>Want to unlock the full power? <a href=\\\"https:\\/\\/formidableforms.com\\/?utm_source=wprepo&amp;utm_medium=link&amp;utm_campaign=liteversion\\\">Upgrade to our Pro forms<\\/a> to get all the features for smart contact forms and full web applications.<\\/p>\\n<p>= Form Plugin Credits =\\nThis form builder plugin is created by Steve and Steph Wells and the amazing Formidable Forms Team.<\\/p>\\n<p>Formidable Forms is part of the <a href=\\\"https:\\/\\/www.wpbeginner.com\\/\\\">WPBeginner<\\/a> accelerator with <a href=\\\"https:\\/\\/syedbalkhi.com\\/\\\">Syed Balkhi<\\/a> as an Advisor to our company.<\\/p>\"],\"changelog\":[\"<p><h4>v4.01.01 - June 28, 2019<\\/h4>\\r\\n<ul>\\n<li>Use svg for admin menu white label icon<\\/li>\\n<li>Fix: Include form styles on every page of an ajax form when styling is loaded only on applicable pages.<\\/li>\\n<li>Fix: Correctly show &lt; when includes in field values in a view.<\\/li>\\n<li>Fix: Some forms with a combination of lookups and upload fields were showing a disabled submit button when editing on the back-end.<\\/li>\\n<\\/ul>\\n<h4>v4.01 - June 27, 2019<\\/h4>\\r\\n<ul>\\n<li>New: Remove any row in a repeater.<\\/li>\\n<li>New: If a dependent lookup field is required but has no options, don\'t require it.<\\/li>\\n<li>Tweak: Show the thumbnail image on the Show entry page instead of full sized image.<\\/li>\\n<li>Tweak: When a license is active, keep the license key box empty instead of showing dots to prevent confusion.<\\/li>\\n<li>Tweak: If a number field is empty, don\'t show a 0 for the value in emails and views.<\\/li>\\n<li>Fix: Some dynamic fields with a placeholder were showing \'Array\' for the placeholder.<\\/li>\\n<li>Fix: reCaptcha fields were missing the visibility option in the field settings.<\\/li>\\n<\\/ul>\\n<h4>v4.0.04 - June 10, 2019<\\/h4>\\r\\n<ul>\\n<li>New: When creating a new view, auto select the form.<\\/li>\\n<li>Fix: Password fields used to show on the Show entry page pre 4.0. Add them back.<\\/li>\\n<li>Fix: The field list in the View builder didn\'t allow scrolling all the way to the bottom in forms with a lot of fields.<\\/li>\\n<li>Fix: Field options in radio, checkbox, and select fields that include an &amp; will now show the correct value by default. They will also work much better with conditional logic.<\\/li>\\n<li>Fix: Searching and filtering views by a value that includes &amp; has been greatly improved.<\\/li>\\n<li>Fix: Lookup fields that include an &amp; were not correctly getting watching values. They were also not being correctly marked as selected when returning to edit the entry.<\\/li>\\n<li>Fix: New \'Payment method\' fields added by the Stripe plugin were showing as text fields.<\\/li>\\n<\\/ul>\\n<h4>v4.0.03 - June 3, 2019<\\/h4>\\r\\n<ul>\\n<li>New: Add a \'List\' option for lookup fields. This allows a value to be displayed from the linked entry without inserting it into another field.<\\/li>\\n<li>Use the same layout for the new and edit entries pages to prevent movement after creating an entry.<\\/li>\\n<li>Add the form filter box back to the view listing page<\\/li>\\n<li>Fix: If a form with logic is imported, make sure the logic works on page load<\\/li>\\n<li>Fix: After creating an entry from the back-end, some of the links in the sidebar links weren\'t functional.<\\/li>\\n<li>Fix: Prevent javascript error when adding new conditional logic rows in builder before all fields are loaded.<\\/li>\\n<li>Fix: The button to add Conditional logic wasn\'t responding on some hosts with low server limits.<\\/li>\\n<li>Fix: Prevent a reCaptcha from being rendered twice with two forms on the same page when one was a multi-page form.<\\/li>\\n<li>Fix: Clicking on \'not setup message\' in a lookup field in Firefox did not open the field settings.<\\/li>\\n<\\/ul>\\n<h4>v4.0.02 - May 29, 2019<\\/h4>\\r\\n<ul>\\n<li>New: Prevent disallowed file types from being selected in file uploader. This lets people know before a file is uploaded if it isn\'t allowed.<\\/li>\\n<li>New: More live changes in builder: the \'not set up\' message in dynamic fields<\\/li>\\n<li>New: Include scripts for view when loaded via API or after the footer<\\/li>\\n<li>New: Add show_image, show_filename, and add_link in the frm-show-entry shortcode<\\/li>\\n<li>New: Convert icon font to svgs in back-end to prevent caching issues<\\/li>\\n<li>Code: Show logic by default on field types created pre 3.0 methods<\\/li>\\n<li>Fix: Placeholders were getting the default value in some cases<\\/li>\\n<li>Fix: Fix issue with link to add other option missing after option is deleted<\\/li>\\n<li>Fix: Include the \'other\' option in the conditional logic options for new fields<\\/li>\\n<li>Fix: Delete the fields inside a section when the section is deleted<\\/li>\\n<li>Fix: Correctly order the fields in the calculation options<\\/li>\\n<li>Fix: Include images with links on the show entry page<\\/li>\\n<li>Fix: Remove a few PHP notices.<\\/li>\\n<\\/ul>\\n<\\/p>\\n\"],\"installation\":[\"<ol>\\n<li>Go to the Plugins -&gt; \'Add New\' page in your WP admin area<\\/li>\\n<li>Search for \'Formidable\'<\\/li>\\n<li>Click the \'Install Now\' button<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu<\\/li>\\n<li>Go to the Formidable Forms menu<\\/li>\\n<li>Click the \'Add New\' button to go to the form generator page and create a new contact form, email form, registration form, or advanced form<\\/li>\\n<li>Insert your newly created contact form, quiz, survey form, registration form, or advanced form on a Contact Us page, post, or widget using a shortcode [formidable id=x], Alternatively use <code>&lt;?php echo FrmFormsController::show_form(2, $key = \'\', $title=true, $description=true); ?&gt;<\\/code> to add a contact form in a contact page template<\\/li>\\n<\\/ol>\"]}\";}','no'),(16242,'wp_page_for_privacy_policy','0','yes'),(16243,'show_comments_cookies_opt_in','1','yes'),(16244,'db_upgraded','','yes'),(16252,'recovery_keys','a:0:{}','yes'),(16261,'wp-smush-settings','a:23:{s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:1;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:1;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:1;s:17:\"background_images\";b:1;s:11:\"networkwide\";b:0;s:9:\"keep_exif\";i:0;s:4:\"bulk\";b:0;}','no'),(16263,'frm_addons_l3519e3eea9658ea50da309962bdae860','a:3:{s:7:\"timeout\";i:1588105616;s:5:\"value\";s:83247:\"{\"20790298\":{\"title\":\"Active Campaign\",\"name\":\"Active Campaign\",\"slug\":\"activecampaign-wordpress-plugin\",\"version\":\"1.05\",\"new_version\":\"1.05\",\"location\":[\"fp.strategy11.com\\/releases\\/activecampaign\\/formidable-activecampaign-1.05.zip\"],\"excerpt\":\"Add contacts to any ActiveCampaign list from your WordPress forms.\",\"id\":20790298,\"released\":\"2018-07-05 00:00:00\",\"categories\":[\"Elite\",\"Marketing\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/activecampaign-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/activecampaign-wordpress-plugin\\/\",\"changelog\":\"\",\"plugin\":\"formidable-activecampaign\\/formidable-activecampaign.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"337527\":{\"title\":\"Authorize.net AIM\",\"name\":\"Authorize.net AIM\",\"slug\":\"authorize-net-aim\",\"version\":\"2.01\",\"new_version\":\"2.01\",\"location\":[\"fp.strategy11.com\\/releases\\/authorize-net\\/formidable-authorize-net-2.01.zip\"],\"excerpt\":\"Accept one-time payments directly on your site, using Authorize.net AIM.\",\"id\":337527,\"released\":\"2016-04-29 00:00:00\",\"categories\":[\"Ecommerce\",\"Elite\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/authorize-net-aim\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/\",\"changelog\":\"<h4>v2.01 - March 18, 2019<\\/h4>\\n<ul>\\n<li>Fix: Increase the timeout for creating the payment on Authorize.net in order to prevent false failures.<\\/li>\\n<li>Save the full API response in the log instead of only the body of the response for more helpful debugging messages.<\\/li>\\n<\\/ul>\\n<h4>v2.0 - February 25, 2019<\\/h4>\\n<ul>\\n<li>Requires Formidable 3.0+ and WordPress 4.7+<\\/li>\\n<li>New: Remove the Authorize.net SDK. This greatly reduces the size of the plugin, and resolves PHP 7.0+ compatibility issues.<\\/li>\\n<li>New: Use Webhooks to get notifications from Authorize.net to a REST endpoint when a payment status changes. This includes refunds, voids, and completed transactions. A webhook will be automatically created when the Formidable -&gt; Global settings page is saved.<\\/li>\\n<li>New: Added signature key to Global settings page and removed the Silent Post url. This is used to verify any incoming webhooks.<\\/li>\\n<li>New: Don\'t use MD5 verification, but meet the new sha512 requirement instead.<\\/li>\\n<li>New: Add Bangladeshi Taka currency<\\/li>\\n<li>Fix: Replace usage of deprecated file and functions from Formidable<\\/li>\\n<li>Fix: Added escaping for translatable strings.<\\/li>\\n<\\/ul>\\n<h4>v1.02 - August 31, 2018<\\/h4>\\n<ul>\\n<li>New: Delete entries that don\'t pass credit card validation<\\/li>\\n<li>New: Process shortcodes in the payment amount, description, and actions after payment. This includes default values, field values, and regular WP shortcodes.<\\/li>\\n<li>New: Allow the api key to be overridden with constants. The Authorize account can be set with AUTHORIZENET_TRANSACTION_KEY and AUTHORIZENET_API_LOGIN_ID<\\/li>\\n<li>New: Disable live mode for non-ssl sites. Show the settings and always allow test mode.<\\/li>\\n<li>New: Add option to register user after successful payment<\\/li>\\n<li>New: Add payment triggers to api action<\\/li>\\n<li>New: Add receipt ID shortcode<\\/li>\\n<li>New: Add Pakistani rupee, Chinese Renminbi Yuan, South African Rand, and Sri Lankan Rupee to currency options<\\/li>\\n<li>New: If PayPal is also installed, show the PayPal payment completed status<\\/li>\\n<li>New: Add frm_pay_[payment type]_sidebar hook for adding content to the sidebar of a single payment<\\/li>\\n<li>Fix: Include the customer info with an echeck. Show the address fields in eCheck settings. When only eCheck is selected, the extra fields were not set to show or send to Authnet<\\/li>\\n<li>Fix: Replace the included SSL cert since it is causing errors on some servers<\\/li>\\n<li>Fix: Filter description shortcodes on subscriptions page<\\/li>\\n<li>Fix: Create the post (if applicable) before fields are updated<\\/li>\\n<li>Fix: Use credit card icon instead of Stripe. This will show in 3.0.<\\/li>\\n<li>Fix: Update the gateway field for better 3.0 compatibility<\\/li>\\n<\\/ul>\\n<h4>v1.01 - December 12, 2016<\\/h4>\\n<ul>\\n<li>Prevent errors when Formidable is deactivated<\\/li>\\n<li>Add frm_authnet_invoice_num hook for setting the invoice number<\\/li>\\n<li>Add a link to view the subscriptions<\\/li>\\n<li>If the subscription has failed &gt; 3 times, set it to canceled<\\/li>\\n<li>Show more error messages to a user when the payment fails<\\/li>\\n<li>Remove plugin header for nested plugin to prevent error message when activating from the plugins upload page<\\/li>\\n<li>Use the correct currency for the total on the entry sidebar instead of defaulting to USD<\\/li>\\n<li>Allow field shortcodes in description<\\/li>\\n<li>Add Indian Rupee to currency options<\\/li>\\n<li>Add table headings and subscription description to the frm-subscriptions shortcode<\\/li>\\n<li>Prevent field ids from being used as the amount<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-authorize-net\\/formidable-authorize-net.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"168468\":{\"title\":\"AWeber\",\"name\":\"AWeber\",\"slug\":\"aweber\",\"version\":\"2.01\",\"new_version\":\"2.01\",\"excerpt\":\"AWeber is a powerful email marketing service. Subscribe contacts to an AWeber mailing list when they submit your WordPress contact forms.\",\"id\":168468,\"released\":\"2013-11-26 00:00:00\",\"categories\":[\"Creator\",\"Marketing\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-aweber\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/\",\"changelog\":\"<h4>v2.01 - February 4, 2016<\\/h4>\\n<ul>\\n<li>Make sure the update notice doesn\'t show if the plugin is up to date<\\/li>\\n<\\/ul>\\n<h4>v2.0 - January 15, 2016<\\/h4>\\n<ul>\\n<li>Move the AWeber settings into a form action<\\/li>\\n<li>Make the plugin translatable<\\/li>\\n<li>Now it works with the free version of Formidable<\\/li>\\n<\\/ul>\\n<h4>v1.0.03 - November 13, 2015<\\/h4>\\n<ul>\\n<li>Prevent errors when Formidable is disabled<\\/li>\\n<\\/ul>\\n<h4>v1.0.02 - October 16, 2015<\\/h4>\\n<ul>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<\\/ul>\\n<h4>v1.0.01 - December 2, 2013<\\/h4>\\n<ul>\\n<li>Fixed setting up lists when MailChimp add-on is not installed.<\\/li>\\n<li>Remove a hook to prevent settings from loading twice in recent versions of Formidable<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-aweber\\/formidable-aweber.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-aweber\\/formidable-aweber-2.01.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=kewagWQFKs84gJqZd1hW4NkAXbE%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-aweber\\/formidable-aweber-2.01.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=kewagWQFKs84gJqZd1hW4NkAXbE%3D\"},\"168463\":{\"title\":\"Bootstrap\",\"name\":\"Bootstrap\",\"slug\":\"bootstrap\",\"version\":\"1.02.02\",\"new_version\":\"1.02.02\",\"excerpt\":\"Instantly add Bootstrap styling to all your Formidable forms.\",\"id\":168463,\"released\":\"2014-08-05 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-bootstrap\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/\",\"changelog\":\"<h4>v1.02.02 - October 9, 2017<\\/h4>\\n<ul>\\n<li>Enhancement: Allow prepend and append options with dropdowns.<\\/li>\\n<\\/ul>\\n<h4>v1.02.01 - March 8, 2017<\\/h4>\\n<ul>\\n<li>Enhancement: Update Bootstrap version to 3.3.7.<\\/li>\\n<li>Enhancement: Add prepend and append options to Lookup &gt; Text fields<\\/li>\\n<\\/ul>\\n<h4>v1.02 - December 13, 2016<\\/h4>\\n<ul>\\n<li>Enhancement: Update Bootstrap version to 3.3.6.<\\/li>\\n<li>Fix: Make sure modified [input] tag works well with Bootstrap append.<\\/li>\\n<li>Fix: Add Bootstrap ID so automatic updates work in the future.<\\/li>\\n<li>Fix: Make sure Lookup checkbox and radio fields look nice.<\\/li>\\n<\\/ul>\\n<h4>v1.01.04 - November 13, 2015<\\/h4>\\n<ul>\\n<li>Prevent errors with Formidable disabled<\\/li>\\n<\\/ul>\\n<h4>v1.01.03 - October 16, 2015<\\/h4>\\n<ul>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-bootstrap\\/formidable-bootstrap.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-bootstrap\\/formidable-bootstrap-1.02.02.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=IZvaQ56JqQ23697VxoVD1BzHqmo%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-bootstrap\\/formidable-bootstrap-1.02.02.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=IZvaQ56JqQ23697VxoVD1BzHqmo%3D\"},\"185013\":{\"title\":\"Bootstrap Modal\",\"name\":\"Bootstrap Modal\",\"slug\":\"bootstrap-modal\",\"version\":\"2.0\",\"new_version\":\"2.0\",\"excerpt\":\"Open forms, views, other shortcodes, or sections of content in a Bootstrap popup.\",\"id\":185013,\"released\":\"2015-08-26 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/bootstrap-modal\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/\",\"changelog\":\"<h4>v2.0 - August 21, 2017<\\/h4>\\n<ul>\\n<li>Add a new shortcode format for more flexibility. Now you can include whatever you\'d like in the modal.<br \\/>\\n[ frmmodal-content]content here[\\/frmmodal-content]<\\/li>\\n<li>Add frm_modal_shortcode action hook. This is for triggering external scripts that are loaded too late when they aren\'t triggered until the footer.<\\/li>\\n<li>Add modal_class shortcode option. This will add a class to the generated modal.<\\/li>\\n<\\/ul>\\n<h4>v1.04 - April 4, 2016<\\/h4>\\n<ul>\\n<li>Allow size=small or size=large to change the modal size<\\/li>\\n<li>Add modal_title parameter to the shortcode<\\/li>\\n<li>Make sure modal works when no forms are present on the page<\\/li>\\n<li>Fix plugin URI<\\/li>\\n<\\/ul>\\n<h4>v1.03 - January 18, 2016<\\/h4>\\n<ul>\\n<li>Make sure multiple modals on a page work correctly<\\/li>\\n<\\/ul>\\n<h4>v1.02 - December 17, 2015<\\/h4>\\n<ul>\\n<li>Show an icon to close the modal<\\/li>\\n<li>Allow any shortcode to be used for the modal content. For example, use [ frmmodal type=\\\"frm-login\\\" label=\\\"Login\\\"] to show a login form when the registration plugin is active.<\\/li>\\n<li>When the license number is saved, make sure it\'s for the correct plugin<\\/li>\\n<\\/ul>\\n<h4>v1.01 - November 24, 2015<\\/h4>\\n<ul>\\n<li>Allow classes to be added to the modal link. [ frmmodal id=5 label=\\\"click here\\\" class=\\\"your classes here\\\"]<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-modal\\/formidable-modal.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-modal\\/formidable-modal-2.0.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=hp%2FNh17bqQ8K9SRR5cbrHwqzdXU%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-modal\\/formidable-modal-2.0.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=hp%2FNh17bqQ8K9SRR5cbrHwqzdXU%3D\"},\"20891694\":{\"title\":\"Campaign Monitor\",\"name\":\"Campaign Monitor\",\"slug\":\"campaign-monitor\",\"version\":\"1.03\",\"new_version\":\"1.03\",\"excerpt\":\"Save time by automatically sending leads from WordPress forms to Campaign Monitor.\",\"id\":20891694,\"released\":\"2019-06-17 00:00:00\",\"categories\":[\"Business\",\"Marketing\"],\"docs\":\"\\/knowledgebase\\/campaign-monitor-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/campaign-monitor\\/\",\"changelog\":\"\",\"plugin\":\"formidable-campaignmonitor\\/formidable-campaignmonitor.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/campaign-monitor\\/formidable-campaignmonitor-1.03.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=%2FqhwOTeFwvQxA3%2BtmviqiqLJHJg%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/campaign-monitor\\/formidable-campaignmonitor-1.03.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=%2FqhwOTeFwvQxA3%2BtmviqiqLJHJg%3D\"},\"20826884\":{\"title\":\"Constant Contact\",\"name\":\"Constant Contact\",\"slug\":\"constant-contact\",\"version\":\"1.02\",\"new_version\":\"1.02\",\"excerpt\":\"Setup WordPress forms to create leads automatically in Constant Contact. Just select a list and match up form fields.\",\"id\":20826884,\"released\":\"2018-10-15 00:00:00\",\"categories\":[\"Business\",\"Marketing\"],\"docs\":\"\\/knowledgebase\\/constant-contact-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/constant-contact\\/\",\"changelog\":\"<h4>v1.02 - December 12, 2019<\\/h4>\\n<ul>\\n<li>New: Make authenticating easier<\\/li>\\n<li>Show more helpful error messages in the global settings and in the form action<\\/li>\\n<li>Use icon instead of image for form action<\\/li>\\n<li>Update form action layout to match v4.0<\\/li>\\n<li>Remove debug mode in favor of logging<\\/li>\\n<li>Fix: When different forms are used to update a contact, only the most recent info was saved and previous values were removed (ie custom fields, selected lists)<\\/li>\\n<li>Fix: If a contact was deleted in Constant Contact, it was causing a failure when updating the contact from Formidable<\\/li>\\n<\\/ul>\\n<h4>v1.01 - October 31, 2018<\\/h4>\\n<ul>\\n<li>Fix: On first install, the Global settings page was not loaded correctly<\\/li>\\n<li>Fix: Allow the debug mode checkbox to be unchecked<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-constantcontact\\/formidable-constantcontact.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/constant-contact\\/formidable-constantcontact-1.02.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=snTw3i6PFwNsUx2eCJl71WQ3Jlw%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/constant-contact\\/formidable-constantcontact-1.02.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=snTw3i6PFwNsUx2eCJl71WQ3Jlw%3D\"},\"20247260\":{\"title\":\"Datepicker Options\",\"name\":\"Datepicker Options\",\"slug\":\"datepicker-options\",\"version\":\"1.0.04\",\"new_version\":\"1.0.04\",\"excerpt\":\"Add more options to date fields in your forms for so only the dates you choose can be chosen.\",\"id\":20247260,\"released\":\"2018-07-30 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/datepicker-options\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/datepicker-options\\/\",\"changelog\":\"<h4>v1.0.04 - June 10, 2019<\\/h4>\\n<ul>\\n<li>Fix: Inline datepickers were selecting a default date that wasn\'t allowed with some configurations<\\/li>\\n<li>Fix: Settings to select days of the week weren\'t appearing up in 4.0.<\\/li>\\n<li>Cleanup settings for 4.0<\\/li>\\n<\\/ul>\\n<h4>v1.0.03 - March 18, 2019<\\/h4>\\n<ul>\\n<li>Add minimized js and add pot file.<\\/li>\\n<li>Fix the datepicker appearance in backend settings when the front-end Formidable css is not loaded.<\\/li>\\n<li>Fix error when Formidable Forms is disabled.<\\/li>\\n<\\/ul>\\n<h4>v1.0.02 - October 15, 2018<\\/h4>\\n<ul>\\n<li>Fix: Exceptions couldn\'t be added in repeating date fields<\\/li>\\n<li>Fix: Show inline datepickers when creating or editing an entry on the backend<\\/li>\\n<li>Fix: Inline datepickers were always defaulting to today\'s date<\\/li>\\n<\\/ul>\\n<h4>v1.0.01 - August 6, 2018<\\/h4>\\n<ul>\\n<li>Fix: Load the datepicker javascript when SCRIPT_DEBUG is not enabled<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-dates\\/formidable-dates.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/dates\\/formidable-dates-1.0.04.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=shaM5qR8SDVlp4EdGj4HGT4YURs%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/dates\\/formidable-dates-1.0.04.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=shaM5qR8SDVlp4EdGj4HGT4YURs%3D\"},\"20897348\":{\"title\":\"Export View to CSV\",\"name\":\"Export View to CSV\",\"slug\":\"export-view\",\"version\":\"1.01\",\"new_version\":\"1.01\",\"excerpt\":\"Easily create custom CSV files and allow users to export their data from the front-end of your site.\",\"id\":20897348,\"released\":\"2019-08-01 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/table-view-to-csv\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/export-view\\/\",\"changelog\":\"<p>No Changes Found<\\/p>\\n\",\"plugin\":\"formidable-export-view\\/formidable-export-view.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/export-view\\/formidable-export-view-1.01.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=aUHG1d5yhA8%2FIdS0kQnpJpvFHFg%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/export-view\\/formidable-export-view-1.01.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=aUHG1d5yhA8%2FIdS0kQnpJpvFHFg%3D\"},\"326042\":{\"title\":\"Form Action Automation\",\"name\":\"Form Action Automation\",\"slug\":\"autoresponder\",\"version\":\"2.03\",\"new_version\":\"2.03\",\"location\":[\"fp.strategy11.com\\/releases\\/autoresponder\\/formidable-autoresponder-2.03.zip\"],\"excerpt\":\"Schedule email notifications, SMS messages, and API actions.\",\"id\":326042,\"released\":\"2016-09-21 00:00:00\",\"categories\":[\"Elite\",\"Marketing\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/schedule-autoresponder\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/\",\"changelog\":\"<h4>v2.03 - May 30, 2019<\\/h4>\\n<ul>\\n<li>Update the settings layout a bit for Formidable v4.0<\\/li>\\n<li>Code: Add automation for plugin releases<\\/li>\\n<li>Code: Update for better WordPress code styling<\\/li>\\n<\\/ul>\\n<h4>v2.02 - November 7, 2018<\\/h4>\\n<ul>\\n<li>New: Allow user registration to be scheduled with the automation settings<\\/li>\\n<li>Fix: When a form action is disabled, don\'t trigger it with the automation<\\/li>\\n<\\/ul>\\n<h4>v2.01 - August 1, 2018<\\/h4>\\n<ul>\\n<li>Fix: Replace __DIR__ for php 5.2 support<\\/li>\\n<li>Fix: Prevent php warning with empty dates<\\/li>\\n<li>Fix: Switch to non-deprecated save_settings function<\\/li>\\n<li>A bunch of codestyling changes, messages for translators, and escape translated strings<\\/li>\\n<\\/ul>\\n<h4>v2.0 - September 18, 2017<\\/h4>\\n<ul>\\n<li>New: Trigger automation by date + time when time fields are included in the form<\\/li>\\n<li>Tweak: Add entry and action to frm_autoresponder_time hook<\\/li>\\n<li>Tweak: Change naming to Automation instead of Autoresponder to indicate expanded functionality<\\/li>\\n<li>Tweak: Large refactoring in the code behind the scenes<\\/li>\\n<li>Fix: Show the queued time in the current site timezone<\\/li>\\n<li>Fix: Remove queued events when an entry is deleted<\\/li>\\n<\\/ul>\\n<h4>v1.04 - October 12, 2016<\\/h4>\\n<ul>\\n<li>Add logic to stop scheduled events when the form action logic is not met<\\/li>\\n<li>Automatically update the queue times when an entry is updated<\\/li>\\n<li>Only show countdown on the debug queue if the trigger will be happening within the next 3 days<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-autoresponder\\/formidable-autoresponder.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"168072\":{\"title\":\"Formidable API\",\"name\":\"Formidable API\",\"slug\":\"formidable-api\",\"version\":\"1.08\",\"new_version\":\"1.08\",\"excerpt\":\"Add a full forms API for forms, form fields, views, and entries. Then send submissions to other sites with REST APIs.\",\"id\":168072,\"released\":\"2016-06-08 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-api\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\",\"changelog\":\"<h4>v1.08 - May 27, 2019<\\/h4>\\n<ul>\\n<li>New: Add exclude_script and exclude_style parameters to the frm-api shortcode for excluding specific styles and scripts.<\\/li>\\n<li>New: When using the frm-api shortcode, scripts included on the page will be automatically excluded to prevent duplication.<\\/li>\\n<li>Don\'t allow GET access to field routes for those who don\'t have access to view forms on the back end.<\\/li>\\n<li>Switch shortcodes in data settings when form is duplicated.<\\/li>\\n<li>Fix: Javascript was not included with views, so shortcodes like frm-entry-update-field did not respond.<\\/li>\\n<li>Fix: Clicking the + row button quickly was creating duplicate rows.<\\/li>\\n<li>Fix: The ... was missing in 4.0 for newly added data rows. This fix requires Formidable v4.0.02<\\/li>\\n<\\/ul>\\n<h4>v1.07 - December 26, 2018<\\/h4>\\n<ul>\\n<li>Fix: multiple files were not correctly attached to the created entry<\\/li>\\n<li>Fix: when a file was created via the API, it was being duplicated on the receiving end<\\/li>\\n<li>Fix: When the API plugin is active, and Formidable is not, there was an error when creating a new page with the new WP editor<\\/li>\\n<\\/ul>\\n<h4>v1.06 - October 8, 2018<\\/h4>\\n<ul>\\n<li>New: Add image importing via the REST API. Now an image can be uploaded from another site when the URL is included in the API request.<\\/li>\\n<li>Fix: Prevent CORS error with ajax calls. This resolves issues with double submissions, redirecting with validation errors, and adding rows in a repeater.<\\/li>\\n<li>Fix: The returned form object was different after a form was edited than after create or get.<\\/li>\\n<\\/ul>\\n<h4>v1.05.01 - August 22, 2018<\\/h4>\\n<ul>\\n<li>Fix issue with file fields not saving the received value<\\/li>\\n<\\/ul>\\n<h4>v1.05 - July 27, 2018<\\/h4>\\n<ul>\\n<li>New: Add start_date and end_date parameters to filter the route to get entries<\\/li>\\n<li>Fix: Add better functionality to the search parameter in the route to get entries<\\/li>\\n<li>Fix: Allow the registration validation to trigger during API call<\\/li>\\n<li>Fix: reCaptcha was returning an error when creating an entry<\\/li>\\n<li>Fix: Creating an entry that included dynamic fields was causing a fatal error by using deprecated functions<\\/li>\\n<li>Fix: The route to create a form wasn\'t working correctly<\\/li>\\n<li>Remove old sslverify =&gt; false lines since they are no longer recommended<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-api\\/formidable-api.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-api\\/formidable-api-1.08.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=ryPSxOsjT4%2BpP4wRM3sVBwxt6m0%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-api\\/formidable-api-1.08.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=ryPSxOsjT4%2BpP4wRM3sVBwxt6m0%3D\"},\"20834175\":{\"title\":\"Formidable Payments\",\"name\":\"Formidable Payments\",\"slug\":\"formidable-payments\",\"version\":\"1.14\",\"new_version\":\"1.14\",\"location\":[\"fp.strategy11.com\\/releases\\/payments\\/formidable-payments-1.14.zip\"],\"excerpt\":\"\",\"id\":20834175,\"released\":\"2018-11-06 12:08:25\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-payments\\/\",\"changelog\":\"\",\"plugin\":\"\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"93790\":{\"title\":\"Formidable Pro\",\"name\":\"Formidable Pro\",\"slug\":\"formidable-pro\",\"version\":\"4.04.03\",\"new_version\":\"4.04.03\",\"excerpt\":\"\",\"id\":93790,\"released\":\"2010-02-01 16:27:26\",\"categories\":[\"Personal\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro\\/\",\"changelog\":\"<h4>v4.04.03 - April 23, 2020<\\/h4>\\n<ul>\\n<li>While a file is uploading, disable the Save Draft link too.<\\/li>\\n<li>Added import button on the entries listing page.<\\/li>\\n<li>Adjust the slider styling to make it match the toggle.<\\/li>\\n<li>Improve performance of conditional logic for pricing fields.<\\/li>\\n<li>Fix: Account for conditional logic for skipped pages and hidden sections when calculating totals for pricing fields.<\\/li>\\n<li>Fix: If a dropdown field without a blank option is used in a calculation, correctly get and set the value based on conditional logic.<\\/li>\\n<li>Fix: Required multiple file upload fields were being allowed empty.<\\/li>\\n<li>Fix: Save toggle fields as a single value rather than serialized array.<\\/li>\\n<li>Fix: When truncating a string in a view, don\'t remove extra occurrences of the displayed string.<\\/li>\\n<li>Fix: Don\'t load Formidable scripts on the form settings page when a view is included as a default value in a field.<\\/li>\\n<\\/ul>\\n<h4>v4.04.02 - April 8, 2020<\\/h4>\\n<ul>\\n<li>Tweak: Include the required indicator when field label is the placeholder.<\\/li>\\n<li>New hooks: frm_filter_admin_entries and frm_admin_search_options. These hooks add options to search list entries in custom ways.<\\/li>\\n<li>Include the CSS Layout Classes option in Total fields.<\\/li>\\n<li>Fix: Don\'t require x_order to be included in the frm-graph shortcode to show field options with no responses.<\\/li>\\n<li>Fix: When an \\\"other\\\" box is checked, always require a value to be entered even when another box is checked.<\\/li>\\n<li>Fix: Dependent taxonomies were not getting checked when not on the first page.<\\/li>\\n<li>Fix: With some date formats, date fields inside repeaters were showing the current date in the summary instead of the selected date.<\\/li>\\n<li>Fix: In some cases with conditional logic, the first row in a repeater wasn\'t included in the summary.<\\/li>\\n<li>Auto deactivate Pro after uninstall to prevent tables from being recreated.<\\/li>\\n<li>Fix: Another update for PHP 7.4.<\\/li>\\n<\\/ul>\\n<h4>v4.04.01 - March 2, 2020<\\/h4>\\n<ul>\\n<li>New: Use checkboxes in quantity field settings for selecting the product. This allows for better product variations because the quantity field can be applies to multiple options.<\\/li>\\n<li>New: Include the step option for quantity fields to allow for options like \\\"1.5 hours\\\".<\\/li>\\n<li>Fix: Allow &lt;= in field calculations.<\\/li>\\n<li>Fix: Don\'t allow a negative quantity in pricing fields.<\\/li>\\n<li>Fix: When a number quantity outside the allowed range is used, force the max and min settings.<\\/li>\\n<\\/ul>\\n<h4>v4.04 - February 4, 2020<\\/h4>\\n<ul>\\n<li>New: Pricing fields have been added with a way to use products and quantities, set the currency, and automatically total up the products.<\\/li>\\n<li>New: When a WordPress parameter is added as the View detail slug or in the filters, show a warning to avoid unintended side effects.<\\/li>\\n<\\/ul>\\n<h4>v4.03.07 - January 9, 2020<\\/h4>\\n<ul>\\n<li>Project delight: Add tooltip icons in admin area for consistency instead of using the option label in some cases.<\\/li>\\n<li>Project Delight: Adjust the process before a section is deleted to reinforce the warning about deleting all child fields.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-pro\\/formidable-pro.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-772x250.png\"},\"beta\":{\"version\":\"4.04.03\",\"plugin\":\"formidable\\/formidable.php\",\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-pro-4.04.03.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=KPq0L1y86WJLHIpufrXGNcIsGTA%3D\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-pro-4.04.03.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=KPq0L1y86WJLHIpufrXGNcIsGTA%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-pro-4.04.03.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=KPq0L1y86WJLHIpufrXGNcIsGTA%3D\"},\"20896934\":{\"title\":\"Formidable Pro Basic\",\"name\":\"Formidable Pro Basic\",\"slug\":\"formidable-basic\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":20896934,\"released\":\"2019-07-22 09:03:39\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-basic\\/\",\"changelog\":\"\",\"plugin\":\"\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"19366995\":{\"title\":\"Formidable Pro Business Package\",\"name\":\"Formidable Pro Business Package\",\"slug\":\"formidable-pro-small-business-package\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19366995,\"released\":\"2017-09-01 12:09:09\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-small-business-package\\/\",\"changelog\":\"\",\"plugin\":\"\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"19367001\":{\"title\":\"Formidable Pro Creator Package\",\"name\":\"Formidable Pro Creator Package\",\"slug\":\"formidable-pro-professional-package\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19367001,\"released\":\"2017-09-01 12:10:24\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-professional-package\\/\",\"changelog\":\"\",\"plugin\":\"\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"19366992\":{\"title\":\"Formidable Pro Elite Package\",\"name\":\"Formidable Pro Elite Package\",\"slug\":\"formidable-pro-enterprise-package\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19366992,\"released\":\"2017-09-01 12:09:38\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-enterprise-package\\/\",\"changelog\":\"\",\"plugin\":\"\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"19367654\":{\"title\":\"Formidable Pro Single Site\",\"name\":\"Formidable Pro Single Site\",\"slug\":\"formidable-pro-single-site\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19367654,\"released\":\"2017-09-01 13:36:16\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-single-site\\/\",\"changelog\":\"\",\"plugin\":\"\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"20813244\":{\"title\":\"GetResponse\",\"name\":\"GetResponse\",\"slug\":\"getresponse-wordpress-plugin\",\"version\":\"1.04\",\"new_version\":\"1.04\",\"excerpt\":\"Collect leads in WordPress forms and automatically add them in GetResponse. Then trigger automatic emails and other GetResponse marketing automations.\",\"id\":20813244,\"released\":\"2018-09-06 00:00:00\",\"categories\":[\"Business\",\"Marketing\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/getresponse-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/getresponse-wordpress-plugin\\/\",\"changelog\":\"<h4>v1.04 - October 2, 2019<\\/h4>\\n<ul>\\n<li>Allow 0 for the cycle start day<\\/li>\\n<li>Show more helpful messages in the form action if the GetResponse lists cannot be fetched<\\/li>\\n<li>Update the form action icon for 4.0<\\/li>\\n<li>Remove the debug mode option and use the Logging plugin instead<\\/li>\\n<li>Load all custom fields right away since they aren\'t different for each list. Also don\'t hide the custom fields when a list changes.<\\/li>\\n<li>Prevent error with Formidable disabled<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-getresponse\\/formidable-getresponse.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/getresponse\\/formidable-getresponse-1.04.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=q%2FrphkunyYepUi072fE7CnQUwZM%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/getresponse\\/formidable-getresponse-1.04.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=q%2FrphkunyYepUi072fE7CnQUwZM%3D\"},\"180495\":{\"title\":\"Highrise\",\"name\":\"Highrise\",\"slug\":\"highrise\",\"version\":\"1.06\",\"new_version\":\"1.06\",\"excerpt\":\"Capture leads in your WordPress contact forms, and save them in your Highrise CRM account too.\",\"id\":180495,\"released\":\"2013-12-12 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-highrise\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/\",\"changelog\":\"<h4>v1.06 - February 29, 2016<\\/h4>\\n<ul>\\n<li>Send the custom fields correctly to Highrise<\\/li>\\n<\\/ul>\\n<h4>v1.05 - February 23, 2016<\\/h4>\\n<ul>\\n<li>Fix email field settings in the Highrise action<\\/li>\\n<li>Make sure the license key is a Highrise license<\\/li>\\n<\\/ul>\\n<h4>v1.04 - February 9, 2016<\\/h4>\\n<ul>\\n<li>Added options to separate out address fields. City, State, Zip, and Country can now be mapped separately.<\\/li>\\n<li>Fixed PHP7 warnings<\\/li>\\n<\\/ul>\\n<h4>v1.03 - December 10, 2015<\\/h4>\\n<ul>\\n<li>Make it compatible with the free version of Formidable<\\/li>\\n<\\/ul>\\n<h4>v1.02 - November 13, 2015<\\/h4>\\n<ul>\\n<li>Prevent error when Formidable is disabled<\\/li>\\n<li>Reduce duplication with initializing the api<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-highrise\\/formidable-highrise.php\",\"icons\":{\"1x\":\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2012\\/01\\/highrise.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-highrise\\/formidable-highrise-1.06.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=NryxK6jA%2FR1QNeZ3k%2Fmds%2Borahw%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-highrise\\/formidable-highrise-1.06.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=NryxK6jA%2FR1QNeZ3k%2Fmds%2Borahw%3D\"},\"20811871\":{\"title\":\"HubSpot\",\"name\":\"HubSpot\",\"slug\":\"hubspot-wordpress\",\"version\":\"1.07\",\"new_version\":\"1.07\",\"location\":[\"fp.strategy11.com\\/releases\\/hubspot\\/formidable-hubspot-1.07.zip\"],\"excerpt\":\"Add contacts from your forms to HubSpot.\",\"id\":20811871,\"released\":\"2018-09-04 00:00:00\",\"categories\":[\"CRM\",\"Elite\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/hubspot-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/hubspot-wordpress\\/\",\"changelog\":\"<h4>v1.07 - January 22, 2020<\\/h4>\\n<ul>\\n<li>If the API key is missing or incorrect, allow it to be changed inside the form action<\\/li>\\n<li>Auto clear the cache when the api key is changed<\\/li>\\n<li>Include the option to set the lead source<\\/li>\\n<li>Include options from other property groups<\\/li>\\n<li>Add logging (with the Formidable Logs plugin) and remove debug mode<\\/li>\\n<li>Fix: In some cases, contacts were not being updated<\\/li>\\n<\\/ul>\\n<h4>v1.06 - February 11, 2019<\\/h4>\\n<ul>\\n<li>Allow contacts to be updated when the email address matches an existing contact<\\/li>\\n<li>Properly set and reset the cached API calls when getting properties for mapping<\\/li>\\n<li>Add a PO file<\\/li>\\n<li>Alphabetize the list of properties in the form action<\\/li>\\n<li>Include fields that may not be set as form fields in Hubspot, and exclude read only fields instead<\\/li>\\n<li>Remove the \'Default HubSpot Blog Email Subscription\' mapping to a value rather than a field in the form<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-hubspot\\/formidable-hubspot.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"170641\":{\"title\":\"Locations\",\"name\":\"Locations\",\"slug\":\"locations\",\"version\":\"2.02\",\"new_version\":\"2.02\",\"excerpt\":\"Populate fields with Countries, States\\/Provinces, U.S. Counties, and U.S. Cities. This data can then be used in dependent Data from Entries fields.\",\"id\":170641,\"released\":\"2014-06-21 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-locations\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/locations\\/\",\"changelog\":\"<h4>v2.02 - September 11, 2017<\\/h4>\\n<ul>\\n<li>Fix: Remove invalid city data.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - May 10, 2016<\\/h4>\\n<ul>\\n<li>Switch to using Lookup fields<\\/li>\\n<li>Add a link to reset the locations data<\\/li>\\n<\\/ul>\\n<h4>v2.0 - September 14, 2015<\\/h4>\\n<ul>\\n<li>Add options to import specific location groups<\\/li>\\n<li>Import with Ajax instead of page reloading<\\/li>\\n<li>No more annoying banners<\\/li>\\n<\\/ul>\\n<h4>v2.0b1 - August 18, 2015<\\/h4>\\n<ul>\\n<li>Add options to import specific locations<\\/li>\\n<li> Import with Ajax instead of page reloading<\\/li>\\n<li>No more annoying banners<\\/li>\\n<\\/ul>\\n<h4>v1.0.02 - June 21, 2014<\\/h4>\\n<ul>\\n<li>Fix parse error affecting some users <\\/li>\\n<li>This now requires at least v1.07.05 of Formidable<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-locations\\/us_locations.php\",\"icons\":{\"1x\":\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2013\\/04\\/locations.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-locations\\/formidable-locations-2.02.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=DEtBnbkySZPGV7ZbSWT8YeH6xRQ%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-locations\\/formidable-locations-2.02.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=DEtBnbkySZPGV7ZbSWT8YeH6xRQ%3D\"},\"11927748\":{\"title\":\"Logs\",\"name\":\"Logs\",\"slug\":\"logs\",\"version\":\"1.0b1\",\"new_version\":\"1.0b1\",\"excerpt\":\"See your API requests along with their responses from add-ons including Zapier, Formidable API Webhooks, Salesforce and more.\",\"id\":11927748,\"released\":\"2016-12-19 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/logs\\/\",\"changelog\":\"\",\"plugin\":\"formidable-logs\\/formidable-logs.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/logs\\/formidable-logs-1.0b1.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=ghBfjSQ7l2LV36MHTk3LFE1vVpI%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/logs\\/formidable-logs-1.0b1.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=ghBfjSQ7l2LV36MHTk3LFE1vVpI%3D\"},\"170655\":{\"title\":\"MailChimp\",\"name\":\"MailChimp\",\"slug\":\"mailchimp\",\"version\":\"2.04\",\"new_version\":\"2.04\",\"excerpt\":\"Get on the path to more leads in minutes. Add and update leads in a MailChimp mailing list when a form is submitted.\",\"id\":170655,\"released\":\"2013-10-17 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-mailchimp\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/\",\"changelog\":\"<h4>v2.04 - July 12, 2019<\\/h4>\\n<ul>\\n<li>Add support for MailChimp tags<\\/li>\\n<li>Add double opt-in for unsubscribed users that are resubscribing<\\/li>\\n<li>Add German translation<\\/li>\\n<li>Log API requests in the Formidable Logs<\\/li>\\n<li>Update the styling for the MailChimp icon in the form actions to better match 4.0<\\/li>\\n<li>Clean up the MailChimp form action settings<\\/li>\\n<li>Clarify the groups settings to make them a bit more intuitive<\\/li>\\n<li>Allow text fields to be selected for groups<\\/li>\\n<li>Show error messages along with the \'no mailing lists found\' message for easier debugging<\\/li>\\n<\\/ul>\\n<h4>v2.03 - October 26, 2017<\\/h4>\\n<ul>\\n<li>New: Add option to unsubscribe users.<\\/li>\\n<li>Enhancement: Automatically update subscriber if their email exists in the selected MailChimp list.<\\/li>\\n<li>Enhancement: Remove files and functions deprecated since version 2.0.<\\/li>\\n<\\/ul>\\n<h4>v2.02 - June 12, 2017<\\/h4>\\n<ul>\\n<li>New: Allow Formidable Address fields to be mapped to MailChimp Address fields.<\\/li>\\n<li>Enhancement: Increase limit to 50 for group options retrieved.<\\/li>\\n<li>Enhancement: Initialize database on initial install.<\\/li>\\n<li>Enhancement: Add basic PHP error log messages for failed subscription.<\\/li>\\n<li>Fix: Don\'t generate PHP error if a timeout occurs when fetching group options.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - March 30, 2017<\\/h4>\\n<ul>\\n<li>Enhancement: Increase merge and group limit to 30<\\/li>\\n<li>Fix: Improve date compatibility between MailChimp and Formidable<\\/li>\\n<li>Fix: Allow groups to be used when running free version of Formidable<\\/li>\\n<li>Fix: Store MailChimp settings as array, rather than object, in database<\\/li>\\n<\\/ul>\\n<h4>v2.0 - December 16, 2016<\\/h4>\\n<ul>\\n<li>Enhancement: Add pot file for more easily adding translations<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-mailchimp\\/formidable-mailchimp.php\",\"icons\":{\"1x\":\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2013\\/04\\/mailchimp.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-mailchimp\\/formidable-mailchimp-2.04.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=5TagEJ3dMC94rawxYg2%2B7hL8yQY%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-mailchimp\\/formidable-mailchimp-2.04.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=5TagEJ3dMC94rawxYg2%2B7hL8yQY%3D\"},\"20781560\":{\"title\":\"MailPoet Newsletters\",\"name\":\"MailPoet Newsletters\",\"slug\":\"mailpoet-newsletters\",\"version\":\"1.01\",\"new_version\":\"1.01\",\"excerpt\":\"Send WordPress newsletters from your own site with MailPoet. And use Formidable to for your newsletter signup forms.\",\"id\":20781560,\"released\":\"2018-06-05 00:00:00\",\"categories\":[\"Creator\",\"Marketing\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/mailpoet-newsletter-signup-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/mailpoet-newsletters\\/\",\"changelog\":\"<h4>v1.01 - September 14, 2018<\\/h4>\\n<ul>\\n<li>Fix error after form submit on some sites<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-mailpoet\\/formidable-mailpoet.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/mailpoet\\/formidable-mailpoet-1.01.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=31UHTLrOfMZgV%2FFPI%2BHPJh74TVQ%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/mailpoet\\/formidable-mailpoet-1.01.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=31UHTLrOfMZgV%2FFPI%2BHPJh74TVQ%3D\"},\"163255\":{\"title\":\"Math Captcha\",\"name\":\"Math Captcha\",\"slug\":\"math-captcha\",\"version\":\"1.15\",\"new_version\":\"1.15\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-math-captcha\\/formidable-math-captcha-1.15.zip\"],\"excerpt\":\"\",\"id\":163255,\"released\":\"2015-10-12 14:00:35\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/math-captcha\\/\",\"changelog\":\"\",\"plugin\":\"\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"172715\":{\"title\":\"PayPal Basic\",\"name\":\"PayPal Basic\",\"slug\":\"paypal-standard-single-payments\",\"version\":\"3.08\",\"new_version\":\"3.08\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-paypal\\/formidable-paypal-3.08.zip\"],\"excerpt\":\"\",\"id\":172715,\"released\":\"2015-10-21 12:20:35\",\"categories\":[\"Ecommerce\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard-single-payments\\/\",\"changelog\":\"<h4>v3.02 - September 14, 2018<\\/h4>\\n<ul>\\n<li>Merge the older grandfathered PayPal addon with the updated version.<\\/li>\\n<\\/ul>\\n<h4>v2.04.07 - January 25, 2015<\\/h4>\\n<ul>\\n<li>Allow amounts with . for thousands and , for decimal. If a . is used in the decimal place for the amount when the currency uses a , make it work anyway<\\/li>\\n<li>Redirect to PayPal correctly without Pro<\\/li>\\n<li>Make sure email setting is trimmed before comparing<\\/li>\\n<li>Add download ID to make sure correct license is used<\\/li>\\n<\\/ul>\\n<h4>v2.04.06 - November 17, 2015<\\/h4>\\n<ul>\\n<li>Prevent errors when updating Formidable<\\/li>\\n<\\/ul>\\n<h4>v2.04.05<\\/h4>\\n<ul>\\n<li>Format decimals with . to allow float to work correctly<\\/li>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<\\/ul>\\n<h4>v2.04.04<\\/h4>\\n<ul>\\n<li>Allow the amount to be included in the \\\"other\\\" option<\\/li>\\n<li>Modify the user-agent in the IPN verification to prevent errors from PayPal<\\/li>\\n<\\/ul>\\n<h4>v2.04.03<\\/h4>\\n<ul>\\n<li>Save the IPN parameters with the payment in the format that allows for multiple IPN notifications<\\/li>\\n<li>Fix sending users to Paypal when 2.x is installed, but the old settings haven\'t been moved to a form action<\\/li>\\n<li>Increased security related to XSS add_query_arg vulnerability<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"163257\":{\"title\":\"PayPal Standard\",\"name\":\"PayPal Standard\",\"slug\":\"paypal-standard\",\"version\":\"3.09\",\"new_version\":\"3.09\",\"excerpt\":\"Collect instant payments and recurring payments to automate your online business. Calculate a total and send customers on to PayPal.\",\"id\":163257,\"released\":\"2012-09-04 00:00:00\",\"categories\":[\"Business\",\"Ecommerce\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-paypal\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/\",\"changelog\":\"<h4>v3.09 - July 30, 2019<\\/h4>\\n<ul>\\n<li>New: Account for tax when comparing amounts with the IPN<\\/li>\\n<li>Update form action icon and color<\\/li>\\n<li>Replace call to deprecated function with FrmFieldsHelper::get_user_display_name<\\/li>\\n<li>Requires Formidable v3.0+<\\/li>\\n<\\/ul>\\n<h4>v3.08 - November 18, 2017<\\/h4>\\n<ul>\\n<li>Allow field shortcodes in more payments settings so values can be set from the form: PayPal email, trial amount, repeat period, trial length. This also allows payments to go to other members on your site.<\\/li>\\n<li>Allow regular WordPress shortcodes and Formidable dynamic values (ie [email]) in addition to basic field shortcodes<\\/li>\\n<\\/ul>\\n<h4>v3.07 - November 10, 2017<\\/h4>\\n<ul>\\n<li>Process shortcodes in after payment settings. Allow entry values, default values, and other shortcodes.<\\/li>\\n<li>Clarify the payment trigger options with \\\"Successful PayPal payment\\\"<\\/li>\\n<\\/ul>\\n<h4>v3.06.01 - October 12, 2017<\\/h4>\\n<ul>\\n<li>New: Add Paypal triggers to API action.<\\/li>\\n<li>Fix: Show update notice for administrators only.<\\/li>\\n<li>Fix: Add missing close select tag in global settings.<\\/li>\\n<\\/ul>\\n<h4>v3.06 - December 9, 2016<\\/h4>\\n<ul>\\n<li>New: Add Paypal trigger to registration action for the registration 2.0 release<\\/li>\\n<li>Tweak: Don\'t add columns to entries when there is no form. This is in preparation for Formidable v2.03<\\/li>\\n<li>Tweak: If the log file setting is empty, fill it with the default setting<\\/li>\\n<li>Fix: Show correct values in the \\\"paid\\\" column on the Entries listing page if no payments have been made<\\/li>\\n<li>Fix: Add a fallback if invoice is missing from the IPN. This will help payments get matched up if the id of the payment doesn\'t get sent back to your site.<\\/li>\\n<li>Fix: Payment expiration dates are showing in 1970<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-paypal\\/formidable-paypal.php\",\"icons\":{\"1x\":\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/PayPal-form-action.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-paypal\\/formidable-paypal-3.09.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=VYCHtlwyEDduesk8rCZKrHTiJsc%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-paypal\\/formidable-paypal-3.09.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=VYCHtlwyEDduesk8rCZKrHTiJsc%3D\"},\"209561\":{\"title\":\"Polylang\",\"name\":\"Polylang\",\"slug\":\"polylang\",\"version\":\"1.07\",\"new_version\":\"1.07\",\"excerpt\":\"Create bilingual or multilingual forms with help from Polylang.\",\"id\":209561,\"released\":\"2016-01-22 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-polylang\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/\",\"changelog\":\"<h4>v1.07 - February 8, 2018<\\/h4>\\n<ul>\\n<li>Add rootline titles to translation settings<\\/li>\\n<li>Make repeating fields translatable<\\/li>\\n<li>Fix error message when no languages have been added in Polylang<\\/li>\\n<\\/ul>\\n<h4>v1.06 - December 8, 2016<\\/h4>\\n<ul>\\n<li>Fix: Adjusted the way form strings are saved in wp_options table to resolve packet size error.<\\/li>\\n<\\/ul>\\n<h4>v1.05 - May 24, 2016<\\/h4>\\n<ul>\\n<li>Improve compatibility with Polylang 1.9+<\\/li>\\n<\\/ul>\\n<h4>v1.04 - February 11, 2016<\\/h4>\\n<ul>\\n<li>Translate Add and Remove buttons for repeating sections<\\/li>\\n<li>Clear original strings whenever a form is updated instead of only when the translation page is visited<\\/li>\\n<\\/ul>\\n<h4>v1.03 - February 2, 2016<\\/h4>\\n<ul>\\n<li>Show a more helpful message if Polylang isn\'t installed<\\/li>\\n<li>Translate values from confirmation fields<\\/li>\\n<li>Use the \\\"previous\\\" label from the settings instead of defaulting to \\\"Previous\\\"<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-polylang\\/frm-poly.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-polylang\\/formidable-polylang-1.07.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=VKzcbwenFfNSp51n4k81GzZcEVk%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-polylang\\/formidable-polylang-1.07.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=VKzcbwenFfNSp51n4k81GzZcEVk%3D\"},\"20815759\":{\"title\":\"Quiz Maker\",\"name\":\"Quiz Maker\",\"slug\":\"quiz-maker\",\"version\":\"1.01\",\"new_version\":\"1.01\",\"excerpt\":\"Turn your forms into automated quizzes. Add questions and submit the quiz key. Then all the grading is done for you.\",\"id\":20815759,\"released\":\"2018-09-13 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/quiz-maker-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/quiz-maker\\/\",\"changelog\":\"\",\"plugin\":\"formidable-quizzes\\/formidable-quizzes.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/quiz\\/formidable-quizzes-1.01.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=UqwdVqE4CKyYSJoye9TOQlXKd9I%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/quiz\\/formidable-quizzes-1.01.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=UqwdVqE4CKyYSJoye9TOQlXKd9I%3D\"},\"20266559\":{\"title\":\"Salesforce\",\"name\":\"Salesforce\",\"slug\":\"salesforce\",\"version\":\"2.04\",\"new_version\":\"2.04\",\"location\":[\"fp.strategy11.com\\/releases\\/salesforce\\/formidable-salesforce-2.04.zip\"],\"excerpt\":\"Add new contacts and leads into your Salesforce CRM directly from the WordPress forms on your site.\",\"id\":20266559,\"released\":\"2018-05-31 00:00:00\",\"categories\":[\"CRM\",\"Elite\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/salesforce-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/\",\"changelog\":\"<h4>v2.04 - December 10, 2019<\\/h4>\\n<ul>\\n<li>New: Show Salesforce Authentication errors on the global settings page<\\/li>\\n<li>Add icon in global settings<\\/li>\\n<li>Use font icon instead of image in form action<\\/li>\\n<li>Remove debug mode in favor of logging<\\/li>\\n<li>Tweak: Clear the settings cache with a link instead of ajax for more reliable cache clearing<\\/li>\\n<li>Fix: Updating data in Salesforce wasn\'t working correctly<\\/li>\\n<li>Fix: There was an error when Formidable was disabled<\\/li>\\n<\\/ul>\\n<h4>v2.03 - October 11, 2018<\\/h4>\\n<ul>\\n<li>New: Add option to update Salesforce records<\\/li>\\n<li>New: Add support for Salesforce Boolean fields<\\/li>\\n<li>Fix: Multiselect picklist fields weren\'t getting correct values from a checkbox<\\/li>\\n<li>Fix: Date fields set as a post field were sending the wrong date format<\\/li>\\n<li>Fix: Fatal error caused by date fields in certain formats<\\/li>\\n<\\/ul>\\n<h4>v2.02 - June 14, 2018<\\/h4>\\n<ul>\\n<li>Add API calls to <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/api-logs\\/\\\">Logs plugin<\\/a><\\/li>\\n<li>Add more messages for debugging<\\/li>\\n<li>Fix issue with authenticating on an SSL site<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-salesforce\\/formidable-salesforce.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"163248\":{\"title\":\"Signature\",\"name\":\"Signature\",\"slug\":\"signature\",\"version\":\"2.03\",\"new_version\":\"2.03\",\"excerpt\":\"Add an electronic signature to your WordPress form. The visitor may write their signature with a trackpad\\/mouse or type it.\",\"id\":163248,\"released\":\"2013-03-04 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-signature\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/\",\"changelog\":\"<h4>v2.03 - September 24, 2019<\\/h4>\\n<ul>\\n<li>New: Make field labels translatable with WPML<\\/li>\\n<li>Switch back to frm font instead of Font Awesome to avoid conflicts and an external asset.<\\/li>\\n<li>Fix: Importing signatures in an entry wasn\'t working<\\/li>\\n<\\/ul>\\n<h4>v2.02 - January 30, 2019<\\/h4>\\n<ul>\\n<li>Fix: Show the signature correctly in views and emails when Pro is running<\\/li>\\n<\\/ul>\\n<h4>v2.01 - January 16, 2019<\\/h4>\\n<ul>\\n<li>New: Give the signature field a face lift and show the field in the builder<\\/li>\\n<li>New: Show the typed option by default when javascript fails instead of showing nothing<\\/li>\\n<li>New: Don\'t clear the typed box when switching tabs<\\/li>\\n<li>Fix: The signature wasn\'t showing correctly in an email<\\/li>\\n<li>Fix: The signature field wasn\'t appearing for in-place edit<\\/li>\\n<\\/ul>\\n<h4>v2.0 - January 14, 2019<\\/h4>\\n<ul>\\n<li>New: The signature value immediately creates the image when the signature is saved and saves the url of the image for easier display. On update, all previous signatures are updated to the new format saved in the database.<\\/li>\\n<li>New: Add signature support for ajax forms and repeating sections.<\\/li>\\n<li>New: Allow importing from URL and include signature URL in XML.<\\/li>\\n<li>New: Use the 3.0 field object for better forward compatibility and lower baseline memory.<\\/li>\\n<li>New: Requires Formidable 3.0+<\\/li>\\n<li>New: Combine scripts into one file, and don\'t load IE8 fallback script in all browsers.<\\/li>\\n<li>New: Keep drawn signature when switching pages and when there are form validation errors.<\\/li>\\n<li>New: Allow signature editing in single-page form until draft is submitted.<\\/li>\\n<li>Fix: Remove frm_email_value hook for newer versions of Formidable.<\\/li>\\n<li>Fix: Prevent error message when Formidable is disabled<\\/li>\\n<li>Fix: Show the signature image with https when needed<\\/li>\\n<li>Fix: The hide tabs options weren\'t saving since v3.0<\\/li>\\n<\\/ul>\\n<h4>v2.0b1 - December 7, 2017<\\/h4>\\n<ul>\\n<li>New: Add signature support with ajax forms and repeating sections<\\/li>\\n<li>New: Allow importing from URL and include signature URL in XML<\\/li>\\n<li>Fix: Keep drawn signature when switching pages.<\\/li>\\n<li>Fix: Keep drawn signature present when there are form errors.<\\/li>\\n<li>Fix: Allow signature editing until draft is submitted.<\\/li>\\n<li>Fix: Remove frm_email_value hook for newer versions of Formidable.<\\/li>\\n<li>Fix: Resolve error message when Formidable is disabled<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-signature\\/signature.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-signature\\/formidable-signature-2.03.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=QhALwyict3CltCO1JZmHV%2FfOZ9c%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-signature\\/formidable-signature-2.03.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=QhALwyict3CltCO1JZmHV%2FfOZ9c%3D\"},\"310430\":{\"title\":\"Stripe\",\"name\":\"Stripe\",\"slug\":\"stripe\",\"version\":\"2.02\",\"new_version\":\"2.02\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-stripe\\/formidable-stripe-2.02.zip\"],\"excerpt\":\"Any Formidable forms on your site can accept credit card payments without users ever leaving your site.\",\"id\":310430,\"released\":\"2016-04-26 00:00:00\",\"categories\":[\"Ecommerce\",\"Elite\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/stripe\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/\",\"changelog\":\"<h4>v2.02 - March 9, 2020<\\/h4>\\n<ul>\\n<li>Update the Stripe library.<\\/li>\\n<li>New: Include the first and last name on a newly created customer.<\\/li>\\n<li>Fix: If a payment attempt failed after the entry was created, the credit card field was hidden and couldn\'t be updated.<\\/li>\\n<li>Fix: The previous button on the same page as a credit card field wasn\'t doing anything.<\\/li>\\n<li>Fix: Payments weren\'t being collected correctly in Internet Explorer.<\\/li>\\n<li>Fix: The refund button was returning a \\\"Failed\\\" message with some payments.<\\/li>\\n<li>Fix: When the font-family setting included incorrect characters, the credit card field wasn\'t displayed.<\\/li>\\n<li>Fix: Some error messages were being bypassed like strong password and invisible recaptcha.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - September 19, 2019<\\/h4>\\n<ul>\\n<li>New: Hide the Zip\\/Postal code. It\'s not a great user experience, and isn\'t necessary.<\\/li>\\n<li>Fix: Trigger database install or upgrade when activated site wide in WP multisite.<\\/li>\\n<li>Fix: Prevent a fatal error with undefined function on some sites.<\\/li>\\n<li>Fix: Prevent issues with a subsequent payment when customer is deleted in Stripe.<\\/li>\\n<\\/ul>\\n<h4>v2.0 - September 9, 2019<\\/h4>\\n<ul>\\n<li>New: Add support for SCA, Stripe elements, and Secure 3d Payments. More styling for the new credit card field is coming with Formidable v4.02.04.<\\/li>\\n<li>New: Set the locale for the credit card field and instant error messages.<\\/li>\\n<li>New: Add option in payment form actions to authorize one-time payments without capture.<\\/li>\\n<li>New: Include an option to process one-time payments before the entry is created.<\\/li>\\n<li>New: Add minified javascript.<\\/li>\\n<li>Reverse the order of private and public keys to match Stripe account page.<\\/li>\\n<li>Hide settings in credit card field in forms with Stripe including sub field descriptions, placeholders, and options to save card info. These are no longer used with the more secure credit card field.<\\/li>\\n<li>Switch to Stripe js v3<\\/li>\\n<li>Add Bangladeshi Taka currency<\\/li>\\n<li>Fix: some API versions were returning an error when canceling a subscription.<\\/li>\\n<li>Update form action icon<\\/li>\\n<li>Remove incorrect edit link for a subscription<\\/li>\\n<li>Fix error with wrong class name \\\"FrmTransSubscriptionsController\\\"<\\/li>\\n<li>Remove usage of deprecated FrmDb class<\\/li>\\n<\\/ul>\\n<h4>v2.0b2 - September 7, 2019<\\/h4>\\n<ul>\\n<li>Add option in payment form actions to authorize one-time payments without capture.<\\/li>\\n<li>Set the locale for the credit card field including error messages.<\\/li>\\n<li>Reverse the order of private and public keys to match Stripe account page.<\\/li>\\n<li>Hide settings in credit card field in forms with Stripe including sub field descriptions, placeholders, and options to save card info.<\\/li>\\n<li>Fix: Prevent 403 errors on return from Secure 3D approval by generating the success message on return.<\\/li>\\n<\\/ul>\\n<h4>v2.0b - September 2, 2019<\\/h4>\\n<ul>\\n<li>New: Add support for SCA, Stripe elements, and Secure 3d Payments.<\\/li>\\n<li>New: Include an option to process one-time payments before the entry is created.<\\/li>\\n<li>New: Add minified javascript.<\\/li>\\n<li>Switch to Stripe js v3.<\\/li>\\n<li>Add Bangladeshi Taka currency<\\/li>\\n<li>Fix: some API versions were returning an error when canceling a subscription.<\\/li>\\n<li>Update form action icon<\\/li>\\n<li>Remove incorrect edit link for a subscription<\\/li>\\n<li>Fix error with wrong class name \\\"FrmTransSubscriptionsController\\\"<\\/li>\\n<li>Remove usage of deprecated FrmDb class<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-stripe\\/formidable-stripe.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"168460\":{\"title\":\"Twilio\",\"name\":\"Twilio\",\"slug\":\"twilio\",\"version\":\"1.08\",\"new_version\":\"1.08\",\"excerpt\":\"Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when entries are submitted or updated.\",\"id\":168460,\"released\":\"2014-03-10 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/twilio-add-on\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/\",\"changelog\":\"<h4>v1.08 - January 16, 2017<\\/h4>\\n<ul>\\n<li>Improved: Removed deprecated instructions and screenshot.<\\/li>\\n<li>Improved: Removed deprecated valign attribute from table HTML.<\\/li>\\n<\\/ul>\\n<h4>v1.07 - November 1, 2016<\\/h4>\\n<ul>\\n<li>When an SMS message is received, run validation and respond with a text that includes any error messages<\\/li>\\n<li>When a text is received successfully, respond with the form success message, filtered list like a form does.<\\/li>\\n<li>Allow for the \\\"other\\\" fields to be filled from a text submission<\\/li>\\n<li>Check if license number is for correct plugin<\\/li>\\n<li>Don\'t try to send messages to a blank number<\\/li>\\n<\\/ul>\\n<h4>v1.06 - November 13, 2015<\\/h4>\\n<ul>\\n<li>Add frmtwlo_format_number filter for formatting the phone number before it\'s sent to Twilio<\\/li>\\n<li>Fix license activation<\\/li>\\n<\\/ul>\\n<h4>v1.05 - October 16, 2015<\\/h4>\\n<ul>\\n<li>Add frmtwlo_sms_response hook for changing the message in the text<\\/li>\\n<li>Allow for 8-digit numbers. +65 phone numbers were having trouble because we assumed they should be US numbers. Now if the number starts with a +, don\'t add the +1<\\/li>\\n<li>Get updates from FormidableForms.com<\\/li>\\n<\\/ul>\\n<h4>v1.04 - September 11, 2015<\\/h4>\\n<ul>\\n<li>Fix error with accepting votes<\\/li>\\n<li>Send a response when a text vote is received<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-twilio\\/formidable-twilio.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-twilio\\/formidable-twilio-1.08.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=wEQf4Lmz%2F71a%2B%2FW%2BrMe%2FfwSzRAU%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-twilio\\/formidable-twilio-1.08.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=wEQf4Lmz%2F71a%2B%2FW%2BrMe%2FfwSzRAU%3D\"},\"168456\":{\"title\":\"Upload Importer\",\"name\":\"Upload Importer\",\"slug\":\"upload-importer\",\"version\":\"1.0.01\",\"new_version\":\"1.0.01\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-upload-importer\\/formidable-upload-importer-1.0.01.zip\"],\"excerpt\":\"\",\"id\":168456,\"released\":\"2015-10-16 17:05:47\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/upload-importer\\/\",\"changelog\":\"<h4>v1.0.01<\\/h4>\\n<ul>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<\\/ul>\\n<h4>v1.0<\\/h4>\\n<ul>\\n<li>Allow importing of multiple file uploads<\\/li>\\n<li>Replace deprecated mime_content_type with fileinfo<\\/li>\\n<li>Update auto-updating<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"173984\":{\"title\":\"User Registration\",\"name\":\"User Registration\",\"slug\":\"user-registration\",\"version\":\"2.02.02\",\"new_version\":\"2.02.02\",\"excerpt\":\"Give new users access to your site quickly and painlessly. Plus edit profiles and login from the front end.\",\"id\":173984,\"released\":\"2011-12-21 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/user-registration\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\",\"changelog\":\"<h4>v2.02.02 - November 14, 2019<\\/h4>\\n<ul>\\n<li>New: Update for better 4.0 UI and setting layouts.<\\/li>\\n<li>New: Allow rich text fields in registration form action settings.<\\/li>\\n<li>New: Better multilingual support for global messages.<\\/li>\\n<li>New: Added frmreg_global_messages and frmreg_global_pages hooks.<\\/li>\\n<li>Fix: WPML compatibility - Language went back to default language after login.<\\/li>\\n<li>Fix: WPML compatibility - The email confirmation link didn\'t keep the selected language.<\\/li>\\n<li>Fix: Prevent errors when a registration form action is disabled.<\\/li>\\n<li>Fix: API calls were redirected to login page.<\\/li>\\n<li>Fix: Prevent a redirect with the reset password link. If a reset password page was selected in the global settings, the link pointed to the regular WP reset page which redirected.<\\/li>\\n<li>Fix: If custom parameters are included on the login redirect url, keep the correct encoding.<\\/li>\\n<li>Fix: Prevent a + in usernames in order to match WordPress. This was causing issues with auto login and email moderation.<\\/li>\\n<li>Fix: After a user was automatically logged in, wp_get_current_user() in other plugins wasn\'t correct.<\\/li>\\n<\\/ul>\\n<h4>v2.02.01 - September 26, 2018<\\/h4>\\n<ul>\\n<li>Allow user profile updating to be triggered after a successful PayPal payment<\\/li>\\n<li>Fix: Show a blank form to logged in users who have permission to create other users, even if they have an entry in the form<\\/li>\\n<li>New: Added frmreg_allow_edit hook for other plugins to set when profile editing is allowed<\\/li>\\n<\\/ul>\\n<h4>v2.02 - September 14, 2018<\\/h4>\\n<ul>\\n<li>New: Get the page source to check if the page includes the form specified in the global settings (login form, reset password, or registration). This allows for these forms to be included in a sidebar or footer without returning error messages when the global settings are saved.<\\/li>\\n<li>New: Add hooks to change selected pages: frmreg_login_page_id, frmreg_resetpass_page_id, frmreg_register_page_id<\\/li>\\n<li>New: Allow a subsite to be created by a logged in user<\\/li>\\n<li>Fix: Allow user creation via API call<\\/li>\\n<li>Fix: Allow either set password by email or user moderation, but not both<\\/li>\\n<li>Fix: Issue with losing parameters when redirecting for login<\\/li>\\n<li>Fix: The user ID field was defaulting to the current user on registration forms when it should be empty<\\/li>\\n<li>Fix: If an error message is included in the url for password reset, show it instead of an unknown error<\\/li>\\n<li>Fix: Update for WP 3.9 compatibility<\\/li>\\n<li>Fix: Update for deprecated functions: save_settings, FrmForm::get_id_by_key, FrmProFieldsHelper::get_displayed_file_html<\\/li>\\n<li>New: Add Chinese translations<\\/li>\\n<\\/ul>\\n<h4>v2.01.01 - October 26, 2017<\\/h4>\\n<ul>\\n<li>New: Add frmreg_after_create_subsite action.<\\/li>\\n<li>New: Add Norwegian translation.<\\/li>\\n<li>New: Add frmreg_login_error filter.<\\/li>\\n<li>Fix: Make sure show lost password and layout settings apply to widget.<\\/li>\\n<li>Fix: Convert special characters to standard characters in subdomain.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - October 4, 2017<\\/h4>\\n<ul>\\n<li>New: Add global registration page setting.<\\/li>\\n<li>Enhancement: Allow radio and select fields for display name.<\\/li>\\n<li>Enhancement: Change field label in lost password form.<\\/li>\\n<li>Enhancement: Show hidden field type in Subdirectory or Subdomain settings.<\\/li>\\n<li>Enhancement: Always allow administrators to edit profiles through registration form.<\\/li>\\n<li>Enhancement: Redirect to login page if activation link is clicked again after activation.<\\/li>\\n<li>Fix: Show error messages in reset password form.<\\/li>\\n<li>Fix: Set logout label parameter correctly in shortcode builder.<\\/li>\\n<li>Fix: Passwords with special characters not saving as expected.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-registration\\/formidable-registration.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-registration\\/formidable-registration-2.02.02.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=7QMPqXXGmPzaVE6d9zKdsYb1UhI%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-registration\\/formidable-registration-2.02.02.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=7QMPqXXGmPzaVE6d9zKdsYb1UhI%3D\"},\"170649\":{\"title\":\"User Tracking\",\"name\":\"User Tracking\",\"slug\":\"user-tracking\",\"version\":\"1.0\",\"new_version\":\"1.0\",\"excerpt\":\"Track which pages a user visits prior to submitting a form.\",\"id\":170649,\"released\":\"2015-10-19 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-user-tracking\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-tracking\\/\",\"changelog\":\"<h4>v1.0 - August 25, 2016<\\/h4>\\n<ul>\\n<li>Save the tracking info before the email is sent<\\/li>\\n<li>Make sure license key is correct before saving<\\/li>\\n<\\/ul>\\n<h4>v1.0b3<\\/h4>\\n<ul>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<\\/ul>\\n<h4>v1.0b2<\\/h4>\\n<ul>\\n<li>Skip tracking wp-admin\\/ajax.php<\\/li>\\n<li>Remove base url from page list<\\/li>\\n<li>Codestyling to meet WP standards<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-user-tracking\\/formidable-user-tracking.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-user-tracking\\/formidable-user-tracking-1.0.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=i8rNSCC3FAbHe5PGmKtO6h738mQ%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-user-tracking\\/formidable-user-tracking-1.0.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=i8rNSCC3FAbHe5PGmKtO6h738mQ%3D\"},\"174006\":{\"title\":\"WooCommerce\",\"name\":\"WooCommerce\",\"slug\":\"woocommerce\",\"version\":\"1.09\",\"new_version\":\"1.09\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-woocommerce\\/formidable-woocommerce-1.09.zip\"],\"excerpt\":\"Are your WooCommerce product forms too basic? Add custom fields to a product form and collect more data when it is added to the cart.\",\"id\":174006,\"released\":\"2016-01-19 00:00:00\",\"categories\":[\"Ecommerce\",\"Elite\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-woocommerce\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/woocommerce\\/\",\"changelog\":\"\",\"plugin\":\"formidable-woocommerce\\/formidable-woocommerce.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\"},\"169998\":{\"title\":\"WP Multilingual\",\"name\":\"WP Multilingual\",\"slug\":\"wp-multilingual\",\"version\":\"1.06\",\"new_version\":\"1.06\",\"excerpt\":\"Translate your forms into multiple languages using the Formidable-integrated WPML plugin.\",\"id\":169998,\"released\":\"2013-04-29 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-multi-language\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/\",\"changelog\":\"<h4>v1.04 - October 25th, 2016<\\/h4>\\n<ul>\\n<li>Allow translation of Add\\/Remove buttons<\\/li>\\n<li>Replace some deprecated WPML function calls and constants<\\/li>\\n<li>Make sure wpml strings are updated when form is updated<\\/li>\\n<li>Do not translate default value for all field types<\\/li>\\n<li>Make sure incorrect field message is translated with ajax submit<\\/li>\\n<\\/ul>\\n<h4>v1.03.03 - March 28, 2016<\\/h4>\\n<ul>\\n<li>Send the language in the ajax url differently to prevent 404s during ajax calls. This should help with duplicate submissions.<\\/li>\\n<li>Prevent a license key from being saved for another plugin<\\/li>\\n<\\/ul>\\n<h4>v1.03.02<\\/h4>\\n<ul>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<li>Make it compatible with the free version of Formidable<\\/li>\\n<li>Fix errors when Formidable or WPML are deactivated<\\/li>\\n<li>Include the current language during ajax calls<\\/li>\\n<li>Force an English start language for strings for v2.2.6 of the WPML strings plugin<\\/li>\\n<li>Fix the issue with the default language in WPML being set different than the string language<\\/li>\\n<li>If values in the form settings page changed, update them when going to the translation settings<\\/li>\\n<li>Make sure the \\\"previous\\\" label is translatable when drafts are not enabled<\\/li>\\n<li>Don\'t show strings for inactive languages<\\/li>\\n<li>Translate fields in repeating sections<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-wpml\\/formidable-wpml.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-wpml\\/formidable-wpml-1.06.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=8927ocxtMCQhq9q33LcNtbxqZbM%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-wpml\\/formidable-wpml-1.06.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=8927ocxtMCQhq9q33LcNtbxqZbM%3D\"},\"170645\":{\"title\":\"Zapier\",\"name\":\"Zapier\",\"slug\":\"zapier\",\"version\":\"1.06\",\"new_version\":\"1.06\",\"excerpt\":\"Connect with hundreds of applications through Zapier. Automatically insert a Google spreadsheet row, tweet, or upload to Dropbox.\",\"id\":170645,\"released\":\"2014-06-04 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-zapier\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\",\"changelog\":\"<h4>v1.06 - February 6, 2019<\\/h4>\\n<ul>\\n<li>Add a new fallback for authentication with the API key in the url. When the API key continues to say it is missing, add add_filter( \'frm_zap_url_auth\', \'__return_true\' ); in the theme functions.php.<br \\/>\\nThen use this url in Zapier:<br \\/>\\nhttps:\\/\\/yoursite.com\\/API-KEY-GOES-HERE\\/\\n<\\/li>\\n<li>New: Add frm_zap_sent hook to run after an entry is sent to Zapier<\\/li>\\n<li>Fix: Don\'t send draft entries to Zapier<\\/li>\\n<li>Added automation to release new versions<\\/li>\\n<\\/ul>\\n<h4>v1.05 - July 31, 2018<\\/h4>\\n<ul>\\n<li>New: Add frmzap_entry_array filter to customize the entry values sent to Zapier<\\/li>\\n<li>New: Add logging of Zapier responses into the Logs addon<\\/li>\\n<li>Fix: Prevent a blank response when fetching the list of forms. This was happening on some sites with a lot of forms<\\/li>\\n<\\/ul>\\n<h4>v1.04 - July 31, 2017<\\/h4>\\n<p>Fix a conflict with API keys between the Zapier and API addons on a multisite network. This solves the issue with the incorrect API key error message in Zapier.<\\/p>\\n<h4>v1.03 - June 5, 2017<\\/h4>\\n<ul>\\n<li>Allow field ids to be used in Zapier mapping instead of only field keys<\\/li>\\n<li>Increase the limit of triggered zaps per form from 5 to 40<\\/li>\\n<li>Fix overloaded property error when setting the user for authentication<\\/li>\\n<li>Prevent error reporting during API calls so the response is formatted correctly<\\/li>\\n<\\/ul>\\n<h4>v1.02 - November 13, 2015<\\/h4>\\n<ul>\\n<li>Prevent error when Formidable is disabled<\\/li>\\n<li>Use static classes for fields and forms<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-zapier\\/formidable-zapier.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"expires\":\"1588636799\",\"code\":\"valid\",\"date\":\"2015-04-17 12:30:51\",\"type\":\"business\",\"url\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-zapier\\/formidable-zapier-1.06.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=6zU3kk25Zpqjd8StNX6EgmyDQzM%3D\",\"timeout\":1588141614,\"package\":\"http:\\/\\/fp.strategy11.com\\/releases\\/formidable-zapier\\/formidable-zapier-1.06.zip?AWSAccessKeyId=AKIAJ3QHAN4BJMSYZ3ZQ&Expires=1588141614&Signature=6zU3kk25Zpqjd8StNX6EgmyDQzM%3D\"}}\";s:7:\"version\";s:7:\"4.04.02\";}','no'),(16264,'frm_ab76900eae397286471a1476d8381b46','2020-04-22 08:30:00','yes'),(16265,'frm_0a1396333fe49f03c41162985167ed12','2020-04-24 21:26:32','yes'),(16278,'et_support_site_id','o+UIp3f$MZ^b2xC=kOTY','yes'),(16279,'et_safe_mode_plugins_whitelist','a:8:{i:0;s:15:\"etdev/etdev.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:19:\"monarch/monarch.php\";i:3;s:29:\"divi-builder/divi-builder.php\";i:4;s:27:\"ari-adminer/ari-adminer.php\";i:5;s:31:\"query-monitor/query-monitor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(16280,'et_support_center_installed','true','yes'),(16599,'frm-usage-uuid','b87f44e3dc72247ea48d63762378b2c7','no'),(16656,'et_bfb_settings','a:2:{s:10:\"enable_bfb\";s:2:\"on\";s:10:\"toggle_bfb\";s:2:\"on\";}','yes'),(16810,'duplicate_post_version','3.2.3','yes'),(16811,'duplicate_post_show_notice','0','no'),(18341,'OnceMigrateCbcValues','1','yes'),(18342,'divilife_edd_divioverlays_license_key','68b2fa36056c029ace347eacaab3dffe','yes'),(18345,'divilife_edd_divioverlays_license_status','valid','yes'),(18346,'dov_settings','a:1:{s:12:\"dov_timezone\";s:19:\"Africa/Johannesburg\";}','yes'),(18466,'recovery_mode_email_last_sent','1564978199','yes'),(18475,'edd_sl_bf1cb47274e6e27524c1720c2edf0464','a:2:{s:7:\"timeout\";i:1587562213;s:5:\"value\";s:29567:\"{\"new_version\":\"2.8.9.9\",\"stable_version\":\"2.8.9.9\",\"name\":\"Divi Overlays\",\"slug\":\"divi-overlays\",\"url\":\"https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/?changelog=1\",\"last_updated\":\"2020-04-14 10:49:10\",\"homepage\":\"https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/\",\"package\":\"https:\\/\\/divilife.com\\/edd-sl\\/package_download\\/MTU4NzU0MDYxMzo2OGIyZmEzNjA1NmMwMjlhY2UzNDdlYWNhYWIzZGZmZTo0ODc2MzpmMmYyYzZlZjI5NjBkMmIwMjRlZTFlM2VkMGZlOGMyNTpodHRwc0AvL3N0YWRzaWcuY28uemE6MA==\",\"download_link\":\"https:\\/\\/divilife.com\\/edd-sl\\/package_download\\/MTU4NzU0MDYxMzo2OGIyZmEzNjA1NmMwMjlhY2UzNDdlYWNhYWIzZGZmZTo0ODc2MzpmMmYyYzZlZjI5NjBkMmIwMjRlZTFlM2VkMGZlOGMyNTpodHRwc0AvL3N0YWRzaWcuY28uemE6MA==\",\"sections\":{\"description\":\"<p>Divi Overlays is a brand new way to create beautiful full screen overlays, popups, or modals using the Divi Builder.<\\/p>\\n<p>Divi Overlays takes advantage of the power and flexibility of the\\u00a0Divi Builder\\u00a0which gives you the ability to\\u00a0easily add any type of content imaginable to an overlay, then trigger it with anything on the page: text links, images, Divi buttons, etc. Or use an automatic trigger such as timed delay, scroll delay, or exit intent!<\\/p>\\n<p><a class=\\\"et_pb_button\\\" style=\\\"padding-top: 10px !important; padding-bottom: 10px !important;\\\" href=\\\"https:\\/\\/divilife.com\\/divi-overlays\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">View Demo Site<\\/a><\\/p>\\n\",\"changelog\":\"<p>Version 2.8.9.9 (4\\/14\\/20)<\\/p>\\n<ul>\\n<li>Apply Divi Render Layout Filter when getting current post content before searching for Overlays triggers<\\/li>\\n<li>Add support to Divi Email Opt-in module<\\/li>\\n<li>Improve Divi Overlays custom CSS file generation from Divi Core main CSS file<\\/li>\\n<li>Add support to Divi custom fonts when Ajax feature is enabled<\\/li>\\n<li>Add support to Extra theme styles under categories<\\/li>\\n<li>Fix license issue on multi-sites<\\/li>\\n<li>Fix small PHP issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.8 (3\\/23\\/20)<\\/p>\\n<ul>\\n<li>Improve Divi Overlays triggers detection<\\/li>\\n<li>Improve \\\"Prevent main page scrolling\\\" functionality<\\/li>\\n<li>Remove position:fixed from body which was causing a rendering bug on Safari Mobile<\\/li>\\n<li>Add specific iOS mobile styles by using Divi iOS detect function<\\/li>\\n<li>Add support to Divi Email Opt-in module<\\/li>\\n<li>Add support to Divi Shortcodes<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.7 (3\\/18\\/20)<\\/p>\\n<ul>\\n<li>Improved function to search for Divi Overlays in post\\/page content<\\/li>\\n<li>Allow Divi Overlays on 404 pages<\\/li>\\n<li>Allow Divi Overlays on search result pages<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.6 (3\\/16\\/20)<\\/p>\\n<ul>\\n<li>Update Divi render layout function<\\/li>\\n<li>Add a condition to check if WooCommerce is disabled before looking for rendering new Divi WooCommerce modules<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.5 (3\\/11\\/20)<\\/p>\\n<ul>\\n<li>Improve Divi Overlays core<\\/li>\\n<li>Add support to Divi WooCommerce Modules<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.1 (3\\/4\\/20)<\\/p>\\n<ul>\\n<li>Small php fix to prevent notice issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9 (3\\/3\\/20)<\\/p>\\n<ul>\\n<li>Add translation support on post edit settings<\\/li>\\n<li>Add License file<\\/li>\\n<li>Remove non-required assets<\\/li>\\n<li>Reduce Inline Javascript<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.4 \\u00a0(1\\/30\\/20)<\\/p>\\n<ul>\\n<li>fix: Infinite Loop issue on Divi post edit<\\/li>\\n<li>fix: Do not load frontend assets on License page<\\/li>\\n<li>clean: Remove non-required functions<\\/li>\\n<li>enhancement: Update user admin messages to be related to Divi Life<\\/li>\\n<li>enhancement: Temporarily disable Divi CSS Static option only if it was enabled<\\/li>\\n<li>enhancement: Make scheduling based on WP Time core<\\/li>\\n<li>enhancement: New License page<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.2 \\u00a0(1\\/21\\/20)<\\/p>\\n<ul>\\n<li>Fix duplicate emails issue when using Divi Contact Form<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.2 \\u00a0(1\\/10\\/20)<\\/p>\\n<ul>\\n<li>Add touch\\/tap support to custom close button<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.1 \\u00a0(1\\/9\\/20)<\\/p>\\n<ul>\\n<li>Fix close button not working on iOS latest version<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8 \\u00a0(1\\/7\\/20)<\\/p>\\n<ul>\\n<li>Added proper Divi Overlay format on WooCommerce pages<\\/li>\\n<li>Fixed header CSS issue that affected nav menu and Divi\'s built-in search function<\\/li>\\n<\\/ul>\\n<p>Version 2.8.7 \\u00a0(1\\/3\\/20)<\\/p>\\n<ul>\\n<li>Fixed backend post editing issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.6 \\u00a0(12\\/24\\/19)<\\/p>\\n<ul>\\n<li>Upgrade plugin updater<\\/li>\\n<\\/ul>\\n<p>Version 2.8.5 \\u00a0(12\\/20\\/19)<\\/p>\\n<ul>\\n<li>Fix Divi Overlays not showing on homepage when Extra theme is enabled<\\/li>\\n<li>Include custom jQuery UI on Divi Overlays post edit<\\/li>\\n<\\/ul>\\n<p>Version 2.8.4 \\u00a0(12\\/19\\/19)<\\/p>\\n<ul>\\n<li>Forced jQuery UI in order to prevent post edit issues<\\/li>\\n<\\/ul>\\n<p>Version 2.8.3 \\u00a0(12\\/17\\/19)<\\/p>\\n<ul>\\n<li>Fix slider input not working on post edit<\\/li>\\n<\\/ul>\\n<p>Version 2.8.2 \\u00a0(12\\/17\\/19)<\\/p>\\n<ul>\\n<li>Improve current post detection<\\/li>\\n<\\/ul>\\n<p>Version 2.8.1 \\u00a0(12\\/04\\/19)<\\/p>\\n<ul>\\n<li>Improved AJAX support<\\/li>\\n<li>Fixed minor PHP issues<\\/li>\\n<\\/ul>\\n<p>Version 2.8.0 \\u00a0(11\\/01\\/19)<\\/p>\\n<ul>\\n<li>Improve compatibility with Monarch Wordpress Plugin<\\/li>\\n<li>Small fix issues<\\/li>\\n<\\/ul>\\n<p>Version 2.7.9 \\u00a0(10\\/28\\/19)<\\/p>\\n<ul>\\n<li>Fix small PHP issue<\\/li>\\n<\\/ul>\\n<p>Version 2.7.8 \\u00a0(10\\/24\\/19)<\\/p>\\n<ul>\\n<li>Small fix for hash trigger<\\/li>\\n<\\/ul>\\n<p>Version 2.7.7 \\u00a0(10\\/18\\/19)<\\/p>\\n<ul>\\n<li>Update support for Divi Inline Styles<\\/li>\\n<\\/ul>\\n<p>Version 2.7.6 \\u00a0(10\\/15\\/19)<\\/p>\\n<ul>\\n<li>Improved Display Locations search<\\/li>\\n<\\/ul>\\n<p>Version 2.7.5 \\u00a0(10\\/09\\/19)<\\/p>\\n<ul>\\n<li>Feature Update: Added option to load overlay content via ajax once triggered<\\/li>\\n<li>Core improvements<\\/li>\\n<li>Reduce license requests<\\/li>\\n<li>Fix minor issues<\\/li>\\n<\\/ul>\\n<p>Version 2.7.1 \\u00a0(09\\/24\\/19)<\\/p>\\n<ul>\\n<li>Add support to Formidable Forms: reCaptcha field<\\/li>\\n<\\/ul>\\n<p>Version 2.7.0 \\u00a0(09\\/20\\/19)<\\/p>\\n<ul>\\n<li>Enhancement: Trigger Overlays from links containing hash<\\/li>\\n<li>Display Locations: reduce the size of fields in search results to improve performance<\\/li>\\n<li>Upgrade Select2 to version 4.0.9<\\/li>\\n<li>Hide License Keys from license activation screen once activated<\\/li>\\n<li>Add Support Display Locations in Categories, Tags and Archive<\\/li>\\n<\\/ul>\\n<p>Version 2.6.0 \\u00a0(07\\/29\\/19)<\\/p>\\n<ul>\\n<li>Disable Divi Overlays when Divi Visual Builder is enabled<\\/li>\\n<\\/ul>\\n<p>Version 2.5.9 \\u00a0(06\\/28\\/19)<\\/p>\\n<ul>\\n<li>Increased the limit of Divi Overlays per page to 20<\\/li>\\n<\\/ul>\\n<p>Version 2.5.8 \\u00a0(06\\/24\\/19)<\\/p>\\n<ul>\\n<li>Fixed issue with Dot Nav showing border - last two dots did not work correctly and overlays added dots to the dot nav<\\/li>\\n<li>Fixed conflict with the Elegant Themes Monarch plugin<\\/li>\\n<\\/ul>\\n<p>Version 2.5.7 \\u00a0(01\\/17\\/19)<\\/p>\\n<ul>\\n<li>Fix Exit intent glitching<\\/li>\\n<li>Fixed Exit intent with overlays and Mega Pro posts on main menu conflicting<\\/li>\\n<li>Allow Start \\/ End feature to include previous time to show overlay immediately<\\/li>\\n<\\/ul>\\n<p>Version 2.5.6 \\u00a0(12\\/13\\/18)<\\/p>\\n<ul>\\n<li>Added support for the new backend Divi Builder Experience, and the Visual Builder.<\\/li>\\n<\\/ul>\\n<p>Version 2.5.5 \\u00a0(11\\/07\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with the \\u201cDisplay Once Per Page Load\\u201d feature not being disabled correctly<\\/li>\\n<li>Fixed an issue with settings from automatic triggers not allowing click triggers to function properly<\\/li>\\n<li>Fixed an issue with the Display Location &gt; Specific Page selection not saving correctly without automatic trigger<\\/li>\\n<\\/ul>\\n<p>Version 2.5.4 \\u00a0(10\\/15\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with the specific pages option not working correctly<\\/li>\\n<li>Fixed an issue where the \\u201cdisable on mobile\\u201d setting was also disabling overlay on tablets<\\/li>\\n<li>Fixed an issue preventing automatic triggers from being turned off once enabled<\\/li>\\n<li>Improved the close action button for creating custom close buttons: close-divi-overlay<\\/li>\\n<li>Fixed an error happening on large sites: \\u201cprevent notice error\\u201d from\\u00a0get_current_screen() WP function<\\/li>\\n<\\/ul>\\n<p>Version 2.5.1 \\u00a0(10\\/03\\/18)<\\/p>\\n<ul>\\n<li>Added Recurring Scheduling feature<\\/li>\\n<li>Added feature to individually disable Divi Bar on Desktop\\/Tablet\\/Mobile<\\/li>\\n<li>Decreased requests to licensing server.<\\/li>\\n<li>Fixed an incompatibility with Divi Bars<\\/li>\\n<li>Fixed a crash bug in front end<\\/li>\\n<li>Fixed an issue with the Filterable Grid Portfolio plugin.<\\/li>\\n<li>Fixed various other minor bug.<\\/li>\\n<\\/ul>\\n<p>Version 2.2 (04\\/24\\/18)<\\/p>\\n<ul>\\n<li>Added New API Licensing System for Divi Overlays<\\/li>\\n<li>Fixed issue with Divi\\u2019s built in \\u201cProjects\\u201d post type pages not showing in list of \\u201cSpecific Pages\\u201d when setting triggers.<\\/li>\\n<li>Removed old unnecessary \\u201cAdmin Ajax\\u201d and \\u201cNormalize.CSS\\u201d files<\\/li>\\n<li>Fixed a conflict with the Gravity Forms plugin when redirecting to new page upon form completion.<\\/li>\\n<\\/ul>\\n<p>Version 2.1.3 (02\\/14\\/18)<\\/p>\\n<ul>\\n<li>Added Close Button Cookie Expiration Feature to control how long until the automatic trigger will execute the overlay again after a user has closed it<\\/li>\\n<li>Added scheduling feature to schedule a start and end time for automatic overlay triggers<\\/li>\\n<li>Fixed issue with videos inside overlays playing in the background before the overlay triggers (when video is set to autoplay)<\\/li>\\n<li>Enhanced the CSS Selector Trigger feature by adding ability to choose what pages it will display on<\\/li>\\n<li>Fixed various other minor bugs<\\/li>\\n<\\/ul>\\n<p>Version 2.0.2<\\/p>\\n<ul>\\n<li>Fixed an issue caused by the previous update that resulted in columns breaking in the builder.<\\/li>\\n<li>Fixed an issue that caused additional paragraph tags to be added around form fields in the Gravity Forms plugin.<\\/li>\\n<li>Fixed the issue with multiple overlays triggering on the same page when multiple overlays are set with automatic triggers but supposed to trigger on different pages.<\\/li>\\n<\\/ul>\\n<p>Version 2.0.1<\\/p>\\n<ul>\\n<li>Fixed the issue caused by a recent Divi update where custom button styling defined in the Divi builder was not being applied in the overlay.<\\/li>\\n<li>Fixed the issue caused by a recent Divi update where Divi Overlays was causing black bars to be shown on both sides of background videos.<\\/li>\\n<li>Fixed the issue where certain text editor formatting (line breaks, lists, bullets, etc.) was not being applied inside of the overlay.<\\/li>\\n<li>Fixed the issue where menu link triggers weren\\u2019t automatically adding the overlay content to the page.<\\/li>\\n<\\/ul>\\n<p>Version 2.0<br \\/>\\n<strong>This is a major update. Please backup before updating.<\\/strong><\\/p>\\n<ul>\\n<li>Added Automatic Triggers\\n<ul>\\n<li>Timed Delay<\\/li>\\n<li>Scroll Delay<\\/li>\\n<li>Exit Intent<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Improved the way click triggers work in Divi Overlays. Content shortcodes are no longer needed. Instead, adding the click trigger will automatically add the overlay content to the page.<\\/li>\\n<li>Due to the above, Global Overlays are no longer necessary to set up via the Global Overlays widget area.<\\/li>\\n<li>In addition to adding the unique CSS ID to an\\u00a0element on the page, click triggers can also be set by adding a unique CSS string directly to the individual overlay edit screen. This allows more precise selection of click triggers on\\u00a0individual parts of a Divi module.<\\/li>\\n<li>Added close button customization options\\n<ul>\\n<li>added the ability to hide the main close button (per overlay)<\\/li>\\n<li>added ability to customize the close button by changing color, size, background color, background radius<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Added the ability to link from overlay to overlay<\\/li>\\n<li>Added smooth scrolling of overlay on mobile devices<\\/li>\\n<li>Licensing username and password are no\\u00a0longer exposed\\u00a0for those that are turning sites over to clients<\\/li>\\n<li>added overlay unique CSS ID and Menu ID directly to overlay edit screen for easier access<\\/li>\\n<li>Multiple other minor fixes and enhancements<\\/li>\\n<\\/ul>\\n<p>Version 1.1.2<\\/p>\\n<ul>\\n<li>Fixed a\\u00a0z-index issue that caused the overlay to not always be on top in certain cases.<\\/li>\\n<\\/ul>\\n<p>Version 1.1.1<\\/p>\\n<ul>\\n<li>Fixed a bug that caused the Divi mobile menu to break when a video was present in the overlay<\\/li>\\n<\\/ul>\\n<p>Version 1.1<\\/p>\\n<ul>\\n<li>Fixed a bug from version 1.0.4 that caused issues with the several Divi modules including the Divi form module, audio module, video module, as well as other 3rd party plugins such as form plugins.<\\/li>\\n<li>Added a new feature called \\u201cURL Triggers\\u201d that allows you to trigger the overlay on page load by placing \\/#overlay-1234 at the end of the URL. (change 1234 with overlay ID).<\\/li>\\n<li>Added three new ways to close overlays:\\n<ul>\\n<li>Overlays can now be closed by pressing the escape key<\\/li>\\n<li>Overlays can now be closed by clicking on the overlay background<\\/li>\\n<li>Overlays can now be closed by adding class=\\u201cclose-divi-overlay\\u201d to any link, button, element, etc. from within the overlay.<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Added the ability to not let the background (main page) scroll when the overlay is opened.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.4<\\/p>\\n<ul>\\n<li>Fixed the issue that broke the following animations in version 1.0.3: Genie, Little Boxes, Corner Shape, Content Scale, &amp; Content Push.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.3<\\/p>\\n<ul>\\n<li>Added full video support \\u201cout of the box.\\u201d Previously, videos inside of overlays would not pause automatically when the overlay was closed, causing the audio to continue being heard from the video playing in the background. Now, videos will automatically stop playing when the overlay is closed. This new feature has been fully tested on YouTube, Vimeo, and Wistia videos.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.2<\\/p>\\n<ul>\\n<li>Fixed the javascript error that happened on pages where no overlay was found, causing other javascript on the page to break, particularly from other plugins.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.1<\\/p>\\n<ul>\\n<li>Fixed the secondary menu overlap issue.<\\/li>\\n<li>Fixed the function naming issue that caused a fatal error from conflicting with other Divi plugins, and\\/or child themes.<\\/li>\\n<\\/ul>\\n<p>Version 1.0<\\/p>\\n<ul>\\n<li>Initial Release<\\/li>\\n<\\/ul>\\n<p>&nbsp;<\\/p>\\n<p>Divi Overlays product description, promo video, screenshots, and demos can be found here:\\u00a0<a href=\\\"https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/<\\/a><\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:2:{s:2:\\\"1x\\\";s:92:\\\"https:\\/\\/divilife.com\\/wp-content\\/uploads\\/2018\\/10\\/divi-overlays-featured-image2018-128x128.jpg\\\";s:2:\\\"2x\\\";s:92:\\\"https:\\/\\/divilife.com\\/wp-content\\/uploads\\/2018\\/10\\/divi-overlays-featured-image2018-256x256.jpg\\\";}\",\"description\":[\"<p>Divi Overlays is a brand new way to create beautiful full screen overlays, popups, or modals using the Divi Builder.<\\/p>\\n<p>Divi Overlays takes advantage of the power and flexibility of the\\u00a0Divi Builder\\u00a0which gives you the ability to\\u00a0easily add any type of content imaginable to an overlay, then trigger it with anything on the page: text links, images, Divi buttons, etc. Or use an automatic trigger such as timed delay, scroll delay, or exit intent!<\\/p>\\n<p><a class=\\\"et_pb_button\\\" style=\\\"padding-top: 10px !important; padding-bottom: 10px !important;\\\" href=\\\"https:\\/\\/divilife.com\\/divi-overlays\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">View Demo Site<\\/a><\\/p>\\n\"],\"changelog\":[\"<p>Version 2.8.9.9 (4\\/14\\/20)<\\/p>\\n<ul>\\n<li>Apply Divi Render Layout Filter when getting current post content before searching for Overlays triggers<\\/li>\\n<li>Add support to Divi Email Opt-in module<\\/li>\\n<li>Improve Divi Overlays custom CSS file generation from Divi Core main CSS file<\\/li>\\n<li>Add support to Divi custom fonts when Ajax feature is enabled<\\/li>\\n<li>Add support to Extra theme styles under categories<\\/li>\\n<li>Fix license issue on multi-sites<\\/li>\\n<li>Fix small PHP issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.8 (3\\/23\\/20)<\\/p>\\n<ul>\\n<li>Improve Divi Overlays triggers detection<\\/li>\\n<li>Improve \\\"Prevent main page scrolling\\\" functionality<\\/li>\\n<li>Remove position:fixed from body which was causing a rendering bug on Safari Mobile<\\/li>\\n<li>Add specific iOS mobile styles by using Divi iOS detect function<\\/li>\\n<li>Add support to Divi Email Opt-in module<\\/li>\\n<li>Add support to Divi Shortcodes<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.7 (3\\/18\\/20)<\\/p>\\n<ul>\\n<li>Improved function to search for Divi Overlays in post\\/page content<\\/li>\\n<li>Allow Divi Overlays on 404 pages<\\/li>\\n<li>Allow Divi Overlays on search result pages<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.6 (3\\/16\\/20)<\\/p>\\n<ul>\\n<li>Update Divi render layout function<\\/li>\\n<li>Add a condition to check if WooCommerce is disabled before looking for rendering new Divi WooCommerce modules<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.5 (3\\/11\\/20)<\\/p>\\n<ul>\\n<li>Improve Divi Overlays core<\\/li>\\n<li>Add support to Divi WooCommerce Modules<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.1 (3\\/4\\/20)<\\/p>\\n<ul>\\n<li>Small php fix to prevent notice issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9 (3\\/3\\/20)<\\/p>\\n<ul>\\n<li>Add translation support on post edit settings<\\/li>\\n<li>Add License file<\\/li>\\n<li>Remove non-required assets<\\/li>\\n<li>Reduce Inline Javascript<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.4 \\u00a0(1\\/30\\/20)<\\/p>\\n<ul>\\n<li>fix: Infinite Loop issue on Divi post edit<\\/li>\\n<li>fix: Do not load frontend assets on License page<\\/li>\\n<li>clean: Remove non-required functions<\\/li>\\n<li>enhancement: Update user admin messages to be related to Divi Life<\\/li>\\n<li>enhancement: Temporarily disable Divi CSS Static option only if it was enabled<\\/li>\\n<li>enhancement: Make scheduling based on WP Time core<\\/li>\\n<li>enhancement: New License page<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.2 \\u00a0(1\\/21\\/20)<\\/p>\\n<ul>\\n<li>Fix duplicate emails issue when using Divi Contact Form<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.2 \\u00a0(1\\/10\\/20)<\\/p>\\n<ul>\\n<li>Add touch\\/tap support to custom close button<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.1 \\u00a0(1\\/9\\/20)<\\/p>\\n<ul>\\n<li>Fix close button not working on iOS latest version<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8 \\u00a0(1\\/7\\/20)<\\/p>\\n<ul>\\n<li>Added proper Divi Overlay format on WooCommerce pages<\\/li>\\n<li>Fixed header CSS issue that affected nav menu and Divi\'s built-in search function<\\/li>\\n<\\/ul>\\n<p>Version 2.8.7 \\u00a0(1\\/3\\/20)<\\/p>\\n<ul>\\n<li>Fixed backend post editing issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.6 \\u00a0(12\\/24\\/19)<\\/p>\\n<ul>\\n<li>Upgrade plugin updater<\\/li>\\n<\\/ul>\\n<p>Version 2.8.5 \\u00a0(12\\/20\\/19)<\\/p>\\n<ul>\\n<li>Fix Divi Overlays not showing on homepage when Extra theme is enabled<\\/li>\\n<li>Include custom jQuery UI on Divi Overlays post edit<\\/li>\\n<\\/ul>\\n<p>Version 2.8.4 \\u00a0(12\\/19\\/19)<\\/p>\\n<ul>\\n<li>Forced jQuery UI in order to prevent post edit issues<\\/li>\\n<\\/ul>\\n<p>Version 2.8.3 \\u00a0(12\\/17\\/19)<\\/p>\\n<ul>\\n<li>Fix slider input not working on post edit<\\/li>\\n<\\/ul>\\n<p>Version 2.8.2 \\u00a0(12\\/17\\/19)<\\/p>\\n<ul>\\n<li>Improve current post detection<\\/li>\\n<\\/ul>\\n<p>Version 2.8.1 \\u00a0(12\\/04\\/19)<\\/p>\\n<ul>\\n<li>Improved AJAX support<\\/li>\\n<li>Fixed minor PHP issues<\\/li>\\n<\\/ul>\\n<p>Version 2.8.0 \\u00a0(11\\/01\\/19)<\\/p>\\n<ul>\\n<li>Improve compatibility with Monarch Wordpress Plugin<\\/li>\\n<li>Small fix issues<\\/li>\\n<\\/ul>\\n<p>Version 2.7.9 \\u00a0(10\\/28\\/19)<\\/p>\\n<ul>\\n<li>Fix small PHP issue<\\/li>\\n<\\/ul>\\n<p>Version 2.7.8 \\u00a0(10\\/24\\/19)<\\/p>\\n<ul>\\n<li>Small fix for hash trigger<\\/li>\\n<\\/ul>\\n<p>Version 2.7.7 \\u00a0(10\\/18\\/19)<\\/p>\\n<ul>\\n<li>Update support for Divi Inline Styles<\\/li>\\n<\\/ul>\\n<p>Version 2.7.6 \\u00a0(10\\/15\\/19)<\\/p>\\n<ul>\\n<li>Improved Display Locations search<\\/li>\\n<\\/ul>\\n<p>Version 2.7.5 \\u00a0(10\\/09\\/19)<\\/p>\\n<ul>\\n<li>Feature Update: Added option to load overlay content via ajax once triggered<\\/li>\\n<li>Core improvements<\\/li>\\n<li>Reduce license requests<\\/li>\\n<li>Fix minor issues<\\/li>\\n<\\/ul>\\n<p>Version 2.7.1 \\u00a0(09\\/24\\/19)<\\/p>\\n<ul>\\n<li>Add support to Formidable Forms: reCaptcha field<\\/li>\\n<\\/ul>\\n<p>Version 2.7.0 \\u00a0(09\\/20\\/19)<\\/p>\\n<ul>\\n<li>Enhancement: Trigger Overlays from links containing hash<\\/li>\\n<li>Display Locations: reduce the size of fields in search results to improve performance<\\/li>\\n<li>Upgrade Select2 to version 4.0.9<\\/li>\\n<li>Hide License Keys from license activation screen once activated<\\/li>\\n<li>Add Support Display Locations in Categories, Tags and Archive<\\/li>\\n<\\/ul>\\n<p>Version 2.6.0 \\u00a0(07\\/29\\/19)<\\/p>\\n<ul>\\n<li>Disable Divi Overlays when Divi Visual Builder is enabled<\\/li>\\n<\\/ul>\\n<p>Version 2.5.9 \\u00a0(06\\/28\\/19)<\\/p>\\n<ul>\\n<li>Increased the limit of Divi Overlays per page to 20<\\/li>\\n<\\/ul>\\n<p>Version 2.5.8 \\u00a0(06\\/24\\/19)<\\/p>\\n<ul>\\n<li>Fixed issue with Dot Nav showing border - last two dots did not work correctly and overlays added dots to the dot nav<\\/li>\\n<li>Fixed conflict with the Elegant Themes Monarch plugin<\\/li>\\n<\\/ul>\\n<p>Version 2.5.7 \\u00a0(01\\/17\\/19)<\\/p>\\n<ul>\\n<li>Fix Exit intent glitching<\\/li>\\n<li>Fixed Exit intent with overlays and Mega Pro posts on main menu conflicting<\\/li>\\n<li>Allow Start \\/ End feature to include previous time to show overlay immediately<\\/li>\\n<\\/ul>\\n<p>Version 2.5.6 \\u00a0(12\\/13\\/18)<\\/p>\\n<ul>\\n<li>Added support for the new backend Divi Builder Experience, and the Visual Builder.<\\/li>\\n<\\/ul>\\n<p>Version 2.5.5 \\u00a0(11\\/07\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with the \\u201cDisplay Once Per Page Load\\u201d feature not being disabled correctly<\\/li>\\n<li>Fixed an issue with settings from automatic triggers not allowing click triggers to function properly<\\/li>\\n<li>Fixed an issue with the Display Location &gt; Specific Page selection not saving correctly without automatic trigger<\\/li>\\n<\\/ul>\\n<p>Version 2.5.4 \\u00a0(10\\/15\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with the specific pages option not working correctly<\\/li>\\n<li>Fixed an issue where the \\u201cdisable on mobile\\u201d setting was also disabling overlay on tablets<\\/li>\\n<li>Fixed an issue preventing automatic triggers from being turned off once enabled<\\/li>\\n<li>Improved the close action button for creating custom close buttons: close-divi-overlay<\\/li>\\n<li>Fixed an error happening on large sites: \\u201cprevent notice error\\u201d from\\u00a0get_current_screen() WP function<\\/li>\\n<\\/ul>\\n<p>Version 2.5.1 \\u00a0(10\\/03\\/18)<\\/p>\\n<ul>\\n<li>Added Recurring Scheduling feature<\\/li>\\n<li>Added feature to individually disable Divi Bar on Desktop\\/Tablet\\/Mobile<\\/li>\\n<li>Decreased requests to licensing server.<\\/li>\\n<li>Fixed an incompatibility with Divi Bars<\\/li>\\n<li>Fixed a crash bug in front end<\\/li>\\n<li>Fixed an issue with the Filterable Grid Portfolio plugin.<\\/li>\\n<li>Fixed various other minor bug.<\\/li>\\n<\\/ul>\\n<p>Version 2.2 (04\\/24\\/18)<\\/p>\\n<ul>\\n<li>Added New API Licensing System for Divi Overlays<\\/li>\\n<li>Fixed issue with Divi\\u2019s built in \\u201cProjects\\u201d post type pages not showing in list of \\u201cSpecific Pages\\u201d when setting triggers.<\\/li>\\n<li>Removed old unnecessary \\u201cAdmin Ajax\\u201d and \\u201cNormalize.CSS\\u201d files<\\/li>\\n<li>Fixed a conflict with the Gravity Forms plugin when redirecting to new page upon form completion.<\\/li>\\n<\\/ul>\\n<p>Version 2.1.3 (02\\/14\\/18)<\\/p>\\n<ul>\\n<li>Added Close Button Cookie Expiration Feature to control how long until the automatic trigger will execute the overlay again after a user has closed it<\\/li>\\n<li>Added scheduling feature to schedule a start and end time for automatic overlay triggers<\\/li>\\n<li>Fixed issue with videos inside overlays playing in the background before the overlay triggers (when video is set to autoplay)<\\/li>\\n<li>Enhanced the CSS Selector Trigger feature by adding ability to choose what pages it will display on<\\/li>\\n<li>Fixed various other minor bugs<\\/li>\\n<\\/ul>\\n<p>Version 2.0.2<\\/p>\\n<ul>\\n<li>Fixed an issue caused by the previous update that resulted in columns breaking in the builder.<\\/li>\\n<li>Fixed an issue that caused additional paragraph tags to be added around form fields in the Gravity Forms plugin.<\\/li>\\n<li>Fixed the issue with multiple overlays triggering on the same page when multiple overlays are set with automatic triggers but supposed to trigger on different pages.<\\/li>\\n<\\/ul>\\n<p>Version 2.0.1<\\/p>\\n<ul>\\n<li>Fixed the issue caused by a recent Divi update where custom button styling defined in the Divi builder was not being applied in the overlay.<\\/li>\\n<li>Fixed the issue caused by a recent Divi update where Divi Overlays was causing black bars to be shown on both sides of background videos.<\\/li>\\n<li>Fixed the issue where certain text editor formatting (line breaks, lists, bullets, etc.) was not being applied inside of the overlay.<\\/li>\\n<li>Fixed the issue where menu link triggers weren\\u2019t automatically adding the overlay content to the page.<\\/li>\\n<\\/ul>\\n<p>Version 2.0<br \\/>\\n<strong>This is a major update. Please backup before updating.<\\/strong><\\/p>\\n<ul>\\n<li>Added Automatic Triggers\\n<ul>\\n<li>Timed Delay<\\/li>\\n<li>Scroll Delay<\\/li>\\n<li>Exit Intent<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Improved the way click triggers work in Divi Overlays. Content shortcodes are no longer needed. Instead, adding the click trigger will automatically add the overlay content to the page.<\\/li>\\n<li>Due to the above, Global Overlays are no longer necessary to set up via the Global Overlays widget area.<\\/li>\\n<li>In addition to adding the unique CSS ID to an\\u00a0element on the page, click triggers can also be set by adding a unique CSS string directly to the individual overlay edit screen. This allows more precise selection of click triggers on\\u00a0individual parts of a Divi module.<\\/li>\\n<li>Added close button customization options\\n<ul>\\n<li>added the ability to hide the main close button (per overlay)<\\/li>\\n<li>added ability to customize the close button by changing color, size, background color, background radius<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Added the ability to link from overlay to overlay<\\/li>\\n<li>Added smooth scrolling of overlay on mobile devices<\\/li>\\n<li>Licensing username and password are no\\u00a0longer exposed\\u00a0for those that are turning sites over to clients<\\/li>\\n<li>added overlay unique CSS ID and Menu ID directly to overlay edit screen for easier access<\\/li>\\n<li>Multiple other minor fixes and enhancements<\\/li>\\n<\\/ul>\\n<p>Version 1.1.2<\\/p>\\n<ul>\\n<li>Fixed a\\u00a0z-index issue that caused the overlay to not always be on top in certain cases.<\\/li>\\n<\\/ul>\\n<p>Version 1.1.1<\\/p>\\n<ul>\\n<li>Fixed a bug that caused the Divi mobile menu to break when a video was present in the overlay<\\/li>\\n<\\/ul>\\n<p>Version 1.1<\\/p>\\n<ul>\\n<li>Fixed a bug from version 1.0.4 that caused issues with the several Divi modules including the Divi form module, audio module, video module, as well as other 3rd party plugins such as form plugins.<\\/li>\\n<li>Added a new feature called \\u201cURL Triggers\\u201d that allows you to trigger the overlay on page load by placing \\/#overlay-1234 at the end of the URL. (change 1234 with overlay ID).<\\/li>\\n<li>Added three new ways to close overlays:\\n<ul>\\n<li>Overlays can now be closed by pressing the escape key<\\/li>\\n<li>Overlays can now be closed by clicking on the overlay background<\\/li>\\n<li>Overlays can now be closed by adding class=\\u201cclose-divi-overlay\\u201d to any link, button, element, etc. from within the overlay.<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Added the ability to not let the background (main page) scroll when the overlay is opened.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.4<\\/p>\\n<ul>\\n<li>Fixed the issue that broke the following animations in version 1.0.3: Genie, Little Boxes, Corner Shape, Content Scale, &amp; Content Push.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.3<\\/p>\\n<ul>\\n<li>Added full video support \\u201cout of the box.\\u201d Previously, videos inside of overlays would not pause automatically when the overlay was closed, causing the audio to continue being heard from the video playing in the background. Now, videos will automatically stop playing when the overlay is closed. This new feature has been fully tested on YouTube, Vimeo, and Wistia videos.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.2<\\/p>\\n<ul>\\n<li>Fixed the javascript error that happened on pages where no overlay was found, causing other javascript on the page to break, particularly from other plugins.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.1<\\/p>\\n<ul>\\n<li>Fixed the secondary menu overlap issue.<\\/li>\\n<li>Fixed the function naming issue that caused a fatal error from conflicting with other Divi plugins, and\\/or child themes.<\\/li>\\n<\\/ul>\\n<p>Version 1.0<\\/p>\\n<ul>\\n<li>Initial Release<\\/li>\\n<\\/ul>\\n<p>&nbsp;<\\/p>\\n<p>Divi Overlays product description, promo video, screenshots, and demos can be found here:\\u00a0<a href=\\\"https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/<\\/a><\\/p>\\n\"]}\";}','no'),(18488,'n2_ss3_version','3.3.26r5643','yes'),(18490,'widget_smartslider3','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(21663,'et_support_center_setup_done','processed','yes'),(23668,'admin_email_lifespan','1590462388','yes'),(23690,'wp-smush-hide_smush_welcome','1','no'),(23714,'dtbchange_v1_2','1','yes'),(23719,'wc_am_client_6866','a:1:{s:25:\"wc_am_client_6866_api_key\";s:38:\"wc_order_5bbf61a6d120b_am_IilXzl7vr6j0\";}','yes'),(23722,'dtb_toolbox','s:2134:\"a:55:{s:14:\"dtb_404_layout\";s:4:\"none\";s:17:\"dtb_instagram_url\";s:0:\"\";s:15:\"dtb_youtube_url\";s:0:\"\";s:16:\"dtb_linkedin_url\";s:0:\"\";s:17:\"dtb_pinterest_url\";s:0:\"\";s:14:\"dtb_tumblr_url\";s:0:\"\";s:14:\"dtb_flickr_url\";s:0:\"\";s:15:\"dtb_dribble_url\";s:0:\"\";s:13:\"dtb_vimeo_url\";s:0:\"\";s:13:\"dtb_skype_url\";s:0:\"\";s:18:\"dtb_fixed_logo_url\";s:0:\"\";s:24:\"dtb_before_header_layout\";s:0:\"\";s:22:\"dtb_home_header_layout\";s:0:\"\";s:23:\"dtb_after_header_layout\";s:0:\"\";s:32:\"dtb_homepage_after_header_layout\";s:0:\"\";s:11:\"dtb_btt_url\";s:1:\"#\";s:17:\"dtb_footer_layout\";s:0:\"\";s:23:\"dtb_after_footer_layout\";s:0:\"\";s:21:\"dtb_mobile_breakpoint\";s:3:\"980\";s:19:\"dtb_mobile_logo_url\";s:0:\"\";s:18:\"dtb_hamburger_icon\";s:4:\"none\";s:17:\"dtb_readmore_text\";s:9:\"Read More\";s:23:\"dtb_post_sidebar_layout\";s:5:\"right\";s:18:\"dtb_post_prev_text\";s:8:\"Previous\";s:18:\"dtb_post_next_text\";s:4:\"Next\";s:16:\"dtb_related_text\";s:13:\"Related Posts\";s:17:\"dtb_comments_text\";s:16:\"Submit a Comment\";s:24:\"dtb_single_header_layout\";s:0:\"\";s:25:\"dtb_archive_header_layout\";s:0:\"\";s:26:\"dtb_category_header_layout\";s:0:\"\";s:24:\"dtb_author_header_layout\";s:0:\"\";s:24:\"dtb_search_header_layout\";s:0:\"\";s:21:\"dtb_blog_index_layout\";s:0:\"\";s:17:\"dtb_sec_btn_class\";s:10:\"dtb-button\";s:31:\"dtb_custom_map_marker_image_url\";s:0:\"\";s:13:\"dtb_preloader\";s:1:\"1\";s:18:\"dtb_preloader_type\";s:10:\"preloader8\";s:30:\"dtb_custom_preloader_image_url\";s:0:\"\";s:20:\"dtb_preloader_effect\";s:7:\"fadeOut\";s:19:\"dtb_preloader_speed\";s:4:\"slow\";s:16:\"dtb_popup_number\";s:1:\"1\";s:17:\"dtb_popup1_layout\";s:0:\"\";s:17:\"dtb_popup2_layout\";s:0:\"\";s:17:\"dtb_popup3_layout\";s:0:\"\";s:17:\"dtb_popup4_layout\";s:0:\"\";s:17:\"dtb_popup5_layout\";s:0:\"\";s:24:\"dtb_import_type_settings\";s:2:\"on\";s:26:\"dtb_import_type_customizer\";s:2:\"on\";s:26:\"dtb_export_settings_action\";s:19:\"dtb_export_settings\";s:25:\"dtb_export_settings_nonce\";s:10:\"5ecb164369\";s:16:\"_wp_http_referer\";s:48:\"/wp-admin/admin.php?page=divi_toolbox&tab=extras\";s:26:\"dtb_import_settings_action\";s:19:\"dtb_import_settings\";s:25:\"dtb_import_settings_nonce\";s:10:\"dddf386a1b\";s:23:\"divi_toolbox_slug_nonce\";s:10:\"af2b168002\";s:4:\"save\";s:0:\"\";}\";','yes'),(26199,'dtb_customize_sec_nav_color','#ffffff','yes'),(26200,'dtb_customize_sec_nav_color_hover','#ffffff','yes'),(26239,'wpo_update_version','3.0.15','yes'),(26240,'updraft_task_manager_dbversion','1.1','yes'),(26250,'wp-optimize-corrupted-tables-count','0','yes'),(26252,'wp-optimize-is_gzip_compression_enabled','gzip','yes'),(26253,'wp-optimize-enable-auto-backup','false','yes'),(26259,'wp-optimize-compression_server','resmushit','yes'),(26260,'wp-optimize-lossy_compression','1','yes'),(26261,'wp-optimize-back_up_original','1','yes'),(26262,'wp-optimize-back_up_delete_after','1','yes'),(26263,'wp-optimize-back_up_delete_after_days','50','yes'),(26264,'wp-optimize-autosmush','1','yes'),(26265,'wp-optimize-image_quality','92','yes'),(26266,'wp-optimize-show_smush_metabox','show','yes'),(26269,'wpo_cache_config','a:15:{s:19:\"enable_page_caching\";s:1:\"1\";s:23:\"page_cache_length_value\";i:24;s:22:\"page_cache_length_unit\";s:5:\"hours\";s:17:\"page_cache_length\";i:86400;s:20:\"cache_exception_urls\";a:1:{i:0;s:0:\"\";}s:23:\"cache_exception_cookies\";a:1:{i:0;s:0:\"\";}s:30:\"cache_exception_browser_agents\";a:1:{i:0;s:0:\"\";}s:22:\"enable_sitemap_preload\";b:0;s:23:\"enable_schedule_preload\";s:1:\"0\";s:21:\"preload_schedule_type\";s:22:\"wpo_use_cache_lifespan\";s:21:\"enable_mobile_caching\";s:1:\"0\";s:19:\"enable_user_caching\";s:1:\"0\";s:8:\"site_url\";s:26:\"https://www.stadsig.co.za/\";s:17:\"wpo_cache_cookies\";a:0:{}s:25:\"wpo_cache_query_variables\";a:0:{}}','yes'),(26302,'_transient_et_updated_plugins_data','O:8:\"stdClass\":2:{s:12:\"last_checked\";i:1578932698;s:10:\"changelogs\";a:1:{s:7:\"monarch\";s:92:\"https://www.elegantthemes.com/api/changelog/monarch.txt?TB_iframe=true&width=1024&height=800\";}}','yes'),(26355,'wp-optimize-completed_task_count','96','yes'),(26356,'wp-optimize-total_bytes_saved','439290','yes'),(26357,'wp-optimize-total_percent_saved','6.1479166666665','yes'),(26362,'Re_Smush_It_Task','1578987580','yes'),(26367,'wp-optimize-failed_task_count','3','yes'),(26440,'_transient_frm_options','O:11:\"FrmSettings\":38:{s:11:\"option_name\";s:11:\"frm_options\";s:4:\"menu\";s:10:\"Formidable\";s:7:\"mu_menu\";i:0;s:8:\"use_html\";s:1:\"1\";s:10:\"jquery_css\";i:0;s:12:\"accordion_js\";i:0;s:9:\"fade_form\";i:0;s:7:\"old_css\";s:1:\"1\";s:11:\"success_msg\";s:54:\"Your responses were successfully submitted. Thank you!\";s:9:\"blank_msg\";s:27:\"This field cannot be blank.\";s:10:\"unique_msg\";s:26:\"This value must be unique.\";s:11:\"invalid_msg\";s:66:\"There was a problem with your submission. Errors are marked below.\";s:10:\"failed_msg\";s:57:\"We\'re sorry. It looks like you\'ve already submitted that.\";s:12:\"submit_value\";s:6:\"Submit\";s:9:\"login_msg\";s:45:\"You do not have permission to view this form.\";s:16:\"admin_permission\";s:37:\"You do not have permission to do that\";s:8:\"email_to\";s:13:\"[admin_email]\";s:10:\"load_style\";s:7:\"dynamic\";s:12:\"custom_style\";b:1;s:6:\"pubkey\";s:0:\"\";s:7:\"privkey\";s:0:\"\";s:7:\"re_lang\";s:0:\"\";s:7:\"re_type\";s:0:\"\";s:6:\"re_msg\";s:39:\"The reCAPTCHA was not entered correctly\";s:8:\"re_multi\";i:0;s:6:\"no_ips\";i:0;s:12:\"current_form\";i:0;s:8:\"tracking\";s:1:\"1\";s:14:\"frm_view_forms\";a:1:{i:0;s:13:\"administrator\";}s:14:\"frm_edit_forms\";a:1:{i:0;s:13:\"administrator\";}s:16:\"frm_delete_forms\";a:1:{i:0;s:13:\"administrator\";}s:19:\"frm_change_settings\";a:1:{i:0;s:13:\"administrator\";}s:16:\"frm_view_entries\";a:1:{i:0;s:13:\"administrator\";}s:18:\"frm_delete_entries\";a:1:{i:0;s:13:\"administrator\";}s:18:\"frm_create_entries\";a:1:{i:0;s:13:\"administrator\";}s:16:\"frm_edit_entries\";a:1:{i:0;s:13:\"administrator\";}s:16:\"frm_view_reports\";a:1:{i:0;s:13:\"administrator\";}s:17:\"frm_edit_displays\";a:1:{i:0;s:13:\"administrator\";}}','yes'),(26441,'_transient_frmpro_options','O:14:\"FrmProSettings\":46:{s:11:\"option_name\";s:14:\"frmpro_options\";s:8:\"edit_msg\";s:39:\"Your submission was successfully saved.\";s:12:\"update_value\";s:6:\"Update\";s:17:\"already_submitted\";s:36:\"You have already submitted that form\";s:15:\"cal_date_format\";s:8:\"mm/dd/yy\";s:11:\"date_format\";s:5:\"m/d/Y\";s:9:\"menu_icon\";s:0:\"\";s:4:\"menu\";N;s:7:\"mu_menu\";N;s:8:\"use_html\";N;s:10:\"jquery_css\";N;s:12:\"accordion_js\";N;s:9:\"fade_form\";b:1;s:7:\"old_css\";s:1:\"1\";s:11:\"success_msg\";N;s:9:\"blank_msg\";N;s:10:\"unique_msg\";N;s:11:\"invalid_msg\";N;s:10:\"failed_msg\";N;s:12:\"submit_value\";N;s:9:\"login_msg\";N;s:16:\"admin_permission\";N;s:8:\"email_to\";N;s:10:\"load_style\";s:3:\"all\";s:12:\"custom_style\";b:1;s:6:\"pubkey\";s:0:\"\";s:7:\"privkey\";s:0:\"\";s:7:\"re_lang\";s:0:\"\";s:7:\"re_type\";s:0:\"\";s:6:\"re_msg\";s:39:\"The reCAPTCHA was not entered correctly\";s:8:\"re_multi\";N;s:6:\"no_ips\";N;s:12:\"current_form\";i:0;s:8:\"tracking\";N;s:10:\"permalinks\";b:0;s:15:\"preview_page_id\";N;s:14:\"frm_view_forms\";s:13:\"administrator\";s:14:\"frm_edit_forms\";s:13:\"administrator\";s:16:\"frm_delete_forms\";s:13:\"administrator\";s:19:\"frm_change_settings\";s:13:\"administrator\";s:16:\"frm_view_entries\";s:13:\"administrator\";s:18:\"frm_delete_entries\";s:13:\"administrator\";s:18:\"frm_create_entries\";s:13:\"administrator\";s:16:\"frm_edit_entries\";s:13:\"administrator\";s:16:\"frm_view_reports\";s:13:\"administrator\";s:17:\"frm_edit_displays\";s:13:\"administrator\";}','yes'),(26603,'wp-smush-lazy_load','a:7:{s:6:\"format\";a:5:{s:4:\"jpeg\";b:1;s:3:\"png\";b:1;s:3:\"gif\";b:1;s:3:\"svg\";b:1;s:6:\"iframe\";b:1;}s:6:\"output\";a:4:{s:7:\"content\";b:1;s:7:\"widgets\";b:1;s:10:\"thumbnails\";b:1;s:9:\"gravatars\";b:1;}s:9:\"animation\";a:4:{s:8:\"selected\";s:7:\"spinner\";s:6:\"fadein\";a:2:{s:8:\"duration\";i:400;s:5:\"delay\";i:0;}s:7:\"spinner\";a:2:{s:8:\"selected\";s:1:\"4\";s:6:\"custom\";a:0:{}}s:11:\"placeholder\";a:3:{s:8:\"selected\";s:1:\"1\";s:6:\"custom\";a:0:{}s:5:\"color\";s:7:\"#F3F3F3\";}}s:7:\"include\";a:7:{s:9:\"frontpage\";b:1;s:4:\"home\";b:1;s:4:\"page\";b:1;s:6:\"single\";b:1;s:7:\"archive\";b:1;s:8:\"category\";b:1;s:3:\"tag\";b:1;}s:13:\"exclude-pages\";a:0:{}s:15:\"exclude-classes\";a:0:{}s:6:\"footer\";b:1;}','yes'),(26653,'wp-smush-hide_upgrade_notice','1','no'),(26666,'spai_settings_api_url','http://cdn.stadsig.co.za/spai','yes'),(26667,'spai_settings_compress_level','2','yes'),(26668,'spai_settings_type','1','yes'),(26669,'spai_settings_fadein','1','yes'),(26670,'spai_settings_webp','1','yes'),(26671,'spai_settings_excluded_paths','regex:/\\/\\/([^\\/]*\\.|)gravatar.com\\//','yes'),(26672,'spai_settings_backgrounds_lazy','1','yes'),(26673,'spai_settings_remove_exif','1','yes'),(26682,'spai_settings_eager_selectors','','yes'),(26683,'spai_settings_noresize_selectors','','yes'),(26684,'spai_settings_excluded_selectors','','yes'),(26685,'spai_settings_crop','','yes'),(26686,'spai_settings_backgrounds_max_width','1920','yes'),(26687,'spai_settings_parse_json','1','yes'),(26688,'spai_settings_parse_json_lazy','','yes'),(26689,'spai_settings_parse_css_files','1','yes'),(26690,'spai_settings_css_domains','','yes'),(26691,'spai_settings_ext_meta','','yes'),(26706,'bunnycdn','a:8:{s:13:\"advanced_edit\";i:0;s:9:\"pull_zone\";s:10:\"mydivizone\";s:15:\"cdn_domain_name\";s:20:\"mydivizone.b-cdn.net\";s:8:\"excluded\";s:4:\".php\";s:11:\"directories\";s:22:\"wp-content,wp-includes\";s:8:\"site_url\";s:21:\"https://stadsig.co.za\";s:13:\"disable_admin\";i:0;s:7:\"api_key\";s:0:\"\";}','yes'),(26709,'spai_settings_css_ver','4','yes'),(26757,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:26:\"wp-asset-clean-up/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.3.0\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1579252384;s:11:\"plugin_path\";s:27:\"wp-asset-clean-up/wpacu.php\";}}s:7:\"abspath\";s:26:\"/home/stadsig/public_html/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:27:\"wp-asset-clean-up/wpacu.php\";s:8:\"sdk_path\";s:26:\"wp-asset-clean-up/freemius\";s:7:\"version\";s:5:\"2.3.0\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1579252384;}}','yes'),(26758,'fs_debug_mode','','yes'),(26759,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:2951;a:3:{s:4:\"slug\";s:17:\"wp-asset-clean-up\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:27:\"wp-asset-clean-up/wpacu.php\";}}s:11:\"plugin_data\";a:1:{s:17:\"wp-asset-clean-up\";a:15:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:27:\"wp-asset-clean-up/wpacu.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1579162594;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.3.0\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:7:\"1.3.5.3\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:21:\"is_plugin_new_install\";b:1;s:17:\"was_plugin_loaded\";b:1;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:13:\"stadsig.co.za\";s:9:\"server_ip\";s:15:\"129.205.136.191\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1579162601;s:7:\"version\";s:7:\"1.3.5.3\";}s:15:\"prev_is_premium\";b:0;}}s:13:\"file_slug_map\";a:1:{s:27:\"wp-asset-clean-up/wpacu.php\";s:17:\"wp-asset-clean-up\";}s:7:\"plugins\";a:1:{s:17:\"wp-asset-clean-up\";O:9:\"FS_Plugin\":22:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:33:\"Asset CleanUp: Page Speed Booster\";s:4:\"slug\";s:17:\"wp-asset-clean-up\";s:12:\"premium_slug\";s:25:\"wp-asset-clean-up-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:27:\"wp-asset-clean-up/wpacu.php\";s:7:\"version\";s:7:\"1.3.5.3\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:10:\"public_key\";s:32:\"pk_70ecc6600cb03b5168150b4c99257\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"2951\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"a2e2a11474772b7420333e2f6a40305a\";s:13:\"admin_notices\";a:1:{s:17:\"wp-asset-clean-up\";a:0:{}}}','yes'),(26760,'_transient_wpassetcleanup_do_activation_redirect_first_time','1','yes'),(26763,'wpassetcleanup_first_usage','1579162599','no'),(26764,'fs_api_cache','a:0:{}','yes'),(26765,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(26771,'wpassetcleanup_settings','{\"dashboard_show\":\"1\",\"dom_get_type\":\"direct\",\"assets_list_show_status\":\"default\",\"frontend_show_exceptions\":\"et_fb=1\\r\\nct_builder=true\\r\\nvc_editable=true\\r\\npreview_nonce=\\r\\n\",\"assets_list_layout\":\"by-location\",\"assets_list_layout_plugin_area_status\":\"expanded\",\"assets_list_layout_areas_status\":\"expanded\",\"assets_list_inline_code_status\":\"contracted\",\"input_style\":\"enhanced\",\"hide_core_files\":\"1\",\"allow_usage_tracking\":\"1\",\"fetch_cached_files_details_from\":\"db_disk\",\"clear_cached_files_after\":\"10\",\"minify_loaded_css\":\"1\",\"minify_loaded_css_inline\":\"1\",\"minify_loaded_css_exceptions\":\"(.*?)\\\\.min.css\\r\\n\\/plugins\\/wd-instagram-feed\\/(.*?).css\",\"combine_loaded_css\":\"1\",\"combine_loaded_css_exceptions\":\"\\/plugins\\/wd-instagram-feed\\/(.*?).css\",\"inline_css_files\":\"1\",\"inline_css_files_below_size\":\"1\",\"inline_css_files_below_size_input\":\"3\",\"inline_css_files_list\":\"\",\"cache_dynamic_loaded_css\":\"1\",\"minify_loaded_js\":\"1\",\"minify_loaded_js_inline\":\"1\",\"minify_loaded_js_exceptions\":\"(.*?)\\\\.min.js\\r\\n\\/plugins\\/wd-instagram-feed\\/(.*?).js\",\"combine_loaded_js\":\"1\",\"combine_loaded_js_append_handle_extra\":\"1\",\"combine_loaded_js_exceptions\":\"\\/plugins\\/wd-instagram-feed\\/(.*?).js\",\"inline_js_files\":\"1\",\"inline_js_files_below_size\":\"1\",\"inline_js_files_below_size_input\":\"3\",\"inline_js_files_list\":\"\",\"move_inline_jquery_after_src_tag\":\"1\",\"move_scripts_to_body\":\"1\",\"move_scripts_to_body_exceptions\":\"\\/\\/cdn.ampproject.org\\/\",\"cache_dynamic_loaded_js\":\"1\",\"cdn_rewrite_url_css\":\"\",\"cdn_rewrite_url_js\":\"\",\"disable_emojis\":\"1\",\"disable_oembed\":\"1\",\"disable_dashicons_for_guests\":\"1\",\"remove_rsd_link\":\"1\",\"remove_wlw_link\":\"1\",\"remove_rest_api_link\":\"1\",\"remove_shortlink\":\"1\",\"remove_posts_rel_links\":\"1\",\"remove_wp_version\":\"1\",\"remove_generator_tag\":\"1\",\"remove_main_feed_link\":\"1\",\"remove_comment_feed_link\":\"1\",\"remove_html_comments\":\"1\",\"remove_html_comments_exceptions\":\"\",\"local_fonts_display\":\"\",\"local_fonts_preload_files\":\"\",\"google_fonts_combine\":\"1\",\"google_fonts_combine_type\":\"\",\"google_fonts_display\":\"\",\"google_fonts_preload_files\":\"\",\"disable_xmlrpc\":\"keep_it_on\",\"wiki_read\":\"\",\"hide_assets_meta_box\":\"\",\"hide_options_meta_box\":\"\",\"hide_meta_boxes_for_post_types\":[],\"frontend_show\":\"\",\"hide_from_admin_bar\":\"\",\"test_mode\":\"\",\"combine_loaded_css_for_admin_only\":\"\",\"combine_loaded_css_append_handle_extra\":\"\",\"defer_css_loaded_body\":\"\",\"combine_loaded_js_for_admin_only\":\"\",\"combine_loaded_js_defer_body\":\"\",\"cdn_rewrite_enable\":\"\",\"disable_wp_block_library\":\"\",\"disable_jquery_migrate\":\"\",\"disable_comment_reply\":\"\",\"local_fonts_display_overwrite\":\"\",\"google_fonts_preconnect\":\"\",\"google_fonts_remove\":\"\",\"disable_freemius\":\"\"}','no'),(26772,'wpassetcleanup_tracking_last_send','1579162695','no'),(26773,'wpassetcleanup_hide_tracking_notice','1','no'),(26784,'wpassetcleanup_global_unload','{\"styles\":[],\"scripts\":[]}','no'),(26798,'_transient_wpassetcleanup_assets_info','{\"styles\":{\"wp-block-library\":{\"src\":\"\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css\",\"deps\":[],\"ver\":false,\"args\":null,\"extra\":{\"rtl\":\"replace\",\"suffix\":\".min\"},\"textdomain\":null,\"translations_path\":null},\"custom_style_css\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/divi-overlays\\/overlay-effects\\/css\\/style.css\",\"deps\":[],\"ver\":false,\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"divi-stop-stacking\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/divi-stop-stacking\\/css\\/divi-stop-stacking.css\",\"deps\":[],\"ver\":false,\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"mhmm-menus\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/mhmm\\/css\\/mhmm-menus.css\",\"deps\":[],\"ver\":false,\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"mhmm-menu-layout\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/mhmm\\/css\\/mhmm-menu-layout.css\",\"deps\":[],\"ver\":false,\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"mhmm\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/mhmm\\/css\\/mhmm.css\",\"deps\":[],\"ver\":false,\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"et_monarch-css\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/monarch\\/css\\/style.css\",\"deps\":[],\"ver\":\"1.4.12\",\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"et-gf-open-sans\":{\"src\":\"https:\\/\\/fonts.googleapis.com\\/css?family=Open+Sans:400,700\",\"deps\":[],\"ver\":null,\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"parent-style\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/style.css\",\"deps\":[],\"ver\":false,\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"child-style\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi-child\\/style.css\",\"deps\":[\"parent-style\"],\"ver\":\"3.0.44.1494229532\",\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"divi-style\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi-child\\/style.css\",\"deps\":[],\"ver\":\"4.2\",\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"et-builder-googlefonts-cached\":{\"src\":\"https:\\/\\/fonts.googleapis.com\\/css?family=Tajawal:200,300,regular,500,700,800,900|Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic&#038;subset=arabic,latin,latin-ext,greek,greek-ext,vietnamese,cyrillic,cyrillic-ext\",\"deps\":[],\"ver\":false,\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"dashicons\":{\"src\":\"\\/wp-includes\\/css\\/dashicons.min.css\",\"deps\":[],\"ver\":false,\"args\":null,\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"formidable\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/formidable\\/css\\/formidableforms.css\",\"deps\":[],\"ver\":\"1141359\",\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"et-builder-googlefonts\":{\"src\":\"https:\\/\\/fonts.googleapis.com\\/css?family=Tajawal:200,300,regular,500,700,800,900|Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic&#038;subset=arabic,latin,latin-ext,greek,greek-ext,vietnamese,cyrillic,cyrillic-ext\",\"deps\":[],\"ver\":null,\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"frm_fonts\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/formidable\\/css\\/frm_fonts.css\",\"deps\":[],\"ver\":\"4.03.07\",\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"spai-fadein\":{\"src\":false,\"deps\":[],\"ver\":false,\"args\":\"all\",\"extra\":{\"after\":[\"img[data-spai]:not(div.woocommerce-product-gallery img) {opacity: 0;} img[data-spai-eager]:not(div.woocommerce-product-gallery img),img[data-spai-upd]:not(div.woocommerce-product-gallery img) {-webkit-transition: opacity .5s linear 0.2s;-moz-transition: opacity .5s linear 0.2s;transition: opacity .5s linear 0.2s; opacity: 1; }\"]},\"textdomain\":null,\"translations_path\":null},\"et-shortcodes-responsive-css\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/epanel\\/shortcodes\\/css\\/shortcodes_responsive.css\",\"deps\":[],\"ver\":\"4.1\",\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"magnific-popup\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/styles\\/magnific_popup.css\",\"deps\":[],\"ver\":\"4.1\",\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"jquery-lazyloadxt-spinner-css\":{\"src\":\"\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/a3-lazy-load\\/assets\\/css\\/jquery.lazyloadxt.spinner.css\",\"deps\":[],\"ver\":false,\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"a3a3_lazy_load\":{\"src\":\"\\/\\/stadsig.co.za\\/wp-content\\/uploads\\/sass\\/a3_lazy_load.min.css\",\"deps\":[],\"ver\":\"1579332713\",\"args\":\"all\",\"extra\":[],\"textdomain\":null,\"translations_path\":null}},\"scripts\":{\"jquery-core\":{\"src\":\"\\/wp-includes\\/js\\/jquery\\/jquery.js\",\"deps\":[],\"ver\":\"1.12.4-wp\",\"args\":null,\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"jquery-migrate\":{\"src\":\"\\/wp-includes\\/js\\/jquery\\/jquery-migrate.min.js\",\"deps\":[],\"ver\":\"1.4.1\",\"args\":null,\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"jquery\":{\"src\":false,\"deps\":[\"jquery-core\",\"jquery-migrate\"],\"ver\":\"1.12.4-wp\",\"args\":null,\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"snap_svg_js\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/divi-overlays\\/overlay-effects\\/js\\/snap.svg-min.js\",\"deps\":[\"jquery\"],\"ver\":false,\"args\":null,\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"modernizr_js\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/divi-overlays\\/overlay-effects\\/js\\/modernizr.custom.js\",\"deps\":[\"jquery\"],\"ver\":false,\"args\":null,\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"mhmm\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/mhmm\\/js\\/mhmm.min.js\",\"deps\":[\"jquery\"],\"ver\":\"2.1.19\",\"args\":null,\"extra\":{\"data\":\"var html = \\\"<div class=\\\\\\\"et_pb_section et_pb_section_0 et_pb_with_background et_section_regular\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<div id=\\\\\\\"logomain\\\\\\\" class=\\\\\\\"et_pb_row et_pb_row_0\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_module et_pb_image et_pb_image_0 logodesktop et_pb_image_sticky\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<span class=\\\\\\\"et_pb_image_wrap \\\\\\\"><img src=\\\\\\\"https:\\\\\\/\\\\\\/www.stadsig.co.za\\\\\\/wp-content\\\\\\/uploads\\\\\\/Stadsig_NewLogo.png\\\\\\\" alt=\\\\\\\"\\\\\\\" title=\\\\\\\"\\\\\\\" \\\\\\/><\\\\\\/span>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_column -->\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_row --><div class=\\\\\\\"et_pb_row et_pb_row_1\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<style>@media only screen and ( max-width: 1114px ) {.et_pb_mhmm_inline_menu_0 {display: none;}}<\\\\\\/style><div class=\\\\\\\"et_pb_mhmm_inline_menu et_pb_mhmm_inline_menu_0 \\\\\\\" ><nav class=\\\\\\\"mhmm-inline-menu transition-fade\\\\\\\"><ul id = \\\\\\\"menu-main\\\\\\\" class = \\\\\\\"menu\\\\\\\"><li id=\\\\\\\"menu-item-1345\\\\\\\" class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-1345\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/\\\\\\\">home<\\\\\\/a><\\\\\\/li>\\\\n<li id=\\\\\\\"menu-item-223373\\\\\\\" class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223373\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/the-area\\\\\\/\\\\\\\">the area<\\\\\\/a><\\\\\\/li>\\\\n<li id=\\\\\\\"menu-item-223379\\\\\\\" class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223379\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/estate-overview\\\\\\/\\\\\\\">estate overview<\\\\\\/a><\\\\\\/li>\\\\n<li id=\\\\\\\"menu-item-223378\\\\\\\" class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223378\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/house-plans\\\\\\/\\\\\\\">house plans<\\\\\\/a><\\\\\\/li>\\\\n<li id=\\\\\\\"menu-item-223377\\\\\\\" class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223377\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/the-team\\\\\\/\\\\\\\">the team<\\\\\\/a><\\\\\\/li>\\\\n<li id=\\\\\\\"menu-item-225593\\\\\\\" class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-225593\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/documentation\\\\\\/\\\\\\\">documentation<\\\\\\/a><\\\\\\/li>\\\\n<li id=\\\\\\\"menu-item-223375\\\\\\\" class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223375\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/news\\\\\\/\\\\\\\">news<\\\\\\/a><\\\\\\/li>\\\\n<li id=\\\\\\\"menu-item-225804\\\\\\\" class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-225804\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/gallery\\\\\\/\\\\\\\">gallery<\\\\\\/a><\\\\\\/li>\\\\n<li id=\\\\\\\"menu-item-223374\\\\\\\" class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-223369 current_page_item menu-item-223374\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/contact\\\\\\/\\\\\\\" aria-current=\\\\\\\"page\\\\\\\">contact<\\\\\\/a><\\\\\\/li>\\\\n<\\\\\\/ul><\\\\\\/nav><\\\\\\/div>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_column -->\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_row --><div class=\\\\\\\"et_pb_row et_pb_row_2\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_column et_pb_column_1_3 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_module et_pb_image et_pb_image_1 logomobile et_pb_image_sticky\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<span class=\\\\\\\"et_pb_image_wrap \\\\\\\"><img src=\\\\\\\"https:\\\\\\/\\\\\\/www.stadsig.co.za\\\\\\/wp-content\\\\\\/uploads\\\\\\/Stadsig_NewLogo.png\\\\\\\" alt=\\\\\\\"\\\\\\\" title=\\\\\\\"\\\\\\\" \\\\\\/><\\\\\\/span>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_column --><div class=\\\\\\\"et_pb_column et_pb_column_2_3 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<style>@media only screen and ( min-width: 1116px ) {.et_pb_mhmm_menu_0 {display: none;}}<\\\\\\/style><div class=\\\\\\\"et_pb_mhmm_menu et_pb_mhmm_menu_0 menu-style-full menu-button-align-right mobiletop\\\\\\\" ><a class=\\\\\\\"menu-button\\\\\\\"><div><\\\\\\/div><\\\\\\/a><a class=\\\\\\\"menu-button-close\\\\\\\"><\\\\\\/a><div class=\\\\\\\"menu-overlay\\\\\\\"><\\\\\\/div><nav data-back-text=\\\\\\\"Back\\\\\\\"><ul id = \\\\\\\"menu-main-1\\\\\\\" class = \\\\\\\"menu\\\\\\\"><li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-1345\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/\\\\\\\">home<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223373\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/the-area\\\\\\/\\\\\\\">the area<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223379\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/estate-overview\\\\\\/\\\\\\\">estate overview<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223378\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/house-plans\\\\\\/\\\\\\\">house plans<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223377\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/the-team\\\\\\/\\\\\\\">the team<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-225593\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/documentation\\\\\\/\\\\\\\">documentation<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223375\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/news\\\\\\/\\\\\\\">news<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-225804\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/gallery\\\\\\/\\\\\\\">gallery<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-223369 current_page_item menu-item-223374\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/contact\\\\\\/\\\\\\\" aria-current=\\\\\\\"page\\\\\\\">contact<\\\\\\/a><\\\\\\/li>\\\\n<\\\\\\/ul><\\\\\\/nav><\\\\\\/div><div class=\\\\\\\"divi-stop-stacking et_pb_stop_stacking_0\\\\\\\"><\\\\\\/div><div class=\\\\\\\"et_pb_module et_pb_code et_pb_code_0\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_code_inner\\\\\\\">\\\\n\\\\n<style>\\\\n\\\\n\\\\\\/* Large screens (1405px and above) *\\\\\\/\\\\n@media only screen and (min-width: 1405px ) { \\\\n .et_pb_mhmm_inline_menu_0 nav ul li a {\\\\n font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;\\\\n font-weight: 200;\\\\n font-size: 22px;\\\\n letter-spacing: 2px;\\\\n}\\\\n.et_pb_mhmm_inline_menu_0 nav>ul>li>a {\\\\n padding-top: 10px;\\\\n padding-right: 20px;\\\\n padding-bottom: 10px;\\\\n padding-left: 20px;\\\\n color: #575759;\\\\n background-color: rgba(255,255,255,0);\\\\n}\\\\n.logomobile {\\\\ndisplay:none;\\\\n}\\\\n.et_pb_row_2.et_pb_row {\\\\n display: none;\\\\n}\\\\n }\\\\n\\\\n\\\\\\/* Laptops & Desktops (1115-1405px) *\\\\\\/\\\\n@media only screen and (min-width: 1115px) and (max-width: 1405px) { \\\\n .et_pb_mhmm_inline_menu_0 nav ul li a {\\\\n font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;\\\\n font-weight: 300;\\\\n font-size: 20px;\\\\n letter-spacing: 1px;\\\\n}\\\\n.et_pb_row_2.et_pb_row {\\\\n display: none;\\\\n}\\\\n\\\\n.logomobile {\\\\ndisplay:none;\\\\n}\\\\n.et_pb_mhmm_inline_menu_0 nav>ul>li>a {\\\\n padding-top: 10px;\\\\n padding-right: 10px;\\\\n padding-bottom: 10px;\\\\n padding-left: 10px;\\\\n color: #575759;\\\\n background-color: rgba(255,255,255,0);\\\\n}\\\\n}\\\\n\\\\n\\\\\\/*Tablets (0 - 1100px) *\\\\\\/\\\\n@media only screen and (max-width: 1114px) and (min-width:786px) { \\\\n.logodesktop {\\\\ndisplay:none;\\\\n}\\\\n.et_pb_row_0.et_pb_row {\\\\n padding-top: 0px !important;\\\\n padding-bottom: 0px !important;\\\\n}\\\\n.et_pb_row {\\\\n padding: 1% 0;\\\\n}\\\\n.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {\\\\n margin-top: 11% !important;\\\\n}\\\\n.et_pb_mhmm_menu.menu-style-full nav {\\\\n left: 55%;\\\\n width: 31%;\\\\n top: 14%;\\\\n opacity: 0;\\\\n visibility: hidden;\\\\n}\\\\n.et_pb_mhmm_menu_0 nav ul li a {\\\\n font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;\\\\n font-size: 16px !important;\\\\n text-align: center;\\\\n color: #ffffff !important;\\\\n background-color: #a6bf96cf !important;\\\\n border-bottom: 1px solid #ffffff !important;\\\\n}\\\\n.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {\\\\n color: #ffffff !important;\\\\n background-color: #84a072 !important;\\\\n border-bottom: 1px solid #ffffff;\\\\n font-size: 16px !important;\\\\n}\\\\n.et_pb_mhmm_menu_0 .menu-overlay {\\\\n background-color: rgba(255,255,255,.2) !important;\\\\n}\\\\n}\\\\n.et_pb_mhmm_menu.menu-style-full .menu-button-close {\\\\n right: 7.5%;\\\\n top: 10.5%;\\\\n padding:14px !important;\\\\n}\\\\n@media only screen and (max-width: 786px) { \\\\n.logodesktop {\\\\ndisplay:none;\\\\n}\\\\n.et_pb_row_0.et_pb_row {\\\\n padding-top: 0px !important;\\\\n padding-bottom: 0px !important;\\\\n}\\\\n.et_pb_row {\\\\n padding: 1% 0;\\\\n}\\\\n.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {\\\\n margin-top: 11% !important;\\\\n}\\\\n.et_pb_mhmm_menu.menu-style-full nav {\\\\n left: 20%;\\\\n width: 60%;\\\\n top: 10%;\\\\n opacity: 0;\\\\n visibility: hidden;\\\\n}\\\\n.et_pb_mhmm_menu_0 nav ul li a {\\\\n font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;\\\\n font-size: 22px !important;\\\\n text-align: center;\\\\n color: #ffffff !important;\\\\n background-color: #a6bf96e6 !important;\\\\n border-bottom: 1px solid #ffffff !important;\\\\n}\\\\n.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {\\\\n color: #ffffff !important;\\\\n background-color: #84a072 !important;\\\\n border-bottom: 1px solid #ffffff;\\\\n font-size: 22px !important;\\\\n}\\\\n.et_pb_mhmm_menu_0 .menu-overlay {\\\\n background-color: rgba(255,255,255,.2) !important;\\\\n}\\\\n}\\\\n.mhmm-menu-active .et_pb_mhmm_menu.menu-style-full nav {\\\\n opacity: 1;\\\\n visibility: visible;\\\\n overflow-y: hidden;\\\\n}\\\\n.et_pb_mhmm_menu_0 .menu-button-close:before, .et_pb_mhmm_menu_0 .menu-button-close:after, .et_pb_mhmm_menu_0 .menu-button-close div {\\\\n background-color: #57575900 !important;\\\\n}\\\\n<\\\\\\/style><\\\\\\/div>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_code -->\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_column -->\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_row --><div class=\\\\\\\"et_pb_row et_pb_row_3\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_module et_pb_divider_0 et_pb_space et_pb_divider_hidden\\\\\\\"><div class=\\\\\\\"et_pb_divider_internal\\\\\\\"><\\\\\\/div><\\\\\\/div>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_column -->\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_row -->\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_section -->\\\";\"},\"textdomain\":null,\"translations_path\":null},\"mhmm-menu-layout\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/mhmm\\/js\\/mhmm-menu-layout.min.js\",\"deps\":[\"jquery\"],\"ver\":\"2.1.19\",\"args\":null,\"extra\":{\"data\":\"var mhmm_menu_layout = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"layouts\\\":{\\\"1463\\\":{\\\"iframe\\\":\\\"<iframe class=\\\\\\\"mhmm-menu-layout-iframe\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/mhmm-menu-layout-loader\\\\\\/?mhmm_menu_layout_id=1463\\\\\\\" scrolling=\\\\\\\"yes\\\\\\\"><\\\\\\/iframe>\\\",\\\"content\\\":\\\"<div class=\\\\\\\"et_pb_section et_pb_section_1 et_pb_with_background et_section_regular\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_row et_pb_row_4 et_pb_row_fullwidth et_pb_equal_columns et_pb_gutters1\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_module et_pb_image et_pb_image_2 et_pb_image_sticky\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<span class=\\\\\\\"et_pb_image_wrap \\\\\\\"><img src=\\\\\\\"https:\\\\\\/\\\\\\/www.stadsig.co.za\\\\\\/wp-content\\\\\\/uploads\\\\\\/Stadsig_NewLogo.png\\\\\\\" alt=\\\\\\\"\\\\\\\" title=\\\\\\\"\\\\\\\" \\\\\\/><\\\\\\/span>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div><div class=\\\\\\\"et_pb_mhmm_inline_menu et_pb_mhmm_inline_menu_1 \\\\\\\" ><nav class=\\\\\\\"mhmm-inline-menu show-parent-icon transition-fade\\\\\\\"><ul id = \\\\\\\"menu-main-2\\\\\\\" class = \\\\\\\"menu\\\\\\\"><li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-1345\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/\\\\\\\">home<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223373\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/the-area\\\\\\/\\\\\\\">the area<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223379\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/estate-overview\\\\\\/\\\\\\\">estate overview<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223378\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/house-plans\\\\\\/\\\\\\\">house plans<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223377\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/the-team\\\\\\/\\\\\\\">the team<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-225593\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/documentation\\\\\\/\\\\\\\">documentation<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223375\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/news\\\\\\/\\\\\\\">news<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-225804\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/gallery\\\\\\/\\\\\\\">gallery<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-223369 current_page_item menu-item-223374\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/contact\\\\\\/\\\\\\\" aria-current=\\\\\\\"page\\\\\\\">contact<\\\\\\/a><\\\\\\/li>\\\\n<\\\\\\/ul><\\\\\\/nav><\\\\\\/div>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_column -->\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_row -->\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_section -->\\\",\\\"transition\\\":\\\"\\\",\\\"background\\\":\\\"\\\",\\\"close\\\":\\\"\\\",\\\"close_color\\\":\\\"\\\",\\\"close_background_color\\\":\\\"\\\"},\\\"1460\\\":{\\\"iframe\\\":\\\"<iframe class=\\\\\\\"mhmm-menu-layout-iframe\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/mhmm-menu-layout-loader\\\\\\/?mhmm_menu_layout_id=1460\\\\\\\" scrolling=\\\\\\\"yes\\\\\\\"><\\\\\\/iframe>\\\",\\\"content\\\":\\\"<div class=\\\\\\\"et_pb_section et_pb_section_2 et_section_regular\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_row et_pb_row_5 et_pb_row_fullwidth et_pb_equal_columns et_pb_gutters1\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_column et_pb_column_1_4 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_module et_pb_image et_pb_image_3 et_pb_image_sticky\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<span class=\\\\\\\"et_pb_image_wrap \\\\\\\"><img src=\\\\\\\"https:\\\\\\/\\\\\\/www.stadsig.co.za\\\\\\/wp-content\\\\\\/uploads\\\\\\/Stadsig_Logo.png\\\\\\\" alt=\\\\\\\"\\\\\\\" title=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-content\\\\\\/uploads\\\\\\/Stadsig_Logo.png 982w, https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-content\\\\\\/uploads\\\\\\/Stadsig_Logo-300x173.png 300w, https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-content\\\\\\/uploads\\\\\\/Stadsig_Logo-768x442.png 768w\\\\\\\" sizes=\\\\\\\"(max-width: 982px) 100vw, 982px\\\\\\\" \\\\\\/><\\\\\\/span>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_column --><div class=\\\\\\\"et_pb_column et_pb_column_3_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t<div class=\\\\\\\"et_pb_mhmm_inline_menu et_pb_mhmm_inline_menu_2 \\\\\\\" ><nav class=\\\\\\\"mhmm-inline-menu show-parent-icon transition-fade\\\\\\\"><ul id = \\\\\\\"menu-main-3\\\\\\\" class = \\\\\\\"menu\\\\\\\"><li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-1345\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/\\\\\\\">home<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223373\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/the-area\\\\\\/\\\\\\\">the area<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223379\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/estate-overview\\\\\\/\\\\\\\">estate overview<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223378\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/house-plans\\\\\\/\\\\\\\">house plans<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223377\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/the-team\\\\\\/\\\\\\\">the team<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-225593\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/documentation\\\\\\/\\\\\\\">documentation<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-223375\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/news\\\\\\/\\\\\\\">news<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page menu-item-225804\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/gallery\\\\\\/\\\\\\\">gallery<\\\\\\/a><\\\\\\/li>\\\\n<li class=\\\\\\\"menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-223369 current_page_item menu-item-223374\\\\\\\"><a href=\\\\\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/contact\\\\\\/\\\\\\\" aria-current=\\\\\\\"page\\\\\\\">contact<\\\\\\/a><\\\\\\/li>\\\\n<\\\\\\/ul><\\\\\\/nav><\\\\\\/div>\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_column -->\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_row -->\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<\\\\\\/div> <!-- .et_pb_section -->\\\",\\\"transition\\\":\\\"\\\",\\\"background\\\":\\\"\\\",\\\"close\\\":\\\"\\\",\\\"close_color\\\":\\\"\\\",\\\"close_background_color\\\":\\\"\\\"}}};\"},\"textdomain\":null,\"translations_path\":null},\"et-core-api-spam-recaptcha\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/core\\/admin\\/js\\/recaptcha.js\",\"deps\":[\"jquery\"],\"ver\":false,\"args\":null,\"extra\":{\"data\":\"var et_core_api_spam_recaptcha = {\\\"site_key\\\":\\\"\\\",\\\"page_action\\\":{\\\"action\\\":\\\"contact\\\"}};\"},\"textdomain\":null,\"translations_path\":null},\"divi-stop-stacking\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/divi-stop-stacking\\/js\\/divi-stop-stacking.min.js\",\"deps\":[\"jquery\"],\"ver\":false,\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"et_monarch-idle\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/monarch\\/js\\/idle-timer.min.js\",\"deps\":[\"jquery\"],\"ver\":\"1.4.12\",\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"et_monarch-custom-js\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/monarch\\/js\\/custom.js\",\"deps\":[\"jquery\"],\"ver\":\"1.4.12\",\"args\":null,\"extra\":{\"group\":1,\"data\":\"var monarchSettings = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"pageurl\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/contact\\\\\\/\\\",\\\"stats_nonce\\\":\\\"f609b5bf6d\\\",\\\"share_counts\\\":\\\"062f31e30e\\\",\\\"follow_counts\\\":\\\"e621a56cd5\\\",\\\"total_counts\\\":\\\"7009042945\\\",\\\"media_single\\\":\\\"0893ef7b63\\\",\\\"media_total\\\":\\\"67a2d72a2a\\\",\\\"generate_all_window_nonce\\\":\\\"8d3baf2c56\\\",\\\"no_img_message\\\":\\\"No images available for sharing on this page\\\"};\"},\"textdomain\":null,\"translations_path\":null},\"divi-custom-script\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/js\\/custom.min.js\",\"deps\":[\"jquery\"],\"ver\":\"4.2\",\"args\":null,\"extra\":{\"group\":1,\"data\":\"var DIVI = {\\\"item_count\\\":\\\"%d Item\\\",\\\"items_count\\\":\\\"%d Items\\\"};\\nvar et_shortcodes_strings = {\\\"previous\\\":\\\"Previous\\\",\\\"next\\\":\\\"Next\\\"};\\nvar et_pb_custom = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"images_uri\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-content\\\\\\/themes\\\\\\/Divi\\\\\\/images\\\",\\\"builder_images_uri\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-content\\\\\\/themes\\\\\\/Divi\\\\\\/includes\\\\\\/builder\\\\\\/images\\\",\\\"et_frontend_nonce\\\":\\\"ff677e04b2\\\",\\\"subscription_failed\\\":\\\"Please, check the fields below to make sure you entered the correct information.\\\",\\\"et_ab_log_nonce\\\":\\\"37140381cc\\\",\\\"fill_message\\\":\\\"Please, fill in the following fields:\\\",\\\"contact_error_message\\\":\\\"Please, fix the following errors:\\\",\\\"invalid\\\":\\\"Invalid email\\\",\\\"captcha\\\":\\\"Captcha\\\",\\\"prev\\\":\\\"Prev\\\",\\\"previous\\\":\\\"Previous\\\",\\\"next\\\":\\\"Next\\\",\\\"wrong_captcha\\\":\\\"You entered the wrong number in captcha.\\\",\\\"ignore_waypoints\\\":\\\"no\\\",\\\"is_divi_theme_used\\\":\\\"1\\\",\\\"widget_search_selector\\\":\\\".widget_search\\\",\\\"ab_tests\\\":[],\\\"is_ab_testing_active\\\":\\\"\\\",\\\"page_id\\\":\\\"223369\\\",\\\"unique_test_id\\\":\\\"\\\",\\\"ab_bounce_rate\\\":\\\"5\\\",\\\"is_cache_plugin_active\\\":\\\"no\\\",\\\"is_shortcode_tracking\\\":\\\"\\\",\\\"tinymce_uri\\\":\\\"\\\"}; var et_frontend_scripts = {\\\"builderCssContainerPrefix\\\":\\\"#et-boc\\\",\\\"builderCssLayoutPrefix\\\":\\\"#et-boc .et-l\\\"};\\nvar et_pb_box_shadow_elements = [];\"},\"textdomain\":null,\"translations_path\":null},\"et-core-common\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/core\\/admin\\/js\\/common.js\",\"deps\":[\"jquery\"],\"ver\":\"4.2\",\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"wp-embed\":{\"src\":\"\\/wp-includes\\/js\\/wp-embed.min.js\",\"deps\":[],\"ver\":false,\"args\":null,\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"formidable\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/formidable\\/js\\/formidable.min.js\",\"deps\":[\"jquery\"],\"ver\":\"4.03.07\",\"args\":null,\"extra\":{\"group\":1,\"data\":\"var frm_js = {\\\"ajax_url\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"images_url\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-content\\\\\\/plugins\\\\\\/formidable\\\\\\/images\\\",\\\"loading\\\":\\\"Loading\\\\u2026\\\",\\\"remove\\\":\\\"Remove\\\",\\\"offset\\\":\\\"4\\\",\\\"nonce\\\":\\\"c90a578bbd\\\",\\\"id\\\":\\\"ID\\\",\\\"no_results\\\":\\\"No results match\\\",\\\"file_spam\\\":\\\"That file looks like Spam.\\\",\\\"calc_error\\\":\\\"There is an error in the calculation in the field with key\\\",\\\"empty_fields\\\":\\\"Please complete the preceding required fields before uploading a file.\\\"};\"},\"textdomain\":null,\"translations_path\":null},\"formidablepro\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/formidable-pro\\/js\\/formidablepro.min.js\",\"deps\":[\"jquery\",\"formidable\"],\"ver\":\"4.03.07\",\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"exit-intent\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/divi-overlays\\/overlay-effects\\/js\\/jquery.exitintent.js\",\"deps\":[\"jquery\"],\"ver\":false,\"args\":null,\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"divi-custom-js\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/divi-overlays\\/overlay-effects\\/js\\/custom.js\",\"deps\":[\"jquery\"],\"ver\":\"\",\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"et-builder-modules-global-functions-script\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/scripts\\/frontend-builder-global-functions.js\",\"deps\":[\"jquery\"],\"ver\":\"4.1\",\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"et-jquery-touch-mobile\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/scripts\\/jquery.mobile.custom.min.js\",\"deps\":[\"jquery\"],\"ver\":\"4.1\",\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"smooth-scroll\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/js\\/smoothscroll.js\",\"deps\":[\"jquery\"],\"ver\":\"4.1\",\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"spai-scripts\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/shortpixel-adaptive-images\\/js\\/ai.min.js\",\"deps\":[\"jquery\"],\"ver\":\"1.7.5\",\"args\":null,\"extra\":{\"group\":1,\"data\":\"var spai_settings = {\\\"api_url\\\":\\\"https:\\\\\\/\\\\\\/cdn.shortpixel.ai\\\\\\/spai\\\\\\/w_%WIDTH%+q_glossy+ret_img\\\",\\\"method\\\":\\\"src\\\",\\\"crop\\\":\\\"\\\",\\\"debug\\\":\\\"\\\",\\\"site_url\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\",\\\"plugin_url\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-content\\\\\\/plugins\\\\\\/shortpixel-adaptive-images\\\",\\\"version\\\":\\\"1.7.5\\\",\\\"excluded_selectors\\\":[],\\\"eager_selectors\\\":[],\\\"noresize_selectors\\\":[],\\\"excluded_paths\\\":[\\\"regex:\\\\\\/\\\\\\\\\\\\\\/\\\\\\\\\\\\\\/([^\\\\\\\\\\\\\\/]*\\\\\\\\.|)gravatar.com\\\\\\\\\\\\\\/\\\\\\/\\\"],\\\"active_integrations\\\":{\\\"nextgen\\\":false,\\\"modula\\\":false,\\\"elementor\\\":false,\\\"elementor-addons\\\":false,\\\"viba-portfolio\\\":false,\\\"envira\\\":false,\\\"everest\\\":false,\\\"wp-bakery\\\":false,\\\"woocommerce\\\":false,\\\"foo\\\":false,\\\"oxygen\\\":false,\\\"slider-revolution\\\":false,\\\"smart-slider\\\":true,\\\"wp-grid-builder\\\":false,\\\"wp-rocket\\\":{\\\"lazyload\\\":false,\\\"css-filter\\\":false,\\\"minify-css\\\":false},\\\"theme\\\":\\\"Divi Child\\\"},\\\"parse_css_files\\\":\\\"1\\\",\\\"backgrounds_max_width\\\":\\\"1920\\\",\\\"sep\\\":\\\"+\\\",\\\"webp\\\":\\\"1\\\",\\\"sniper\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-content\\\\\\/plugins\\\\\\/shortpixel-adaptive-images\\\\\\/img\\\\\\/target.cur\\\",\\\"affected_tags\\\":\\\"{{SPAI-AFFECTED-TAGS}}\\\",\\\"ajax_url\\\":\\\"https:\\\\\\/\\\\\\/stadsig.co.za\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\"};\"},\"textdomain\":null,\"translations_path\":null},\"divi-fitvids\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/scripts\\/jquery.fitvids.js\",\"deps\":[\"jquery\"],\"ver\":\"4.1\",\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"waypoints\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/scripts\\/waypoints.min.js\",\"deps\":[\"jquery\"],\"ver\":\"4.1\",\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"magnific-popup\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/scripts\\/jquery.magnific-popup.js\",\"deps\":[\"jquery\"],\"ver\":\"4.1\",\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"et-builder-modules-script\":{\"src\":\"https:\\/\\/stadsig.co.za\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/scripts\\/frontend-builder-scripts.js\",\"deps\":[\"jquery\",\"et-jquery-touch-mobile\"],\"ver\":\"4.1\",\"args\":null,\"extra\":{\"group\":1,\"data\":\"var et_frontend_scripts = {\\\"builderCssContainerPrefix\\\":\\\"#et-boc\\\",\\\"builderCssLayoutPrefix\\\":\\\"#et-boc .et-l\\\"};\"},\"textdomain\":null,\"translations_path\":null},\"hoverintent-js\":{\"src\":\"\\/wp-includes\\/js\\/hoverintent-js.min.js\",\"deps\":[],\"ver\":\"2.2.1\",\"args\":1,\"extra\":[],\"textdomain\":null,\"translations_path\":null},\"jquery-lazyloadxt\":{\"src\":\"\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/a3-lazy-load\\/assets\\/js\\/jquery.lazyloadxt.extra.min.js\",\"deps\":[\"jquery\"],\"ver\":\"2.2.2\",\"args\":null,\"extra\":{\"group\":1,\"data\":\"var a3_lazyload_params = {\\\"apply_images\\\":\\\"1\\\",\\\"apply_videos\\\":\\\"1\\\"};\"},\"textdomain\":null,\"translations_path\":null},\"jquery-lazyloadxt-srcset\":{\"src\":\"\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/a3-lazy-load\\/assets\\/js\\/jquery.lazyloadxt.srcset.min.js\",\"deps\":[\"jquery\",\"jquery-lazyloadxt\"],\"ver\":\"2.2.2\",\"args\":null,\"extra\":{\"group\":1},\"textdomain\":null,\"translations_path\":null},\"jquery-lazyloadxt-extend\":{\"src\":\"\\/\\/stadsig.co.za\\/wp-content\\/plugins\\/a3-lazy-load\\/assets\\/js\\/jquery.lazyloadxt.extend.js\",\"deps\":[\"jquery\",\"jquery-lazyloadxt\",\"jquery-lazyloadxt-srcset\"],\"ver\":\"2.2.2\",\"args\":null,\"extra\":{\"group\":1,\"data\":\"var a3_lazyload_extend_params = {\\\"edgeY\\\":\\\"0\\\"};\"},\"textdomain\":null,\"translations_path\":null}}}','yes'),(26811,'wpassetcleanup_bulk_unload','{\"styles\":{\"post_type\":{\"page\":[]}},\"scripts\":{\"post_type\":{\"page\":[]}}}','no'),(26812,'wpassetcleanup_global_data','{\"styles\":{\"preloads\":{\"parent-style\":\"basic\"}},\"scripts\":{\"preloads\":[]}}','no'),(26983,'breeze_first_install','no','yes'),(26984,'breeze_basic_settings','a:13:{s:13:\"breeze-active\";s:1:\"1\";s:10:\"breeze-ttl\";s:0:\"\";s:18:\"breeze-minify-html\";s:1:\"0\";s:17:\"breeze-minify-css\";s:1:\"0\";s:16:\"breeze-minify-js\";s:1:\"0\";s:23:\"breeze-gzip-compression\";s:1:\"1\";s:20:\"breeze-desktop-cache\";s:1:\"1\";s:20:\"breeze-browser-cache\";s:1:\"1\";s:19:\"breeze-mobile-cache\";s:1:\"1\";s:20:\"breeze-disable-admin\";s:1:\"1\";s:20:\"breeze-display-clean\";s:1:\"1\";s:24:\"breeze-include-inline-js\";s:1:\"0\";s:25:\"breeze-include-inline-css\";s:1:\"0\";}','yes'),(26985,'breeze_advanced_settings','a:7:{s:19:\"breeze-exclude-urls\";a:0:{}s:16:\"breeze-group-css\";s:1:\"0\";s:15:\"breeze-group-js\";s:1:\"0\";s:18:\"breeze-exclude-css\";a:0:{}s:17:\"breeze-exclude-js\";a:0:{}s:24:\"breeze-move-to-footer-js\";a:0:{}s:15:\"breeze-defer-js\";a:0:{}}','yes'),(26986,'breeze_cdn_integration','a:5:{s:10:\"cdn-active\";s:1:\"1\";s:7:\"cdn-url\";s:15:\"//stadsig.co.za\";s:11:\"cdn-content\";a:2:{i:0;s:11:\"wp-includes\";i:1;s:10:\"wp-content\";}s:19:\"cdn-exclude-content\";a:1:{i:0;s:4:\".php\";}s:17:\"cdn-relative-path\";s:1:\"1\";}','yes'),(26987,'breeze_varnish_cache','a:1:{s:18:\"auto-purge-varnish\";s:1:\"1\";}','yes'),(27072,'wp-optimize-install-or-update-notice-version','1.0','yes'),(27109,'wp-short-pixel-query-id-stop','226364','yes'),(27111,'wp-short-pixel-create-webp-markup','3','yes'),(27112,'wp-short-pixel-verifiedKey','1','no'),(27113,'wp-short-pixel-activation-notice','1','no'),(27114,'wp-short-pixel-activation-date','1579190132','no'),(27115,'wp-short-pixel-apiKey','PoDH7DWc03o3hQlQSmoG','no'),(27116,'wp-short-pixel-compression','1','yes'),(27117,'wp-short-process_thumbnails','0','yes'),(27118,'wp-short-pixel_cmyk2rgb','1','yes'),(27119,'wp-short-backup_images','1','yes'),(27120,'wp-short-pixel-resize-images','0','yes'),(27121,'wp-short-pixel-resize-width','','yes'),(27122,'wp-short-pixel-resize-height','','yes'),(27123,'wp-short-pixel-front-bootstrap','0','yes'),(27124,'wp-short-pixel-last-back-action','','no'),(27125,'wp-short-pixel-keep-exif','0','yes'),(27126,'wp-short-create-webp','1','yes'),(27127,'wp-short-pixel-optimize-retina','1','yes'),(27128,'wp-short-pixel-optimize-unlisted','0','yes'),(27129,'wp-short-pixel-resize-type','outer','yes'),(27130,'wp-short-pixel-site-auth-user','','no'),(27131,'wp-short-pixel-site-auth-pass','','no'),(27132,'wp-short-pixel-auto-media-library','1','yes'),(27133,'wp-short-pixel-optimize-pdfs','0','yes'),(27134,'wp-short-pixel-exclude-patterns','a:0:{}','yes'),(27135,'wp-short-pixel-png2jpg','0','yes'),(27136,'wp-short-pixel-excludeSizes','a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}','yes'),(27137,'wp-short-pixel-cloudflareAPIEmail','','no'),(27138,'wp-short-pixel-cloudflareAuthKey','','no'),(27139,'wp-short-pixel-cloudflareAPIZoneID','','no'),(27140,'wp-short-pixel-include-next-gen','0','yes'),(27141,'wp-short-pixel-has-custom-folders','','no'),(27142,'wp-short-pixel-custom-bulk-paused','0','yes'),(27143,'wp-short-pixel-remove-settings-on-delete-plugin','','no'),(27144,'wp-short-pixel-current-total-files','a:44:{s:11:\"APIKeyValid\";b:1;s:12:\"APICallsMade\";s:10:\"100 images\";s:13:\"APICallsQuota\";s:10:\"100 images\";s:19:\"APICallsMadeOneTime\";s:12:\"3,923 images\";s:20:\"APICallsQuotaOneTime\";s:13:\"10,000 images\";s:19:\"APICallsMadeNumeric\";s:3:\"100\";s:20:\"APICallsQuotaNumeric\";i:100;s:26:\"APICallsMadeOneTimeNumeric\";s:4:\"3923\";s:27:\"APICallsQuotaOneTimeNumeric\";s:5:\"10000\";s:17:\"APICallsRemaining\";i:6077;s:18:\"APILastRenewalDate\";s:19:\"2020-01-17 00:01:25\";s:11:\"DomainCheck\";s:10:\"Accessible\";s:4:\"time\";i:1587544202;s:12:\"optimizePdfs\";s:1:\"0\";s:10:\"totalFiles\";i:142;s:9:\"mainFiles\";i:138;s:19:\"totalProcessedFiles\";i:153;s:18:\"mainProcessedFiles\";i:153;s:19:\"totalProcLossyFiles\";i:153;s:18:\"mainProcLossyFiles\";i:153;s:20:\"totalProcGlossyFiles\";i:0;s:19:\"mainProcGlossyFiles\";i:0;s:22:\"totalProcLosslessFiles\";i:0;s:21:\"mainProcLosslessFiles\";i:0;s:12:\"totalMlFiles\";i:142;s:11:\"mainMlFiles\";i:138;s:21:\"totalProcessedMlFiles\";i:153;s:20:\"mainProcessedMlFiles\";i:153;s:21:\"totalProcLossyMlFiles\";i:153;s:20:\"mainProcLossyMlFiles\";i:153;s:22:\"totalProcGlossyMlFiles\";i:0;s:21:\"mainProcGlossyMlFiles\";i:0;s:24:\"totalProcLosslessMlFiles\";i:0;s:23:\"mainProcLosslessMlFiles\";i:0;s:21:\"totalProcUndefMlFiles\";i:0;s:20:\"mainProcUndefMlFiles\";i:0;s:21:\"mainUnprocessedThumbs\";i:1;s:7:\"totalM1\";i:0;s:7:\"totalM2\";i:8;s:7:\"totalM3\";i:0;s:7:\"totalM4\";i:96;s:15:\"filesWithErrors\";a:0:{}s:19:\"moreFilesWithErrors\";i:0;s:19:\"foundUnlistedThumbs\";b:0;}','yes'),(27146,'wp-short-pixel-thumbnail-count','0','no'),(27147,'wp-short-pixel-files-under-5-percent','0','no'),(27148,'wp-short-pixel-savedSpace','17773338','yes'),(27149,'wp-short-pixel-api-retries','0','yes'),(27150,'wp-short-pixel-total-optimized','7229694','yes'),(27151,'wp-short-pixel-total-original','25003032','yes'),(27152,'wp-short-pixel-quota-exceeded','0','yes'),(27153,'wp-short-pixel-protocol','http','yes'),(27155,'wp-short-pixel-download-archive','6','yes'),(27156,'wp-short-pixel-media-alert','','no'),(27157,'wp-short-pixel-dismissed-notices','a:0:{}','no'),(27158,'wp-short-pixel-view-mode','','no'),(27159,'wp-short-pixel-redirected-settings','2','yes'),(27160,'wp-short-pixel-converted-png2jpg','a:0:{}','no'),(27163,'wp-short-pixel-bulk-count','182','yes'),(27164,'wp-short-pixel-bulk-previous-percent','80','yes'),(27166,'wp-short-pixel-bulk-done-count','146','yes'),(27167,'wp-short-pixel-last-bulk-start-time','1579274727','yes'),(27168,'wp-short-pixel-last-bulk-success-time','1579274727','yes'),(27169,'wp-short-pixel-bulk-running-time','5597','yes'),(27172,'wp-short-pixel-bulk-ever-ran','1','yes'),(27173,'wp-short-pixel-flag-id','226223','yes'),(27174,'wp-short-pixel-failed-imgs','','yes'),(27177,'wp-short-pixel-apiKeyTried','','yes'),(27848,'wp-short-pixel-skip-to-custom','','no'),(27875,'wp-short-pixel-query-id-start','226364','yes'),(28086,'wp-short-pixel-download-protocol','http','yes'),(28089,'wp-short-pixel-fileCount','157','yes'),(28090,'wp-short-pixel-bulk-processed-items','4','yes'),(28318,'wp-short-pixel-cancel-pointer','','no'),(28319,'wp-short-pixel-bulk-type','','no'),(28335,'a3_lazy_load_version','2.3.2','yes'),(28341,'a3_lazy_load_global_settings','a:22:{s:20:\"a3l_apply_lazyloadxt\";b:1;s:19:\"a3l_apply_to_images\";b:1;s:26:\"a3l_apply_image_to_content\";b:1;s:29:\"a3l_apply_image_to_textwidget\";b:1;s:33:\"a3l_apply_image_to_postthumbnails\";b:1;s:28:\"a3l_apply_image_to_gravatars\";b:1;s:26:\"a3l_image_include_noscript\";b:1;s:25:\"a3l_skip_image_with_class\";s:0:\"\";s:19:\"a3l_apply_to_videos\";b:1;s:26:\"a3l_apply_video_to_content\";b:1;s:29:\"a3l_apply_video_to_textwidget\";b:1;s:26:\"a3l_video_include_noscript\";b:1;s:25:\"a3l_skip_video_with_class\";s:0:\"\";s:16:\"a3l_uris_exclude\";s:0:\"\";s:19:\"a3l_objects_exclude\";a:12:{s:4:\"home\";i:0;s:5:\"front\";i:0;s:4:\"post\";i:0;s:4:\"page\";i:0;s:8:\"category\";i:0;s:3:\"tag\";i:0;s:6:\"search\";i:0;s:6:\"author\";i:0;s:7:\"archive\";i:0;s:11:\"frm_display\";i:0;s:7:\"project\";i:0;s:12:\"divi_overlay\";i:0;}s:16:\"a3l_theme_loader\";s:9:\"wp_footer\";s:27:\"a3l_load_disable_on_wptouch\";b:1;s:31:\"a3l_load_disable_on_mobilepress\";b:1;s:10:\"a3l_effect\";s:7:\"spinner\";s:21:\"a3l_effect_background\";s:7:\"#b3bfb3\";s:9:\"a3l_edgeY\";s:1:\"0\";s:42:\"a3l_jetpack_site_accelerator_compatibility\";b:0;}','yes'),(28342,'a3_lazy_load_clean_on_deletion','0','yes'),(28346,'a3_lazy_load_toggle_box_open','0','yes'),(28347,'a3_lazy_load_style_version','1579332713','yes'),(28464,'_et_core_portability_temp_files','a:1:{s:14:\"et_core_import\";a:6:{i:1579366311;s:83:\"/home/stadsig/public_html/wp-content/uploads/Divi-Theme-Examples-sticky-header.json\";i:1579366421;s:85:\"/home/stadsig/public_html/wp-content/uploads/Divi-Theme-Examples-sticky-header-1.json\";i:1579366561;s:85:\"/home/stadsig/public_html/wp-content/uploads/Divi-Theme-Examples-sticky-header-2.json\";i:1579366812;s:85:\"/home/stadsig/public_html/wp-content/uploads/Divi-Theme-Examples-sticky-header-3.json\";i:1579366827;s:85:\"/home/stadsig/public_html/wp-content/uploads/Divi-Theme-Examples-sticky-header-4.json\";i:1579367343;s:85:\"/home/stadsig/public_html/wp-content/uploads/Divi-Theme-Examples-sticky-header-5.json\";}}','no'),(29536,'wp-short-pixel-prioritySkip','','no'),(29537,'wp-short-pixel-bulk-last-status','a:14:{s:6:\"Status\";i:1;s:7:\"Message\";s:42:\"Success: No pixels remained unsqueezed :-)\";s:18:\"PercentImprovement\";s:5:\"83.16\";s:7:\"ImageID\";s:6:\"226364\";s:8:\"Filename\";s:25:\"Stadsig_Documentation.jpg\";s:4:\"Type\";s:5:\"lossy\";s:11:\"ThumbsTotal\";i:14;s:11:\"ThumbsCount\";i:0;s:12:\"RetinasCount\";i:0;s:13:\"BackupEnabled\";b:1;s:11:\"TsOptimized\";s:12:\"1 second ago\";s:18:\"AverageCompression\";d:71.079999999999998;s:5:\"Thumb\";s:66:\"https://stadsig.co.za/wp-content/uploads/Stadsig_Documentation.jpg\";s:7:\"BkThumb\";s:0:\"\";}','yes'),(30887,'bulkProcessingStatus','','no'),(30929,'_transient_wpacu_js_optimize_169c23fc94e9126df1a3d01236364d29','{\"source_uri\":\"\\/wp-content\\/plugins\\/monarch\\/js\\/custom.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/et_monarch-custom-js-v1.4.12-216fe8a4f904881a8ad071156a7782bf43284e87.js\",\"ver\":\"1.4.12\"}','yes'),(30934,'_transient_wpacu_css_optimize_125263c8c1eb3614ee4c2629fe23e14d','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-overlays\\/overlay-effects\\/css\\/style.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/624b91e6d6ccf61c4c64dc1022a8d06f-v9dff9d9291aa4ed7121d497e2fe5876f-0f06c39c84d0161bae2e5108149dc03068ad2a8f.css\",\"ver\":\"9dff9d9291aa4ed7121d497e2fe5876f\"}','yes'),(30935,'_transient_wpacu_css_optimize_b56f78907af904ce744d1476f025da78','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-stop-stacking\\/css\\/divi-stop-stacking.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/96cbc2e223692f47cfbe9ebe3ffd2cc2-v9dff9d9291aa4ed7121d497e2fe5876f-fd330dd4dd88e1b112e4a4602d6cc73cdd1600d2.css\",\"ver\":\"9dff9d9291aa4ed7121d497e2fe5876f\"}','yes'),(30936,'_transient_wpacu_css_optimize_ddd326e29021984a84bf0617157fb45b','{\"source_uri\":\"\\/wp-content\\/plugins\\/mhmm\\/css\\/mhmm-menus.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/2fbda7fa2355bf37a0737e1e1e3fe495-v9dff9d9291aa4ed7121d497e2fe5876f-67044c58ffab9b23b39e0b63065a0287338aa659.css\",\"ver\":\"9dff9d9291aa4ed7121d497e2fe5876f\"}','yes'),(30937,'_transient_wpacu_css_optimize_57950a887198b6b53f180aca2a78f94a','{\"source_uri\":\"\\/wp-content\\/plugins\\/mhmm\\/css\\/mhmm-menu-layout.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/899b06f0134a96cc215f1879793dac14-v9dff9d9291aa4ed7121d497e2fe5876f-ca414b6039ef88921087230b90f5072fd1aa9c81.css\",\"ver\":\"9dff9d9291aa4ed7121d497e2fe5876f\"}','yes'),(30938,'_transient_wpacu_css_optimize_b0ed1f2dab31ae65e4065518fa889303','{\"source_uri\":\"\\/wp-content\\/plugins\\/monarch\\/css\\/style.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/d26ec2d6217c31b24441bfeefe3517f1-vc5ceb696acec8f34c4222b9253eaa60f-138db4815bcbfab11d16d800ecd5bda5d8666e9b.css\",\"ver\":\"c5ceb696acec8f34c4222b9253eaa60f\"}','yes'),(30939,'_transient_wpacu_js_optimize_13ca6ae90e1a96cec948a6363145f31d','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-overlays\\/overlay-effects\\/js\\/snap.svg-min.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/106d096f938a3b5e531eb23065b1b064-v9dff9d9291aa4ed7121d497e2fe5876f-4a727f18ae652ec49ca3d542b11b67df6dbd3cfd.js\",\"ver\":\"9dff9d9291aa4ed7121d497e2fe5876f\"}','yes'),(30940,'_transient_wpacu_js_optimize_d2ae8928c0154c1dd4813c8f9a01f7ab','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-overlays\\/overlay-effects\\/js\\/modernizr.custom.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/0b948386b44dc00bf16082695072f157-v9dff9d9291aa4ed7121d497e2fe5876f-5f810a8cc859109d7b8e7f8dacbcf3436de4b7b9.js\",\"ver\":\"9dff9d9291aa4ed7121d497e2fe5876f\"}','yes'),(30941,'_transient_wpacu_js_optimize_5edf239fa9c26133363c18ea0f751745','{\"source_uri\":\"\\/wp-content\\/themes\\/Divi\\/core\\/admin\\/js\\/recaptcha.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/7c61f127ed5672e124f5a2c93de61fa0-v9dff9d9291aa4ed7121d497e2fe5876f-5bbb2d7251e4092bddc4c6597df1d326e9d2d600.js\",\"ver\":\"9dff9d9291aa4ed7121d497e2fe5876f\"}','yes'),(30942,'_transient_wpacu_js_optimize_078dc58dd2fbb15ed3e047e7c665348c','{\"source_uri\":\"\\/wp-content\\/plugins\\/monarch\\/js\\/custom.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/10a503d1e8577b47f569c3a417b954d4-vc5ceb696acec8f34c4222b9253eaa60f-216fe8a4f904881a8ad071156a7782bf43284e87.js\",\"ver\":\"c5ceb696acec8f34c4222b9253eaa60f\"}','yes'),(30943,'_transient_wpacu_js_optimize_67550d2fcf9847edf74e9f543d4571d1','{\"source_uri\":\"\\/wp-content\\/themes\\/Divi\\/core\\/admin\\/js\\/common.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/f1102f6f19b9b8895bcf89bf2c8ead39-vbc19a4a35703823729a90ceb5bf82eae-cd97bdd72c8f7ca65a37ea7d78ff71580633169a.js\",\"ver\":\"bc19a4a35703823729a90ceb5bf82eae\"}','yes'),(30944,'_transient_wpacu_js_optimize_7c51956b05bec543ebfcc6eeb03f8ed8','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-overlays\\/overlay-effects\\/js\\/jquery.exitintent.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/b968f6ee06bb0fb2db12ab7b3ad4b4d2-v9dff9d9291aa4ed7121d497e2fe5876f-3ad23ab123b73f872e0e54f87a0cd708bd6b2833.js\",\"ver\":\"9dff9d9291aa4ed7121d497e2fe5876f\"}','yes'),(30945,'_transient_wpacu_js_optimize_5029ad486e96985b76ce457a000c21d2','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-overlays\\/overlay-effects\\/js\\/custom.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/ce428051003faf8292d4a16541dab535-v9dff9d9291aa4ed7121d497e2fe5876f-44ff54ce02f9c967ebe7af31be5ae70e07df985c.js\",\"ver\":\"9dff9d9291aa4ed7121d497e2fe5876f\"}','yes'),(30946,'_transient_wpacu_css_optimize_8db187c755ac0edebdb5ca08a0c7d0f3','{\"source_uri\":\"\\/wp-content\\/plugins\\/formidable\\/css\\/frm_fonts.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/frm_fonts-v4.03.07-bfe90d6aea2b95c9d684960acaaec66831d6b964.css\",\"ver\":\"4.03.07\"}','yes'),(30952,'_transient_wpacu_css_optimize_07c2fe2c67c20e191bd4693f448f3046','{\"source_uri\":\"\\/wp-content\\/plugins\\/monarch\\/css\\/style.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/et_monarch-css-v1.4.12-138db4815bcbfab11d16d800ecd5bda5d8666e9b.css\",\"ver\":\"1.4.12\"}','yes'),(30953,'_transient_wpacu_css_optimize_db39269d450c8736d3cfbb7c72727889','{\"source_uri\":\"\\/wp-content\\/themes\\/Divi-child\\/style.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/child-style-v3.0.44.1494229532-93d62f539f23115a8b8191044a4c766d3f9e868e.css\",\"ver\":\"3.0.44.1494229532\"}','yes'),(33174,'wp-short-pixel-cloudflareToken','','no'),(33180,'_transient_timeout_frmpro_css','1590136264','no'),(33181,'_transient_frmpro_css','/* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */\n.frm_hidden,.frm_add_form_row.frm_hidden,.frm_remove_form_row.frm_hidden,.with_frm_style .frm_button.frm_hidden{display:none;}form input.frm_verify{display:none !important;}.with_frm_style fieldset{min-width:0;}.with_frm_style fieldset fieldset{border:none;margin:0;padding:0;background-color:transparent;}legend.frm_hidden{display:none !important;}.with_frm_style .frm_form_fields{opacity:1;transition: opacity 0.1s linear;}.with_frm_style .frm_doing_ajax{opacity:.5;}.frm_transparent{color:transparent;}.input[type=file].frm_transparent:focus, .with_frm_style input[type=file]{background-color:transparent;border:none;outline:none;box-shadow:none;}.with_frm_style input[type=file]{display:initial;}.frm_preview_page:before{content:normal !important;}.frm_preview_page{padding:25px;}.with_frm_style .frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container .frm_primary_label,.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container .frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_pos_center {text-align: center;}.with_frm_style .frm_none_container .frm_primary_label,.with_frm_style .frm_pos_none,.frm_pos_none,.frm_none_container .frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container .frm_primary_label{visibility:hidden;white-space:nowrap;}.with_frm_style .frm_inside_container .frm_primary_label{opacity:0;transition: opacity 0.1s linear;}.with_frm_style .frm_inside_container label.frm_visible,.frm_visible{opacity:1;}.with_frm_style .frm_description{clear:both;}.with_frm_style input[type=number][readonly]{-moz-appearance: textfield;}.with_frm_style select[multiple=\"multiple\"]{height:auto;line-height:normal;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style textarea{height:auto;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none;border:1px solid #eee;padding:5px;display:inline;}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field,.frm_inline_form .frm_submit{grid-column: span 1 / span 1;}.frm_inline_form .frm_submit{margin:0;}.frm_submit.frm_inline_submit input[type=submit],.frm_submit.frm_inline_submit button,.frm_inline_form .frm_submit input[type=submit],.frm_inline_form .frm_submit button{margin-top:0;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_submit input[type=submit],.with_frm_style.frm_center_submit .frm_submit input[type=button],.with_frm_style.frm_center_submit .frm_submit button{margin-bottom:8px !important;}.with_frm_style .frm-edit-page-btn,.with_frm_style .frm_submit input[type=submit],.with_frm_style .frm_submit input[type=button],.with_frm_style .frm_submit button{-webkit-appearance: none;cursor: pointer;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.with_frm_style .frm_loading_prev .frm_ajax_loading,.with_frm_style .frm_loading_form .frm_ajax_loading{visibility:visible !important;}.with_frm_style .frm_loading_prev .frm_prev_page,.with_frm_style .frm_loading_form .frm_button_submit {position: relative;opacity: .8;color: transparent !important;text-shadow: none !important;}.with_frm_style .frm_loading_prev .frm_prev_page:hover,.with_frm_style .frm_loading_prev .frm_prev_page:active,.with_frm_style .frm_loading_prev .frm_prev_page:focus,.with_frm_style .frm_loading_form .frm_button_submit:hover,.with_frm_style .frm_loading_form .frm_button_submit:active,.with_frm_style .frm_loading_form .frm_button_submit:focus {cursor: not-allowed;color: transparent;outline: none !important;box-shadow: none;}.with_frm_style .frm_loading_prev .frm_prev_page::before,.with_frm_style .frm_loading_form .frm_button_submit:before {content: \'\';display: inline-block;position: absolute;background: transparent;border: 1px solid #fff;border-top-color: transparent;border-left-color: transparent;border-radius: 50%;box-sizing: border-box;top: 50%;left: 50%;margin-top: -10px;margin-left: -10px;width: 20px;height: 20px;-webkit-animation: spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation:  spin 2s linear infinite;animation: spin 2s linear infinite;}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style,.frm_style_formidable-style.with_frm_style form,.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style.with_frm_style .frm_form_fields  > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;}.frm_style_formidable-style.with_frm_style legend + h3,.frm_style_formidable-style.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm_primary_label{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;color:#666666;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:\"\\e600\";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:\"\\e602\";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:\"\\e62d\";color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:\"\\e62a\";color:#444444;}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error{margin:0;padding:0;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style .frm_scale label{font-weight:normal;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .chosen-container{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=phone],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{color:#232323;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=radio],.frm_style_formidable-style.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=file],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style select[multiple=\"multiple\"]{height:auto ;}.frm_style_formidable-style.with_frm_style input[type=file]{color: #232323;padding:0px;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:14px;}.frm_style_formidable-style.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .auto_width input,.frm_style_formidable-style.with_frm_style input.auto_width,.frm_style_formidable-style.with_frm_style select.auto_width,.frm_style_formidable-style.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style.with_frm_style input[disabled],.frm_style_formidable-style.with_frm_style select[disabled],.frm_style_formidable-style.with_frm_style textarea[disabled],.frm_style_formidable-style.with_frm_style input[readonly],.frm_style_formidable-style.with_frm_style select[readonly],.frm_style_formidable-style.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style.with_frm_style input::placeholder,.frm_style_formidable-style.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input:-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .frm_default,.frm_style_formidable-style.with_frm_style input.frm_default,.frm_style_formidable-style.with_frm_style textarea.frm_default,.frm_style_formidable-style.with_frm_style select.frm_default,.frm_style_formidable-style.with_frm_style .placeholder,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style.with_frm_style select:focus,.frm_style_formidable-style.with_frm_style textarea:focus,.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style.with_frm_style input[type=submit],.frm_style_formidable-style.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style.with_frm_style .frm_submit button,.frm_form_submit_style,.frm_style_formidable-style.with_frm_style .frm-edit-page-btn {width:auto;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:16px;height:auto;line-height:normal;text-align:center;background:#a7bf95;border-width:0;border-color: ;border-style:solid;color:#ffffff;cursor:pointer;font-weight:200;-moz-border-radius:0px;-webkit-border-radius:0px;border-radius:0px;text-shadow:none;padding:6px 28px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style.with_frm_style .frm-edit-page-btn:hover,.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm-edit-page-btn:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style .frm_submit button:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:hover,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:active,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:focus,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #a7bf95;}.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:before,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #ffffff;border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit::before {content:\"before\";font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style.with_frm_style a.frm_save_draft{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:16px;font-weight:200;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_radio label,.frm_style_formidable-style.with_frm_style .frm_checkbox label{font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr td{color: #232323;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color: #232323;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style.with_frm_style .frm_button{padding:6px 28px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:16px;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-weight:200;color:#ffffff;background: #a7bf95;border-width:0;border-color: ;height:auto;}.frm_style_formidable-style.with_frm_style .frm_button .frm_icon_font:before{font-size:16px;}.frm_style_formidable-style.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #232323;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-remove{color: #232323;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=file]::-webkit-file-upload-button{color:#232323;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li span{color:#232323;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"]{height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type=\"text\"]{height:15px;}.frm_style_formidable-style.with_frm_style .frm_page_bar input,.frm_style_formidable-style.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_page_bar .frm_current_page input[type=\"button\"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline_title,.frm_style_formidable-style.with_frm_style .frm_pages_complete,.frm_style_formidable-style.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type=\"button\"] {border-left-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type=\"button\"] {border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style.with_frm_style .frm_rootline input,.frm_style_formidable-style.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline .frm_current_page input[type=\"button\"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type=\"button\"],.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type=\"button\"] {color: transparent !important;}.frm_style_formidable-style.with_frm_style .frm_range_unit,.frm_style_formidable-style.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style.with_frm_style .form-field input[type=range],.frm_style_formidable-style.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm-show-form  .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:\"Tajawal\",Helvetica,Arial,Lucida,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}.frm_style_formidable-style.with_frm_style .frm-summary-page-wrapper {border-color: #cccccc;border-radius: 4px;}.frm_style_formidable-style.with_frm_style .frm_single_product_label,.frm_style_formidable-style.with_frm_style .frm_total_formatted {font-size:14px;color:#444444;}@media only screen and (max-width: 600px){.frm_style_formidable-style.with_frm_style .frm_repeat_inline,.frm_style_formidable-style.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_formidable-style-2.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style-2.with_frm_style,.frm_style_formidable-style-2.with_frm_style form,.frm_style_formidable-style-2.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style-2.with_frm_style .frm_form_fields  > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;}.frm_style_formidable-style-2.with_frm_style legend + h3,.frm_style_formidable-style-2.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style .frm_primary_label{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;color:#666666;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_minus_icon:before{content:\"\\e600\";}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_plus_icon:before{content:\"\\e602\";}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff;vertical-align:middle;}.frm_style_formidable-style-2.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:\"\\e62d\";color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:\"\\e62a\";color:#444444;}.frm_style_formidable-style-2.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style-2.with_frm_style .frm_grid,.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style p.description,.frm_style_formidable-style-2.with_frm_style div.description,.frm_style_formidable-style-2.with_frm_style div.frm_description,.frm_style_formidable-style-2.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style-2.with_frm_style .frm_error{margin:0;padding:0;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style-2.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style-2.with_frm_style .frm_none_container .frm_primary_label,.frm_style_formidable-style-2.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style-2.with_frm_style .frm_scale label{font-weight:normal;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style textarea,.frm_style_formidable-style-2.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .chosen-container{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=phone],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style-2.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style-2.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style-2.with_frm_style input[type=radio],.frm_style_formidable-style-2.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=file],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style .frm-card-element.StripeElement{height:32px;line-height:1.3;}.frm_style_formidable-style-2.with_frm_style select[multiple=\"multiple\"]{height:auto ;}.frm_style_formidable-style-2.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style-2.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style-2.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style-2.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .auto_width input,.frm_style_formidable-style-2.with_frm_style input.auto_width,.frm_style_formidable-style-2.with_frm_style select.auto_width,.frm_style_formidable-style-2.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style-2.with_frm_style input[disabled],.frm_style_formidable-style-2.with_frm_style select[disabled],.frm_style_formidable-style-2.with_frm_style textarea[disabled],.frm_style_formidable-style-2.with_frm_style input[readonly],.frm_style_formidable-style-2.with_frm_style select[readonly],.frm_style_formidable-style-2.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style-2.with_frm_style input::placeholder,.frm_style_formidable-style-2.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input::-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style-2.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input:-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style .frm_default,.frm_style_formidable-style-2.with_frm_style input.frm_default,.frm_style_formidable-style-2.with_frm_style textarea.frm_default,.frm_style_formidable-style-2.with_frm_style select.frm_default,.frm_style_formidable-style-2.with_frm_style .placeholder,.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style-2.with_frm_style select:focus,.frm_style_formidable-style-2.with_frm_style textarea:focus,.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style-2.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style-2.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style-2.with_frm_style input[type=submit],.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style-2.with_frm_style .frm_submit button,.frm_form_submit_style,.frm_style_formidable-style-2.with_frm_style .frm-edit-page-btn {width:auto;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:16px;height:auto;line-height:normal;text-align:center;background:#a7bf95;border-width:0;border-color: #cccccc;border-style:solid;color:#ffffff;cursor:pointer;font-weight:normal;-moz-border-radius:0px;-webkit-border-radius:0px;border-radius:0px;text-shadow:none;padding:6px 28px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style-2.with_frm_style .frm-edit-page-btn:hover,.frm_style_formidable-style-2.with_frm_style input[type=submit]:hover,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style-2.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-2.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style .frm-edit-page-btn:focus,.frm_style_formidable-style-2.with_frm_style input[type=submit]:focus,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style-2.with_frm_style .frm_submit button:focus,.frm_style_formidable-style-2.with_frm_style input[type=submit]:active,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style-2.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-2.with_frm_style .frm_loading_prev .frm_prev_page,.frm_style_formidable-style-2.with_frm_style .frm_loading_prev .frm_prev_page:hover,.frm_style_formidable-style-2.with_frm_style .frm_loading_prev .frm_prev_page:active,.frm_style_formidable-style-2.with_frm_style .frm_loading_prev .frm_prev_page:focus,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #a7bf95;}.frm_style_formidable-style-2.with_frm_style .frm_loading_prev .frm_prev_page:before,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #ffffff;border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit::before {content:\"before\";font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style-2.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style-2.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style-2.with_frm_style a.frm_save_draft{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:16px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style #frm_field_cptch_number_container{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style-2.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style-2.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style-2.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style-2.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style-2.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style-2.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style-2.with_frm_style .frm_radio label,.frm_style_formidable-style-2.with_frm_style .frm_checkbox label{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style-2.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style-2.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style-2.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style-2.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field label,.frm_style_formidable-style-2.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style-2.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style-2.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style-2.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style-2.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style-2.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style-2.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_grid,.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style-2.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style-2.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style-2.with_frm_style .frm_button{padding:6px 28px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:16px;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-weight:normal;color:#ffffff;background: #a7bf95;border-width:0;border-color: #cccccc;height:auto;}.frm_style_formidable-style-2.with_frm_style .frm_button .frm_icon_font:before{font-size:16px;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style-2.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"]{height:32px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type=\"text\"]{height:15px;}.frm_style_formidable-style-2.with_frm_style .frm_page_bar input,.frm_style_formidable-style-2.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_page_bar .frm_current_page input[type=\"button\"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style-2.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_rootline_title,.frm_style_formidable-style-2.with_frm_style .frm_pages_complete,.frm_style_formidable-style-2.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input,.frm_style_formidable-style-2.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line .frm_current_page input[type=\"button\"] {border-left-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type=\"button\"] {border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input,.frm_style_formidable-style-2.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_rootline .frm_current_page input[type=\"button\"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input,.frm_style_formidable-style-2.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style-2.with_frm_style .frm_progress_line .frm_current_page input[type=\"button\"],.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type=\"button\"] {color: transparent !important;}.frm_style_formidable-style-2.with_frm_style .frm_range_unit,.frm_style_formidable-style-2.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .form-field input[type=range],.frm_style_formidable-style-2.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style-2.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style-2.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style-2.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style-2.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style-2.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style-2.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_formidable-style-2.with_frm_style .frm-show-form  .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style-2.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style-2.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style-2.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style-2.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style-2.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}.frm_style_formidable-style-2.with_frm_style .frm-summary-page-wrapper {border-color: #cccccc;border-radius: 4px;}.frm_style_formidable-style-2.with_frm_style .frm_single_product_label,.frm_style_formidable-style-2.with_frm_style .frm_total_formatted {font-size:14px;color:#444444;}@media only screen and (max-width: 600px){.frm_style_formidable-style-2.with_frm_style .frm_repeat_inline,.frm_style_formidable-style-2.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:5px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.with_frm_style .frm_checkbox label,.with_frm_style .frm_radio label{display: inline;white-space:normal;}.with_frm_style .vertical_radio .frm_checkbox label,.with_frm_style .vertical_radio .frm_radio label{display: block;padding-left: 20px;text-indent: -20px;}.frm_file_container .frm_file_link,.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{-webkit-appearance:radio;border-radius:50%;}.with_frm_style .frm_checkbox input[type=checkbox]{-webkit-appearance:checkbox;border-radius:0;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{flex: none;display:inline-block;margin:4px 5px 0 0;width:auto;border:none;vertical-align:baseline;position: initial; }.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-top:none;border-left:none;border-right:none;}.frm-alt-table {width:100%;border-collapse:collapse;margin-top:0.5em;font-size:15px;}.frm-alt-table th {width:200px;}.frm-alt-table tr {background-color:transparent;}.frm-alt-table th,.frm-alt-table td {background-color:transparent;vertical-align:top;text-align:left;padding:20px;}.frm-alt-table tr:nth-child(even) {background-color:#f9f9f9;}table.form_results.with_frm_style{border:1px solid #ccc;}table.form_results.with_frm_style tr td{text-align:left;color:#232323;padding:7px 9px;border-top:1px solid #cccccc;}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#f9f9f9;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(../images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}select.frm_loading_lookup{background-image: url(../images/ajax_loader.gif) !important;background-position: 10px;background-repeat: no-repeat;color: transparent !important;}.frm_screen_reader {border: 0;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;word-wrap: normal !important; }.frm_screen_reader.frm_hidden{display:initial;}.frm_clear_none{clear:none;}.frm_clear{clear:both;}.frm_form_field.frm_alignright{float:right !important;}.with_frm_style .frm_form_field{clear:both;}.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container{display:grid;grid-template-columns: repeat(12, 6.5%);grid-auto-rows: max-content;grid-gap: 0 2%;}.frm_combo_inputs_container > *,.frm_grid_container > *,.frm_section_heading > *,.frm_fields_container .frm_form_field,.frm_fields_container > *{grid-column: span 12 / span 12;}.frm_inline,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;grid-column: span 2 / span 2;}.frm6,.frm_half,.frm_form_field.frm_three_fifths, .frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{grid-column:span 6 / span 6;}.frm4,.frm_third,.frm_form_field.frm_two_fifths, .frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{grid-column:span 4 / span 4;}.frm8,.frm_two_thirds,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{grid-column: span 8/span 8;}.frm3,.frm_fourth,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{grid-column: span 3/span 3;}.frm9,.frm_three_fourths,.frm_form_field.frm_four_fifths, .frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm_three_fourths{grid-column: span 9/span 9;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{grid-column: span 2/span 2;}.frm2,.frm_sixth,.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{grid-column: span 2/span 2;}.frm10,.frm_form_field.frm10,.frm_submit.frm10{grid-column: span 10/span 10;}.frm1,.frm_form_field.frm1,.frm_submit.frm1,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{grid-column: span 1/span 1;}.frm5,.frm_form_field.frm5,.frm_submit.frm5{grid-column: span 5/span 5;}.frm7,.frm_form_field.frm7,.frm_submit.frm7{grid-column: span 7/span 7;}.frm11,.frm_form_field.frm11,.frm_submit.frm11{grid-column: span 11/span 11;}.frm12,.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type=\'checkbox\']):not([type=\'radio\']):not([type=\'button\']),.frm_full select,.frm_full textarea{width:100% !important;grid-column: span 12/span 12;box-sizing: border-box;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_first,.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{grid-column-start:1;}.frm_last,.frm_form_field.frm_last,.frm_form_field.frm_alignright{grid-column-end:-1;grid-row-start: span 100;justify-content: end;}.with_frm_style.frm_rtl .frm_form_fields .star-rating{float:right;}.with_frm_style.frm_rtl .frm_grid .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_first .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_odd .frm_primary_label,.with_frm_style.frm_rtl .frm_grid .frm_radio,.with_frm_style.frm_rtl .frm_grid_first .frm_radio,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio,.with_frm_style.frm_rtl .frm_grid .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox{float:right !important;margin-right:0 !important;}.with_frm_style.frm_rtl .frm_grid_first .frm_radio label input,.with_frm_style.frm_rtl .frm_grid .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox label input{float:left;}.with_frm_style.frm_rtl .frm_catlevel_2,.with_frm_style.frm_rtl .frm_catlevel_3,.with_frm_style.frm_rtl .frm_catlevel_4,.with_frm_style.frm_rtl .frm_catlevel_5{margin-right:18px;}.with_frm_style.frm_rtl div > .frm_time_select{margin-right:5px;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display: grid;grid-template-columns: 25% auto;width:100%;grid-auto-rows: min-content;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_form_field.frm_inline_container{grid-template-columns: repeat(2, minmax(auto, max-content) );}.frm_form_field.frm_inline_container .frm_primary_label,.frm_form_field.frm_right_container .frm_primary_label,.frm_form_field.frm_left_container .frm_primary_label{margin-right:10px;grid-row:span 2/span 2;padding-top:4px;}.frm_form_field.frm_left_container .frm_primary_label{grid-column:1;grid-row:span 2/span 2; }.frm_form_field.frm_right_container .frm_primary_label{grid-column:2;grid-row:1;margin-right:0;margin-left:10px;}.frm_form_field.frm_inline_container .frm_description,.frm_form_field.frm_left_container .frm_description{grid-column:2;}.frm_form_field.frm_right_container .frm_description{grid-column:1;}.frm_conf_field.frm_left_container{grid-template-columns: 67%;}.frm_conf_field.frm_left_container .frm_description{grid-column:1;}.frm-fade-in {-webkit-animation-name: fadeIn;animation-name: fadeIn;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}@keyframes spin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}@keyframes fadeIn {   0% {opacity: 0;}   100% {opacity: 1;}}@media only screen and (max-width: 600px) {.frm_section_heading > .frm_form_field,.frm_fields_container > .frm_submit,.frm_grid_container > .frm_form_field,.frm_fields_container > .frm_form_field{grid-column: 1 / span 12 !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display:block;}}.frm_conf_field.frm_left_container .frm_primary_label{display:none;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:\" \";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;}.frm_grid{background-color:#ffffff;}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 .frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 .frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 .frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 .frm_primary_label,.frm_grid_7 .frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 .frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 .frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 .frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 .frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 .frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_left_container .frm_opt_container{padding-top:4px;}.with_frm_style .frm_inline_container.frm_grid_first .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display: grid;grid-template-columns: repeat(2, 1fr);grid-auto-rows: max-content;grid-gap: 0 2.5%;}.frm_form_field.frm_three_col .frm_opt_container{grid-template-columns: repeat(3, 1fr);}.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(4, 1fr);}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{grid-column-end: span 1;}.frm_form_field .frm_checkbox,.frm_form_field .frm_checkbox + .frm_checkbox,.frm_form_field .frm_radio,.frm_form_field .frm_radio + .frm_radio{margin-top: 0;margin-bottom: 0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_html_container.frm_scroll_box,.frm_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;width:auto !important;box-shadow:none !important;display:inline;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_form_field.frm_label_justify .frm_primary_label{text-align:justify !important;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:\".\";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:block;}@font-face {font-family: \'s11-fp\';src: url(\'../fonts/s11-fp.ttf?v=7\') format(\'truetype\'),url(\'../fonts/s11-fp.woff?v=7\') format(\'woff\'),url(\'../fonts/s11-fp.svg?v=7#s11-fp\') format(\'svg\');font-weight: normal;font-style: normal;}.frmfont,.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;display:inline-block;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-rendering: auto;line-height: 1;-moz-transition: color .1s ease-in-out, opacity .1s ease-in-out;-webkit-transition: color .1s ease-in-out, opacity .1s ease-in-out;transition: color .1s ease-in-out, opacity .1s ease-in-out;font-size: 18px;}i.frmfont,i.frm_icon_font{font-style:normal;font-variant: normal;speak: none;}.frmfont:before,select.frmfont,.frm_icon_font:before,select.frm_icon_font{font-family: \'s11-fp\' !important;text-align:center;}.frmfont,a.frmfont,.frmfont:hover,a.frmfont:hover.frm_icon_font,a.frm_icon_font,.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;box-shadow:none;}.frmfont:focus,.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frmfont:active,.frm_icon_font:active{outline:none;}.frm_trigger .frm_icon_font{padding:0 5px;}.frm_logo_icon:before {content: \"\\e601\";}.frm_required_icon:before {content: \"\\e612\";}.frm_delete_icon:before {content: \"\\e610\" !important;}.frm_delete_solid_icon:before {content: \"\\e900\";}.frm_move_icon:before {content: \"\\e61a\";}.frm_drag_icon:before {content: \"\\e93b\";}.frm_clear_icon:before {content: \"\\e60a\";}.frm_noclear_icon:before {content: \"\\e60b\";}.frm_duplicate_icon:before {content: \"\\e61b\";}.frm_copy_icon:before {content: \"\\f0c5\";}.frm_clone_solid_icon:before {content: \"\\f24e\";}.frm_clone_icon:before {content: \"\\f24d\";}.frm_tooltip_icon:before {content: \"\\e611\";}.frm_tooltip_solid_icon:before {content: \"\\e907\";}.frm_forbid_icon:before {content: \"\\e636\";}.frm_checkmark_icon:before {content: \"\\e90a\";}.frm_check_icon:before {content: \"\\e605\";}.frm_check1_icon:before {content: \"\\e606\";}.frm_plus_icon:before {content: \"\\e62f\";}.frm_plus1_icon:before {content: \"\\e602\";}.frm_plus2_icon:before {content: \"\\e603\";}.frm_plus3_icon:before {content: \"\\e632\";}.frm_plus4_icon:before {content: \"\\e60f\";}.frm_minus_icon:before {content: \"\\e62e\";}.frm_minus1_icon:before {content: \"\\e600\";}.frm_minus2_icon:before {content: \"\\e604\";}.frm_minus3_icon:before {content: \"\\e633\";}.frm_minus4_icon:before {content: \"\\e613\";}.frm_cancel_icon:before {content: \"\\e607\";}.frm_cancel1_icon:before {content: \"\\e608\";}.frm_close_icon:before {content: \"\\e928\";}.frm_report_problem_solid_icon:before {content: \"\\e914\";}.frm_report_problem_icon:before {content: \"\\e915\";}.frm_arrowup_icon:before {content: \"\\e60d\";}.frm_arrowup1_icon:before {content: \"\\e60e\";}.frm_arrowup2_icon:before {content: \"\\e630\";}.frm_arrowup3_icon:before {content: \"\\e62b\";}.frm_arrowup4_icon:before {content: \"\\e62c\";}.frm_arrowup5_icon:before {content: \"\\e635\";}.frm_arrowup5_solid_icon:before {content: \"\\e9d\";}.frm_arrowup7_icon:before {content: \"\\e908\";}.frm_arrowup6_icon:before {content: \"\\e62d\";}.frm_arrowdown_icon:before {content: \"\\e609\";}.frm_arrowdown1_icon:before {content: \"\\e60c\";}.frm_arrowdown2_icon:before {content: \"\\e631\";}.frm_arrowdown3_icon:before {content: \"\\e628\";}.frm_arrowdown4_icon:before {content: \"\\e629\";}.frm_arrowdown5_icon:before {content: \"\\e634\";}.frm_arrowdown5_solid_icon:before {content: \"\\e905\";}.frm_arrowdown7_icon:before {content: \"\\e90b\";}.frm_arrowdown6_icon:before {content: \"\\e62a\";}.frm_arrow_left_icon:before {content: \"\\e912\";}.frm_arrow_right_icon:before {content: \"\\e913\";}.frm_filter_icon:before {content: \"\\e90c\";}.frm_download_icon:before {content: \"\\e615\";}.frm_upload2_icon:before {content: \"\\f093\";}.frm_upload_icon:before {content: \"\\e616\";}.frm_download2_icon:before {content: \"\\f019\";}.frm_hard_drive_icon:before {content: \"\\e916\";}.frm_pencil_solid_icon:before {content: \"\\e901\";}.frm_pencil_icon:before {content: \"\\e61d\";}.frm_signature_icon:before {content: \"\\e919\";}.frm_user_icon:before {content: \"\\e7ff\";}.frm_register_icon:before {content: \"\\e637\";}.frm_account_circle_solid_icon:before {content: \"\\e853\";}.frm_account_circle_icon:before {content: \"\\e921\";}.frm_address_card_icon:before {content: \"\\e996\";}.frm_paragraph_icon:before {content: \"\\f1dd\";}.frm_checkbox_unchecked_icon:before {content: \"\\e91e\";}.frm_checkbox_icon:before {content: \"\\e922\";}.frm_checkbox_solid_icon:before {content: \"\\e91f\";}.frm_dropdown_icon:before {content: \"\\e909\";}.frm_caret_square_down_icon:before {content: \"\\f150\";}.frm_check_square_icon:before {content: \"\\f14a\";}.frm_radio_unchecked_icon:before {content: \"\\e971\";}.frm_radio_checked_icon:before {content: \"\\ea54\";}.frm_scrubber_icon:before {content: \"\\f2f8\";}.frm_location_solid_icon:before {content: \"\\e955\";}.frm_location_icon:before {content: \"\\e947\";}.frm_toggle_on_icon:before {content: \"\\f205\";}.frm_toggle_off_icon:before {content: \"\\f204\";}.frm_shield_check_icon:before {content: \"\\f2f7\";}.frm_shield_check_solid_icon:before {content: \"\\e97d\";}.frm_clock_icon:before {content: \"\\e929\";}.frm_clock_solid_icon:before {content: \"\\e985\";}.frm_link_icon:before {content: \"\\f0c1\";}.frm_email_icon:before {content: \"\\e626\";}.frm_email_solid_icon:before {content: \"\\f0e0\";}.frm_mail_bulk_icon:before {content: \"\\e95c\";}.frm_phone_icon:before {content: \"\\e942\";}.frm_calendar_icon:before {content: \"\\f073\";}.frm_code_icon:before {content: \"\\e90d\";}.frm_tag_icon:before {content: \"\\e98b\";}.frm_tag_solid_icon:before {content: \"\\e989\";}.frm_price_tags_icon:before {content: \"\\e936\";}.frm_search_icon:before {content: \"\\e978\";}.frm_sitemap_icon:before {content: \"\\f0e8\";}.frm_file_icon:before {content: \"\\f15b\";}.frm_file_text_solid_icon:before {content: \"\\f15c\";}.frm_file_text_icon:before {content: \"\\e923\";}.frm-option-icon:before, .frm_option_icon:before {content: \"\\e904\";}.frm_option_solid_icon:before {content: \"\\e906\";}.frm_more_horiz_icon:before {content: \"\\e5d3\";}.frm_more_vert_icon:before {content: \"\\e5d4\";}.frm_more_horiz_solid_icon {font-size: 28px !important;font-weight: bold;line-height: 18px;}.frm_more_horiz_solid_icon:before {content: \"\\00B7\\00B7\\00B7\";}.frm_more_vert_solid_icon:before {content: \"\\f142\";}.frm_calculator_icon:before {content: \"\\f1ec\";}.frm_key_icon:before {content: \"\\f084\";}.frm_keyalt_solid_icon:before {content: \"\\e986\";}.frm_keyalt_icon:before {content: \"\\e987\";}.frm_keyboard_icon:before {content: \"\\e924\";}.frm_eye_icon:before {content: \"\\f06e\";}.frm_eye_solid_icon:before {content: \"\\e945\";}.frm_eye_slash_icon:before {content: \"\\f070\";}.frm_eye_slash_solid_icon:before {content: \"\\e949\";}.frm_page_break_icon:before {content: \"\\e8e9\";}.frm_view_day_icon:before {content: \"\\e8ed\";}.frm_attach_file_icon:before {content: \"\\e226\";}.frm_printer_icon:before {content: \"\\e926\";}.frm_header_icon:before {content: \"\\f1dc\";}.frm_h1_icon:before {content: \"\\e94c\";}.frm_repeat_icon:before {content: \"\\f363\";}.frm_repeater_icon:before {content: \"\\e974\";}.frm_hashtag_icon:before {content: \"\\e292\";}.frm_save_icon:before {content: \"\\e927\";}.frm_sliders_icon:before {content: \"\\f1de\";}.frm_code_commit_icon:before {content: \"\\f386\";}.frm_star_icon:before {content: \"\\e9d7\";}.frm_star_full_icon:before {content: \"\\e9d9\";}.frm_star_half_icon:before {content: \"\\e9d8\";}.frm_linear_scale_icon:before {content: \"\\e260\";}.frm_pie_chart_icon:before {content: \"\\e99a\";}.frm_stats_bars_icon:before {content: \"\\e99c\";}.frm_sms_icon:before {content: \"\\e61c\";}.frm_highrise_icon:before {content: \"\\e617\";}.frm_mailchimp_icon:before {content: \"\\e622\";}.frm_feed_icon:before {content: \"\\e624\";}.frm_align_right_icon:before {content: \"\\e90f\";}.frm_align_left_icon:before {content: \"\\e910\";}.frm_button_icon:before {content: \"\\e911\";}.frm_browser_icon:before {content: \"\\e925\";}.frm_cloud_download_solid_icon:before {content: \"\\e92a\";}.frm_cloud_download_icon:before {content: \"\\e92b\";}.frm_cloud_upload_solid_icon:before {content: \"\\e92c\";}.frm_cloud_upload_icon:before {content: \"\\e92d\";}.frm_cloud_solid_icon:before {content: \"\\e92e\";}.frm_cloud_icon:before {content: \"\\e92f\";}.frm_shuffle_icon:before {content: \"\\e917\";}.frm_swap_icon:before {content: \"\\e918\";}.frm_dropper_solid_icon:before {content: \"\\e93c\";}.frm_tint_icon:before {content: \"\\e93e\";}.frm_pallet_solid_icon:before {content: \"\\e96c\";}.frm_pallet_icon:before {content: \"\\e96d\";}.frm_fingerprint_icon:before {content: \"\\e94a\";}.frm_ghost_icon:before {content: \"\\e94b\";}.frm_heart_solid_icon:before {content: \"\\e94d\";}.frm_heart_icon:before {content: \"\\e94e\";}.frm_history_icon:before {content: \"\\e94f\";}.frm_import_icon:before {content: \"\\e91a\";}.frm_export_icon:before {content: \"\\e91b\";}.frm_label_solid_icon:before {content: \"\\e952\";}.frm_label_icon:before {content: \"\\e953\";}.frm_lock_open_icon:before {content: \"\\e957\";}.frm_lock_solid_icon:before {content: \"\\e958\";}.frm_lock_icon:before {content: \"\\e959\";}.frm_magic_wand_icon:before {content: \"\\e997\";}.frm_dollar_sign_icon:before {content: \"\\e91c\";}.frm_percent_icon:before {content: \"\\e939\";}.frm_notification_solid_icon:before {content: \"\\e964\";}.frm_notification_icon:before {content: \"\\e965\";}.frm_external_link_icon:before {content: \"\\e966\";}.frm_pageview_solid_icon:before {content: \"\\e96a\";}.frm_pageview_icon:before {content: \"\\e96b\";}.frm_settings_solid_icon:before {content: \"\\e979\";}.frm_settings_icon:before {content: \"\\e97a\";}.frm_stamp_icon:before {content: \"\\e980\";}.frm_support_icon:before {content: \"\\f1cd\";}.frm_text_solid_icon:before {content: \"\\e98c\";}.frm_text_icon:before {content: \"\\e98d\";}.frm_text2_icon:before {content: \"\\f031\";}.frm_text3_icon:before {content: \"\\e98e\";}.frm_unfold_less_icon:before {content: \"\\e993\";}.frm_unfold_more_icon:before {content: \"\\e994\";}.frm_work_solid_icon:before {content: \"\\e999\";}.frm_work_icon:before {content: \"\\e99e\";}.frm_white_label_icon:before {content: \"\\e91d\" !important;}.frm_zoom_out_icon:before {content: \"\\e99f\";}.frm_maximize_icon:before {content: \"\\e920\";}.frm_minimize_icon:before {content: \"\\e93a\";}.frm_authorize_icon:before {content: \"\\e903\";}.frm_icon_font.frm_activecampaign_icon {background-image: none;}.frm_activecampaign_icon:before {content: \"\\e930\";}.frm_aweber_icon:before {content: \"\\e627\";}.frm_campaignmonitor_icon:before {content: \"\\e946\";}.frm_constant_contact_icon:before {content: \"\\e931\";}.frm_getresponse_icon:before {content: \"\\e932\";}.frm_googlesheets_icon:before {content: \"\\e944\";}.frm_building_icon:before {content: \"\\e93f\";}.frm_hubspot_icon:before {content: \"\\e933\";}.frm_icontact_icon:before {content: \"\\e940\";}.frm_icon_font.frm_mailpoet_icon:before {content: \"\\e934\";}.frm_paypal_icon:before {content: \"\\e61f\";}.frm_sendinblue_icon:before {content: \"\\e943\";}.frm_sendy_icon:before {content: \"\\e941\";}.frm_salesforce_icon:before {content: \"\\e935\";}.frm_salesforcealt_icon:before {content: \"\\e937\";}.frm_stripe_icon:before {content: \"\\e902\";}.frm_stripealt_icon:before {content: \"\\e93d\";}.frm_twilio_icon:before {content: \"\\e620\";}.frm_woocommerce_icon:before {content: \"\\e90e\";}.frm_wordpress_icon:before {content: \"\\f19a\";}.frm_credit_card_icon:before {content: \"\\e938\";}.frm_credit-card-alt_icon:before, .frm_credit_card_alt_icon:before {content: \"\\f283\";}.frm_cc_amex_icon:before {content: \"\\f1f3\";}.frm_cc_discover_icon:before {content: \"\\f1f2\";}.frm_cc_mastercard_icon:before {content: \"\\f1f1\";}.frm_cc_visa_icon:before {content: \"\\f1f0\";}.frm_cc_paypal_icon:before {content: \"\\f1f4\";}.frm_cc_stripe_icon:before {content: \"\\f1f5\";}.js .frm_logic_form:not(.frm_no_hide) {display:none;}.with_frm_style .frm_conf_field.frm_half label.frm_conf_label {overflow: hidden;white-space: nowrap;}.with_frm_style .frm_time_wrap{white-space:nowrap;}.with_frm_style select.frm_time_select{white-space:pre;display:inline;}.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;padding-bottom:15px;}.with_frm_style .frm_repeat_sec:last-child{border-bottom:none;padding-bottom:0;}.with_frm_style .frm_repeat_inline{clear:both;}.frm_invisible_section .frm_form_field,.frm_invisible_section{display:none !important;visibility:hidden !important;height:0;margin:0;}.frm_form_field .frm_repeat_sec .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_grid .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_inline .frm_add_form_row.frm_hide_add_button {-moz-transition: opacity .15s ease-in-out;-webkit-transition: opacity .15s ease-in-out;transition: opacity .15s ease-in-out;pointer-events: none;}.frm_form_field .frm_repeat_sec .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row.frm_hide_add_button {display: none;}.frm_form_field div.frm_repeat_grid .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_inline .frm_add_form_row.frm_hide_add_button {visibility: hidden;}.frm_form_field div.frm_repeat_grid .frm_add_form_row,.frm_form_field div.frm_repeat_inline .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row {display: inline-block;visibility: visible;pointer-events: auto;}.frm_add_form_row.frm_button.frm_hidden:last-child, .frm_add_form_row.frm_icon_font.frm_hidden:last-child {display: inline-block;}.frm_form_fields .frm_section_heading.frm_hidden {display: none;}.frm_repeat_inline .frm_repeat_buttons a.frm_icon_font{vertical-align: sub;}.frm_repeat_inline .frm_repeat_buttons a.frm_icon_font:before{vertical-align: text-top;}.frm_repeat_grid .frm_button,.frm_repeat_inline .frm_button,.frm_repeat_sec .frm_button{display: inline-block;line-height:1;}.frm_repeat_sec .frm_button .frm_icon_font:before,.frm_repeat_grid .frm_button .frm_icon_font:before,.frm_repeat_inline .frm_button .frm_icon_font:before{line-height:1;}.frm_form_field .frm_repeat_grid ~ .frm_repeat_grid .frm_form_field .frm_primary_label{display:none !important;}#ui-datepicker-div{display:none;z-index:999999 !important;}.ui-datepicker .ui-datepicker-title select.ui-datepicker-month,.ui-datepicker .ui-datepicker-title select.ui-datepicker-year {width: 33%;background-color:#fff;float:none;}.ui-datepicker select.ui-datepicker-month{margin-right: 3px;}.ui-datepicker-month, .ui-datepicker-year{max-width:100%;max-height:2em;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.ui-datepicker .ui-widget-header,.ui-datepicker .ui-datepicker-header {background: #008ec2 !important;color: #ffffff !important;}.ui-datepicker td.ui-datepicker-today{background: rgba(0,92,144,0.15) !important;}.ui-datepicker td.ui-datepicker-current-day,.ui-datepicker td .ui-state-hover,.ui-datepicker thead {background: #005c90 !important;color: #ffffff !important;}.ui-datepicker td.ui-datepicker-current-day .ui-state-default{color: #ffffff !important;}.google-visualization-tooltip-item-list,.google-visualization-tooltip-item-list .google-visualization-tooltip-item:first-child {margin: 1em 0 !important;}.google-visualization-tooltip-item {list-style-type: none !important;margin: 0.65em 0 !important;}.with_frm_style .frm_scale{margin-right:15px;text-align:center;float:left;}.with_frm_style .frm_scale input{display:block;margin:0;}.frm-star-group input {display: none !important;}.frm-star-group .star-rating,.frm-star-group input + label {float:left;width:25px;height:25px;font-size:25px;line-height:1;cursor:pointer;display:block;background:transparent;overflow:hidden !important;clear:none;font-style:normal;margin-right:15px;}.frm-star-group input + label:before,.frm-star-group .star-rating:before{font-family:\'s11-fp\';content:\'\\e9d7\';color:#F0AD4E;display: inline-block;vertical-align: top;}.frm-star-group input[type=radio]:checked + label:before,.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before{color:#F0AD4E;}.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before,.frm-star-group input + label:hover:before,.frm-star-group:hover input + label:hover:before,.frm-star-group .star-rating-on:before,.frm-star-group .star-rating-hover:before{content:\'\\e9d9\';color:#F0AD4E;}.frm-star-group .frm_half_star:before{content:\'\\e9d8\';}.frm-star-group .star-rating-readonly{cursor:default !important;}.with_frm_style .frm_other_input.frm_other_full{margin-top:10px;}.frm_left_container .frm_other_input{grid-column:2;}.frm_inline_container.frm_other_container .frm_other_input,.frm_left_container.frm_other_container .frm_other_input{margin-left:5px;}.frm_right_container.frm_other_container .frm_other_input{margin-right:5px;}.frm_inline_container.frm_other_container select ~ .frm_other_input,.frm_right_container.frm_other_container select ~ .frm_other_input,.frm_left_container.frm_other_container select ~ .frm_other_input{margin:0;}.frm_pagination_cont ul.frm_pagination{display:inline-block;list-style:none;margin-left:0 !important;}.frm_pagination_cont ul.frm_pagination > li{display:inline;list-style:none;margin:2px;background-image:none;}ul.frm_pagination > li.active a{text-decoration:none;}.frm_pagination_cont ul.frm_pagination > li:first-child{margin-left:0;}.archive-pagination.frm_pagination_cont ul.frm_pagination > li{margin:0;}.frmcal{padding-top:30px;}.frmcal-title{font-size:116%;}.frmcal table.frmcal-calendar{border-collapse:collapse;margin-top:20px;color:#232323;}.frmcal table.frmcal-calendar,.frmcal table.frmcal-calendar tbody tr td{border:1px solid #cccccc;}.frmcal table.frmcal-calendar,.frmcal,.frmcal-header{width:100%;}.frmcal-header{text-align:center;}.frmcal-prev{margin-right:10px;}.frmcal-prev,.frmcal-dropdown{float:left;}.frmcal-dropdown{margin-left:5px;}.frmcal-next{float:right;}.frmcal table.frmcal-calendar thead tr th{text-align:center;padding:2px 4px;}.frmcal table.frmcal-calendar tbody tr td{height:110px;width:14.28%;vertical-align:top;padding:0 !important;color:#232323;font-size:12px;}table.frmcal-calendar .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #cccccc;-webkit-box-shadow:0 2px 5px #cccccc;box-shadow:0 2px 5px #cccccc;}table.frmcal-calendar .frmcal-today .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #66afe9;-webkit-box-shadow:0 2px 5px #66afe9;box-shadow:0 2px 5px #66afe9;}.frmcal_day_name,.frmcal_num{display:inline;}.frmcal-content{padding:2px 4px;}.frm_switch_opt {padding:0 8px 0 0;white-space:normal;display:inline;vertical-align: middle;}.frm_on_label{color: #3177c7;padding:0 0 0 8px;}.frm_switch {position: relative;display: inline-block;width: 40px;height: 25px;vertical-align: middle;}.frm_switch input {display:none !important;}.frm_slider {position: absolute;cursor: pointer;top: 0;left: 0;right: 0;bottom: 0;background-color: #ccc;transition: .4s;border-radius: 30px;}.frm_slider:before {border-radius: 50%;position: absolute;content: \"\";height: 23px;width: 23px;left: 1px;bottom: 1px;background-color: white;transition: .4s;box-shadow:0 2px 5px #999;}input:checked + .frm_slider {background-color: #3177c7;}input:focus + .frm_slider {box-shadow: 0 0 1px #3177c7;}input:checked + .frm_slider:before {transform: translateX(15px);}.with_frm_style .frm_range_unit,.with_frm_style .frm_range_value{display:inline-block;padding-left: 2px;padding-right: 2px;}.with_frm_style input[type=range] {-webkit-appearance: none;box-shadow:none !important;border:none !important;cursor: pointer;padding:0 ;background:transparent !important;display: block;width: 100%;margin: 7px 0 15px;font-size:14px;}.with_frm_style input[type=range]:active,.with_frm_style input[type=range]:focus {outline: none;box-shadow:none !important;background:transparent !important;}.with_frm_style .frm_range_container{text-align:center;}.with_frm_style input[type=range]::-webkit-slider-runnable-track {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;}.with_frm_style input[type=range]::-moz-range-track {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;border-color: transparent;border-width: 39px 0;color: transparent;}.with_frm_style input[type=range]::-ms-fill-lower {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;}.with_frm_style input[type=range]::-ms-fill-upper {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;}.with_frm_style input[type=range]::-webkit-slider-thumb {-webkit-appearance: none;-webkit-border-radius: 20px;height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;margin-top: -10px;}.with_frm_style input[type=range]::-moz-range-thumb {height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;-moz-border-radius: 20px;}.with_frm_style input[type=range]::-ms-thumb {height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;}@media screen and (max-width: 768px) {.frm-pass-req, .frm-pass-verified {width: 50% !important;white-space: nowrap;}}.frm-pass-req, .frm-pass-verified {float: left;width: 20%;line-height: 20px;font-size: 12px;padding-top: 4px;min-width: 175px;}.frm-pass-req:before, .frm-pass-verified:before {padding-right: 4px;font-size: 12px !important;vertical-align: middle !important;}span.frm-pass-verified::before {content: \'\\e606\';}span.frm-pass-req::before {content: \'\\e608\';}div.frm-password-strength {width: 100%;float: left;}div.frm_repeat_grid:after, div.frm_repeat_inline:after, div.frm_repeat_sec:after {content: \'\';display: table;clear: both;}.with_frm_style .frm-summary-page-wrapper {padding: 50px;margin: 25px 0 50px;border: 1px solid #cccccc;border-radius: 4px;}.with_frm_style .frm-summary-page-wrapper .frm-edit-page-btn {float: right;margin: 0;padding: 3px 10px;font-size: 13px;}.frm-summary-page-wrapper .frm-line-table th {width: 40%;}button .frm-icon {display: inline-block;color: inherit;width: 12px;height: 12px;fill: currentColor;}.frm-line-table {width: 100%;border-collapse: collapse;margin-top: 0.5em;font-size: 14px;}.frm-line-table tr {background-color: transparent;border-bottom: 1px solid rgba(204,204,204,0.6);}.frm-line-table td,.frm-line-table th {border: 0;padding: 20px 15px;background-color: transparent;vertical-align: top;color: #444444;}.frm-line-table th {opacity: .7;font-size: 1.1em;font-weight: 500;}.frm-line-table h3 {font-size: 21px;font-weight: 500;margin: 0;}.frm_form_field .frm_total_formatted {display: inline-block;margin: 5px 0 0;}.with_frm_style .chosen-container{font-size:14px;position:relative;display:inline-block;zoom:1;vertical-align:middle;width:100% !important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.with_frm_style .chosen-container * {  -webkit-box-sizing: border-box;  box-sizing: border-box;}.with_frm_style .chosen-container .chosen-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:100%;z-index:1010;width:100%;clip: rect(0, 0, 0, 0);-webkit-clip-path: inset(100% 100%);clip-path: inset(100% 100%);}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{clip: auto;-webkit-clip-path: none;clip-path: none;}.with_frm_style .chosen-container a{cursor:pointer;}.with_frm_style .chosen-container .search-choice .group-name,.with_frm_style .chosen-container .chosen-single .group-name {margin-right: 4px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-weight: normal;color: #999999;}.with_frm_style .chosen-container .search-choice .group-name:after,.with_frm_style .chosen-container .chosen-single .group-name:after {content: \":\";padding-left: 2px;vertical-align: top;}.with_frm_style .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;text-decoration:none;white-space:nowrap;line-height:24px;}.with_frm_style .chosen-container-single .chosen-default {color: #999;}.with_frm_style .chosen-container-single .chosen-single span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.with_frm_style .chosen-container-single .chosen-single-with-deselect span{margin-right:38px;}.with_frm_style .chosen-container-single .chosen-single abbr{display:block;position:absolute;right:26px;top:6px;width:12px;height:12px;font-size:1px;background:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite.png\') -42px 1px no-repeat;}.with_frm_style .chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single .chosen-single div{position:absolute;right:0;top:0;display:block;height:100%;width:18px;}.with_frm_style .chosen-container-single .chosen-single div b{background:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite.png\') no-repeat 0 2px;display:block;width:100%;height:100%;}.with_frm_style .chosen-container-single .chosen-search{padding:3px 4px;position:relative;margin:0;white-space:nowrap;z-index:1010;}.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"]{width:100% !important;max-width:100% !important;height:auto;background:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite.png\') no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box;}.with_frm_style .chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;clip: rect(0, 0, 0, 0);-webkit-clip-path: inset(100% 100%);clip-path: inset(100% 100%);}.with_frm_style .chosen-container .chosen-results{cursor:text;overflow-x:hidden;overflow-y:auto;position:relative;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch;}.with_frm_style .chosen-container .chosen-results li:before{background:none;}.with_frm_style .chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none;}.with_frm_style .chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer;}.with_frm_style .chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container .chosen-results li.highlighted{background-color: #3875d7;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);color: #fff;}.with_frm_style .chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4;}.with_frm_style .chosen-container .chosen-results li.group-result{display:list-item;font-weight:bold;cursor:default;}.with_frm_style .chosen-container .chosen-results li.group-option{padding-left:15px;}.with_frm_style .chosen-container .chosen-results li em{font-style:normal;text-decoration:underline;}.with_frm_style .chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto;border: 1px solid #aaa;background-color: #fff;cursor:text;}.with_frm_style .chosen-container-multi .chosen-choices li{float:left;list-style:none;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type=\"text\"]{margin:1px 0;padding:0 !important;height:25px;outline:0;border:0 !important;background:transparent !important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;width: 25px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:1px 5px 1px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);color:#333;line-height:13px;cursor:default;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice span {word-wrap: break-word;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite.png\') -42px 1px no-repeat;font-size:1px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);color:#666;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-results{margin:0;padding:0;}.with_frm_style .chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container-single.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;border-bottom-right-radius:0;border-bottom-left-radius:0;box-shadow:0 1px 0 #fff inset;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px;}.with_frm_style .chosen-container-active .chosen-choices {border: 1px solid #5897fb;-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-active .chosen-choices li.search-field input[type=\"text\"]{color:#111 !important;}.with_frm_style .chosen-disabled{opacity:0.5 !important;cursor:default;}.with_frm_style .chosen-disabled .chosen-single{cursor:default;}.with_frm_style .chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default;}.with_frm_style .chosen-rtl{text-align:right;}.with_frm_style .chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0;}.with_frm_style .chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl;}.with_frm_style .chosen-rtl .chosen-single-with-deselect span{margin-left:38px;}.with_frm_style .chosen-rtl .chosen-single div{right:auto;left:3px;}.with_frm_style .chosen-rtl .chosen-single abbr{right:auto;left:26px;}.with_frm_style .chosen-rtl .chosen-choices li{float:right;}.with_frm_style .chosen-rtl .chosen-choices li.search-field input[type=\"text\"]{direction:rtl;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice{margin:1px 5px 1px 0;padding:3px 5px 3px 19px;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0;}.with_frm_style .chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0;}.with_frm_style .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none;}.with_frm_style .chosen-rtl .chosen-search input[type=\"text\"]{padding:4px 5px 4px 20px;background:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite.png\') no-repeat -30px -20px;direction:rtl;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px;}.with_frm_style .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px;}.with_frm_style .frm_repeat_sec,.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid {position: relative;}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){.with_frm_style .chosen-rtl .chosen-search input[type=\"text\"],.with_frm_style .chosen-container-single .chosen-single abbr,.with_frm_style .chosen-container-single .chosen-single div b,.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"],.with_frm_style .chosen-container-multi .chosen-choices .search-choice .search-choice-close,.with_frm_style .chosen-container .chosen-results-scroll-down span,.with_frm_style .chosen-container .chosen-results-scroll-up span{background-image:url(\'//stadsig.co.za/wp-content/plugins/formidable-pro/images/chosen-sprite2x.png\') !important;background-size:52px 37px !important;background-repeat:no-repeat !important;}}@-webkit-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-moz-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-webkit-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@-moz-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}.frm_dropzone, .frm_dropzone * {box-sizing: border-box;}.frm_dropzone.frm_single_upload,.frm_dropzone.dz-clickable {min-height: 60px;margin-top:5px;line-height:1.42857143;}.frm_dropzone.dz-clickable * {cursor: default;}.frm_dropzone.frm_single_upload {max-width: 200px;}.frm_dropzone.frm_single_upload.dz-started {max-width: 300px;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: .5em 0 1em;}.frm_dropzone .dz-message{border: 2px dashed #dfdfdf;background:#ffffff;padding: 20px;border-radius:5px;cursor: pointer;display:none;font-size:20px;text-align: center;margin: .5em 0 1em;}.frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: 0 0 .5em 0;}.frm_dropzone.frm_single_upload.dz-started .dz-message{display: none;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone .frm_upload_icon{display:block;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone.dz-clickable .dz-message * {cursor: pointer;}#frm_form_editor_container .frm_dropzone.dz-clickable,#frm_form_editor_container .frm_dropzone.dz-clickable *{cursor: default;}.frm_dropzone.dz-drag-hover .dz-message {opacity: 0.5;}.frm_dropzone .frm_upload_icon:before{font-size:40px;}.frm_dropzone .frm_small_text {font-size:14px;}.frm_dropzone.dz-drag-hover {border-style: solid;}.frm_dropzone .dz-preview {padding: 15px 0;border-bottom: 1px solid #dfdfdf;}.frm_dropzone .dz-preview:last-child {border-bottom: none;}.frm_dropzone .dz-preview:hover {z-index: 1000;}.frm_dropzone .dz-preview.dz-file-preview .dz-details {opacity: 1;}.frm_dropzone .dz-preview.dz-image-preview .dz-details {-webkit-transition: opacity 0.2s linear;-moz-transition: opacity 0.2s linear;-ms-transition: opacity 0.2s linear;-o-transition: opacity 0.2s linear;transition: opacity 0.2s linear;}.frm_dropzone .dz-preview .dz-remove {cursor: pointer;border: none;float: right;}.frm_dropzone .dz-preview:hover .dz-details {opacity: 1;}.frm_dropzone .dz-preview .dz-details {font-size: 14px;margin: 5px 0 10px;}.frm_dropzone .dz-preview .dz-details .dz-size,.frm_dropzone .dz-preview .dz-details .dz-filename {display: inline-block;overflow: hidden;white-space: nowrap;}.frm_dropzone .dz-preview .dz-details .dz-size strong {font-weight: normal;}.frm_dropzone .dz-preview .dz-details .dz-filename {max-width: 65%;text-overflow: ellipsis;}.frm_dropzone .dz-preview .dz-details .dz-filename a{cursor:pointer;}.frm_dropzone .dz-preview .dz-column {float: right;width: 68%;}.frm_dropzone .dz-preview .dz-image {overflow: hidden;width: 30%;height: 60px;display: block;float: left;margin-right: 2%;}.frm_dropzone .dz-preview .dz-image img {display: block;margin:0 auto;max-height: 60px;}.frm_dropzone .dz-preview.dz-success .dz-success-mark {-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);}.frm_dropzone .dz-preview.dz-processing .dz-progress {-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-ms-transition: all 0.2s linear;-o-transition: all 0.2s linear;transition: all 0.2s linear;}.frm_dropzone .dz-preview .dz-progress {pointer-events: none;position: relative;height: 10px;width: 100%;background: rgba(221, 221, 221, 1);-webkit-transform: scale(1);border-radius: 8px;overflow: hidden;}.frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_dropzone .dz-preview.dz-complete .dz-progress{background: #333;background: linear-gradient(to bottom, #666, #444);}.frm_dropzone .dz-preview .dz-progress .dz-upload {position: absolute;top: 0;left: 0;bottom: 0;width: 0;-webkit-transition: width 300ms ease-in-out;-moz-transition: width 300ms ease-in-out;-ms-transition: width 300ms ease-in-out;-o-transition: width 300ms ease-in-out;transition: width 300ms ease-in-out;}.frm_dropzone .dz-preview.dz-error .dz-error-message {display: block;opacity: 1;pointer-events: auto;}.frm_dropzone .dz-preview .dz-error-message {pointer-events: none;display: none;opacity: 0;-webkit-transition: opacity 0.3s ease;-moz-transition: opacity 0.3s ease;-ms-transition: opacity 0.3s ease;-o-transition: opacity 0.3s ease;transition: opacity 0.3s ease;color: #B94A48;padding: 0.5em;}.frm_dropzone .fallback input[type=file]{display:block;}.frm_compact_text{display:none;}.frm_compact .frm_dropzone.dz-clickable{padding:0;border:none;background-color:transparent;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_compact .frm_compact_text{display:inline;}.frm_upload_text button,.frm_compact_text button {background: none !important;color: inherit !important;border: none !important;padding: 0 !important;font: inherit !important;cursor: pointer !important;outline: inherit !important;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_compact .frm_dropzone.dz-clickable .dz-message{font-size:14px;border:1px solid #dfdfdf;background:#fff;display: inline-block;border-radius: 4px;padding: 6px 11px;box-sizing: border-box;box-shadow: 0 1px 1px #eeeeee;vertical-align: middle;margin: 0 0 1em;}.frm_compact .frm_dropzone.frm_single_upload.dz-started .dz-message,.frm_compact .frm_dropzone.frm_single_upload.dz-started.dz-clickable .dz-message {display: none;}.frm_compact .frm_dropzone .frm_upload_icon:before{font-size:22px;padding-right:7px;vertical-align: middle;}.frm_compact .frm_dropzone .frm_upload_icon{display:inline;}.frm_compact .frm_dropzone .dz-preview{min-height:20px;max-width:200px;margin: 0 5px;padding: 0;display: inline-block;border-bottom: none;}.frm_compact .frm_dropzone .dz-preview.frm_clearfix:after {content:\'\';}.frm_compact .frm_dropzone .frm_upload_text,.frm_compact .frm_dropzone .frm_small_text,.frm_compact .frm_dropzone .dz-preview .dz-image,.frm_compact .frm_dropzone .dz-preview .dz-details .dz-size{display:none;}.frm_compact .frm_dropzone .dz-preview .dz-details {margin: 0;}.frm_compact .frm_dropzone .dz-preview .dz-column {float: none;width: 100%;}.frm_compact .frm_dropzone .dz-preview .dz-details .dz-filename {overflow: hidden;text-overflow: ellipsis;}.frm-show-form .dz-hidden-input{display:none;}.frm_rootline_group{margin: 20px 0 30px;}ul.frm_page_bar{list-style-type: none;margin: 0 !important;padding: 0;width: 100%;float: left;display: table;display: -webkit-flex;display: flex;flex-wrap: wrap;box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}ul.frm_page_bar li{display: inline-block;-ms-flex: 1;flex: 1;}.frm_forms .frm_page_bar input,.frm_forms .frm_page_bar input:disabled{transition: background-color 0.1s ease;color: #ffffff;background-color: #dddddd;font-size: 18px;border-width: 2px;border-style: solid;border-color: #dfdfdf;}.frm_forms .frm_page_bar input:focus{outline: none;}.frm_forms .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_forms .frm_page_bar .frm_current_page input[type=\"button\"]{background-color: #dddddd;border-color: #dfdfdf;}.frm_rootline_single{text-align: center;margin: 0;padding: 0;}.frm_current_page .frm_rootline_title{color: #008ec2;}.frm_rootline_title,.frm_pages_complete,.frm_percent_complete {font-size:14px;padding:4px;}.frm_pages_complete {float: right;margin-right:13px;}.frm_percent_complete {float: left;margin-left:13px;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled {width: 100%;border: none;border-top: 1px solid #dfdfdf;border-bottom: 1px solid #dfdfdf;box-shadow: inset 0 10px 20px -15px #aaa;margin: 5px 0;padding: 6px 0;border-radius:0;font-size:0;line-height:15px;}.frm_forms .frm_progress_line.frm_show_lines input {border-left: 1px solid #ffffff;border-right: 1px solid #ffffff;}.frm_progress_line .frm_rootline_single {display: flex;flex-direction: column;justify-content: flex-end;}.frm_forms .frm_progress_line li:first-of-type input {border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-left: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-right: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-right: 1px solid #dfdfdf;}.frm_forms .frm_progress_line .frm_current_page input[type=\"button\"] {border-left: 1px solid #dfdfdf;}.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type=\"button\"] {border-right: 1px solid #ffffff;}.frm_forms .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_forms .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_rtl.frm_forms .frm_progress_line li:first-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-top-left-radius:0px;border-bottom-left-radius:0px;border-right: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input{border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-left: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-left: 1px solid #dfdfdf;border-right:none;}.frm_rtl.frm_forms .frm_progress_line .frm_current_page input[type=\"button\"] {border-right: 1px solid #dfdfdf;border-left:none;}.frm_rtl.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type=\"button\"] {border-left: 1px solid #ffffff;border-right:none;}.frm_rootline.frm_show_lines:before {border-top-width: 2px;border-top-style: solid;border-top-color: #dfdfdf;content: \"\";margin: 0 auto;position: absolute;top: 15px;left: 0;right: 0;bottom: 0;width: 100%;z-index: -1;}.frm_rootline.frm_show_lines{position: relative;z-index: 1;}.frm_rootline.frm_show_lines span{display:block;}.frm_forms .frm_rootline input {width: 30px;height: 30px;min-height:auto;border-radius: 30px;padding:0;}.frm_forms .frm_rootline input:focus {border-color: #008ec2;}.frm_forms .frm_rootline .frm_current_page input[type=\"button\"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled,.frm_forms .frm_progress_line .frm_current_page input[type=\"button\"],.frm_forms .frm_rootline.frm_no_numbers input,.frm_forms .frm_rootline.frm_no_numbers .frm_current_page input[type=\"button\"] {color: transparent !important;}@media only screen and (max-width: 700px) {.frm_progress span.frm_rootline_title,.frm_rootline.frm_rootline_10 span.frm_rootline_title,.frm_rootline.frm_rootline_9 span.frm_rootline_title,.frm_rootline.frm_rootline_8 span.frm_rootline_title,.frm_rootline.frm_rootline_7 span.frm_rootline_title,.frm_rootline.frm_rootline_6 span.frm_rootline_title,.frm_rootline.frm_rootline_5 span.frm_rootline_title{display:none;}}@media only screen and (max-width: 500px) {.frm_rootline.frm_rootline_4 span.frm_rootline_title,.frm_rootline.frm_rootline_3 span.frm_rootline_title{display:none;}}.with_frm_style.frm_login_form,.with_frm_style.frm_login_form form{clear:both;}.frm_login_form .login_lost_pw.frm_half{text-align:right;}.frm_inline_login.frm_no_labels .frm_submit input,.frm_inline_login.frm_no_labels .frm_submit button{margin-top:0 !important;}.with_frm_style.frm_login_form.frm_slide.frm_inline_login form,.with_frm_style.frm_login_form.frm_slide.frm_inline_login form{clear:none;}.with_frm_style.frm_slide.frm_inline_login .frm-open-login{float:left;margin-right:15px;}.with_frm_style.frm_slide form,.frm_slide form,.with_frm_style.frm_slide.frm_inline_login a.forgot-password,.with_frm_style.frm_slide.frm_inline_login .login-remember{display:none;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:0;}.with_frm_style.frm_slide.frm_inline_login fieldset{padding-bottom:0;}.with_frm_style.frm_login_form.frm_inline_login .login-username,.with_frm_style.frm_login_form.frm_inline_login .login-password,.with_frm_style.frm_login_form.frm_inline_login .login-remember{margin-right:0 !important;}.with_frm_style.frm_login_form.frm_inline_login form,.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:static !important;}.with_frm_style.frm_login_form a{text-decoration:none;border:none;outline:none;box-shadow:none;}.with_frm_style.frm_login_form .cptch_block .cptch_title{display:none;}@media only screen and (max-width: 600px) {.frm_login_form .login_lost_pw.frm_half{text-align:left;}.with_frm_style .login-remember.frm_first.frm_half,.with_frm_style.frm_login_form .login_lost_pw.frm_half{text-align:center;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:20px;}}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth .frm_primary_label{display: block !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(2, 1fr);}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style .frm-g-recaptcha > div > div,.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe,.with_frm_style .frm-g-recaptcha iframe{width:100%;}}.with_frm_style .frm_form_field{clear:both;}.frm_form_field,.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{width:auto;}.frm_inline_form .frm_form_field.form-field{margin-right:2.5%;display:inline-block;}.frm_inline_form .frm_submit{display:inline-block;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm10,.frm_submit.frm10,.frm_form_field.frm_right_half,.frm_form_field.frm_right_third,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_right_fourth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_half,.frm_form_field.frm_last_third,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_last_fourth,.frm_form_field.frm_last_fifth,.frm_form_field.frm_last_sixth,.frm_form_field.frm_last_seventh,.frm_form_field.frm_last_eighth,.frm_form_field.frm_last_inline,.frm_form_field.frm_last,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_two_thirds,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_inline,.frm_submit.frm_inline{clear:none;float:left;margin-left:2.5%;}.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{clear:left;float:left;margin-left:0;}.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{width:48.75%;}.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{width:31.66%;}.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{width:65.82%;}.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{width:23.12%;}.frm_form_field.frm9,.frm_form_field.frm_three_fourths{width:74.36%;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{width:18%;}.frm_form_field.frm_two_fifths {width:38.5%;}.frm_form_field.frm_three_fifths {width:59%;}.frm_form_field.frm_four_fifths {width:79.5%;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{width:14.58%;}.frm_form_field.frm10,.frm_submit.frm10{width:82.92%;}.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh{width:12.14%;}.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{width:10.31%;}.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;}.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type=\'checkbox\']):not([type=\'radio\']):not([type=\'button\']),.frm_full select,.frm_full textarea{width:100% !important;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container,.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container,.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display:block;}.frm_form_field.frm_left_container .frm_primary_label{float:left;display:inline;max-width:33%;margin-right:5%;}.with_frm_style .frm_conf_field.frm_left_container .frm_primary_label{display:inline;visibility:hidden;}.frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_left_container textarea,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_left_container .chosen-container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_right_container textarea,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_right_container .chosen-container,.frm_form_field.frm_right_container .frm_combo_inputs_container{max-width:62%;}.frm_form_field.frm_left_container .frm_combo_inputs_container input,.frm_form_field.frm_left_container .frm_combo_inputs_container select,.frm_form_field.frm_right_container .frm_combo_inputs_container input,.frm_form_field.frm_right_container .frm_combo_inputs_container select{max-width:100%;}.frm_form_field.frm_left_container .frm_data_container,.frm_form_field.frm_right_container .frm_data_container,.frm_form_field.frm_inline_container .frm_data_container,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container .frm_combo_inputs_container,.frm_form_field.frm_inline_container .frm_combo_inputs_container,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_inline_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_inline_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_inline_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_inline_container .g-recaptcha{display:inline-block;}.frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_left_container .frm_primary_label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;max-width:33%;}.with_frm_style .frm_left_container .frm_primary_label{float:left;display:inline !important;width:150px;max-width:33% !important;margin-right:10px !important;}.with_frm_style .frm_right_container .frm_primary_label{display:inline !important;width:150px;max-width:33% !important;margin-left:10px !important;}.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_left_container textarea,.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_right_container textarea,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:62% !important;}.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field input,.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field select,.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field input,.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field select{max-width:100% !important;}.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha{display:inline-block !important;}.with_frm_style .frm_left_container > p.description::before,.with_frm_style .frm_left_container > div.description::before,.with_frm_style .frm_left_container > div.frm_description::before,.with_frm_style .frm_left_container > .frm_error::before,.with_frm_style .frm_right_container > p.description::after,.with_frm_style .frm_right_container > div.description::after,.with_frm_style .frm_right_container > div.frm_description::after,.with_frm_style .frm_right_container > .frm_error::after{content:\'\' !important;display:inline-block !important;width:150px;max-width:33% !important;margin-right:10px !important;}.with_frm_style .frm_left_container.frm_inline .frm_primary_label{max-width:90% !important;}.with_frm_style .form-field.frm_col_field{clear:none;float:left;margin-right:20px;}.with_frm_style .form-field.frm_col_field div.frm_description{width:auto;max-width:100%;}.with_frm_style .frm_inline_container .frm_primary_label,.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px !important;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_checkbox{float:left;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width:30%;margin-right:5%;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:22%;margin-right:4%;}.frm_form_field.frm_two_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_two_col .frm_checkbox:nth-child(2n+2),.frm_form_field.frm_three_col .frm_radio:nth-child(3n+3),.frm_form_field.frm_three_col .frm_checkbox:nth-child(3n+3),.frm_form_field.frm_four_col .frm_radio:nth-child(4n+4),.frm_form_field.frm_four_col .frm_checkbox:nth-child(4n+4){margin-right:0;}.with_frm_style.frm_rtl .frm_form_field.frm2,.with_frm_style.frm_rtl .frm_form_field.frm3,.with_frm_style.frm_rtl .frm_form_field.frm4,.with_frm_style.frm_rtl .frm_form_field.frm6,.with_frm_style.frm_rtl .frm_form_field.frm8,.with_frm_style.frm_rtl .frm_form_field.frm9,.with_frm_style.frm_rtl .frm_form_field.frm10,.with_frm_style.frm_rtl .frm_form_field.frm_half,.with_frm_style.frm_rtl .frm_form_field.frm_third,.with_frm_style.frm_rtl .frm_form_field.frm_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_sixth,.with_frm_style.frm_rtl .frm_form_field.frm_seventh,.with_frm_style.frm_rtl .frm_form_field.frm_eighth,.with_frm_style.frm_rtl .frm_form_field.frm_inline,.with_frm_style.frm_rtl .frm_form_field.frm_left_half,.with_frm_style.frm_rtl .frm_form_field.frm_left_third,.with_frm_style.frm_rtl .frm_form_field.frm_left_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_left_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_left_inline,.with_frm_style.frm_rtl .frm_form_field.frm_first_half,.with_frm_style.frm_rtl .frm_form_field.frm_first_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_first_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_first_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_first_inline,.with_frm_style.frm_rtl .frm_form_field.frm_right_half,.with_frm_style.frm_rtl .frm_form_field.frm_right_third,.with_frm_style.frm_rtl .frm_form_field.frm_right_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_right_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_right_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_right_inline,.with_frm_style.frm_rtl .frm_form_field.frm_last_half,.with_frm_style.frm_rtl .frm_form_field.frm_last_third,.with_frm_style.frm_rtl .frm_form_field.frm_last_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_last_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_last_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_last_inline{float:right;margin-right:2.5%;margin-left:0;clear:none;}.with_frm_style.frm_rtl .frm_form_field.frm_left_half,.with_frm_style.frm_rtl .frm_form_field.frm_first_half,.with_frm_style.frm_rtl .frm_form_field.frm_first,.with_frm_style.frm_rtl .frm_form_field.frm_left_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_left_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_first_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_first_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_left_inline,.with_frm_style.frm_rtl .frm_form_field.frm_first_inline{clear:right;margin-right:0;}.with_frm_style.frm_rtl .frm_form_field.frm_two_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_three_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_four_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_two_col .frm_checkbox,.with_frm_style.frm_rtl .frm_form_field.frm_three_col .frm_checkbox,.with_frm_style.frm_rtl .frm_form_field.frm_four_col .frm_checkbox{float:right;}@media only screen and (max-width: 500px) {.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_left_container textarea,.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_right_container textarea,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:100% !important;}.with_frm_style .frm_left_container > p.description::before,.with_frm_style .frm_left_container > div.description::before,.with_frm_style .frm_left_container > div.frm_description::before,.with_frm_style .frm_left_container > .frm_error::before,.with_frm_style .frm_right_container > p.description::after,.with_frm_style .frm_right_container > div.description::after,.with_frm_style .frm_right_container > div.frm_description::after,.with_frm_style .frm_right_container > .frm_error::after{display:none !important;}.with_frm_style .frm_left_container .frm_primary_label,.with_frm_style .frm_right_container .frm_primary_label{width:100% !important;max-width:100% !important;margin-right:0 !important;margin-left:0 !important;padding-right:0 !important;padding-left:0 !important;}}@media only screen and (max-width: 600px){.with_frm_style .frm_form_field.frm_half.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_half.frm_left_container select,.with_frm_style .frm_form_field.frm_half.frm_left_container textarea,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_half.frm_left_container.frm-g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_left_container.g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_half.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_half.frm_right_container select,.with_frm_style .frm_form_field.frm_half.frm_right_container textarea,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_half.frm_right_container.frm-g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_right_container.g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_right_container .chosen-container{max-width:100% !important;}.with_frm_style .frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_primary_label{max-width:100% !important;margin-right:0;margin-left:0;padding-right:0;padding-left:0;width:100% !important;}.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid{margin: 20px 0;}.with_frm_style .frm_form_field.frm_first_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_error{margin-right:0;margin-left:0;padding-right:0;padding-left:0;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm10,.frm_submit.frm10,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_first_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_last_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_last_inline{width:100%;margin-left:0;margin-right:0;clear:both;float:none;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:48%;}.frm_form_field.frm_four_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_four_col .frm_checkbox:nth-child(2n+2){margin-right:0;}}.frm_style_formidable-style.with_frm_style .form-field {margin-bottom: 10px;}.splash .frm_form_field.frm_three_fourths {margin-left:0% !important;}.splash .frm_style_formidable-style.with_frm_style .frm_submit button {height:56px !important;}.frm_form_field.frm9, .frm_form_field.frm_three_fourths {width: 80%;}@media (max-width: 981px) {.frm_form_field.frm9, .frm_form_field.frm_three_fourths {width: 100% !important;}}.frm_inline_form .frm_form_field.form-field {margin-right: 4%;display: inline-block;}@media (min-width: 981px) {.frm_form_field.frm9, .frm_form_field.frm_three_fourths {max-width: 400px !important;}}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message, .frm_style_formidable-style.with_frm_style input[type=submit], .frm_style_formidable-style.with_frm_style .frm_submit input[type=button], .frm_style_formidable-style.with_frm_style .frm_submit button, .frm_form_submit_style, .frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit] {text-transform:lowercase !important;}.frm_style_formidable-style.with_frm_style input[type=text], .frm_style_formidable-style.with_frm_style input[type=password], .frm_style_formidable-style.with_frm_style input[type=email], .frm_style_formidable-style.with_frm_style input[type=number], .frm_style_formidable-style.with_frm_style input[type=url], .frm_style_formidable-style.with_frm_style input[type=tel], .frm_style_formidable-style.with_frm_style input[type=phone], .frm_style_formidable-style.with_frm_style input[type=search], .frm_style_formidable-style.with_frm_style select, .frm_style_formidable-style.with_frm_style textarea, .frm_form_fields_style, .frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container, .frm_form_fields_active_style, .frm_form_fields_error_style, .frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices, .frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single {-moz-border-radius: 0px;-webkit-border-radius: 0px;border-radius: 0px;}','no'),(33195,'can_compress_scripts','0','no'),(33205,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":3:{s:7:\"checked\";a:12:{s:29:\"a3-lazy-load/a3-lazy-load.php\";s:5:\"2.3.2\";s:27:\"wp-asset-clean-up/wpacu.php\";s:7:\"1.3.6.1\";s:31:\"divi-overlays/divi-overlays.php\";s:7:\"2.8.9.9\";s:41:\"divi-stop-stacking/divi-stop-stacking.php\";s:3:\"1.1\";s:33:\"formidable-api/formidable-api.php\";s:4:\"1.08\";s:25:\"formidable/formidable.php\";s:7:\"4.04.02\";s:33:\"formidable-pro/formidable-pro.php\";s:7:\"4.04.02\";s:51:\"formidable-registration/formidable-registration.php\";s:7:\"2.02.02\";s:39:\"formidable-zapier/formidable-zapier.php\";s:4:\"1.06\";s:13:\"mhmm/mhmm.php\";s:6:\"2.1.19\";s:19:\"monarch/monarch.php\";s:6:\"1.4.12\";s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";s:6:\"4.17.3\";}s:8:\"response\";a:0:{}s:12:\"last_checked\";i:1587544777;}','no'),(33219,'dov_restore_divi_static_css_file','off','no'),(33220,'_transient_wpacu_js_optimize_9cb572216fd1132177ed9035d4e0bf05','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-overlays\\/assets\\/js\\/snap.svg-min.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/snap_svg_js-v5.4-4a727f18ae652ec49ca3d542b11b67df6dbd3cfd.js\",\"ver\":\"5.4\"}','yes'),(33221,'_transient_wpacu_js_optimize_3a76e24f9c06f368b8e828f4f0719ff0','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-overlays\\/assets\\/js\\/modernizr.custom.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/modernizr_js-v5.4-5f810a8cc859109d7b8e7f8dacbcf3436de4b7b9.js\",\"ver\":\"5.4\"}','yes'),(33222,'_transient_wpacu_js_optimize_c47d5e26b93dacd53139c662fcf76e0c','{\"source_uri\":\"\\/wp-content\\/themes\\/Divi\\/core\\/admin\\/js\\/recaptcha.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/et-core-api-spam-recaptcha-v5.4-dad0f904f6e712b00004203c93e1c421491cf21b.js\",\"ver\":\"5.4\"}','yes'),(33223,'_transient_wpacu_js_optimize_648c2ad5123217d071a56342ca853f99','{\"source_uri\":\"\\/wp-content\\/themes\\/Divi\\/js\\/custom.unified.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/divi-custom-script-v4.4.3-003ec90bf313e3181d942b1da4b631973a91e7bd.js\",\"ver\":\"4.4.3\"}','yes'),(33224,'_transient_wpacu_js_optimize_9734e678eae9e07312fd3d3f10cdd4be','{\"source_uri\":\"\\/wp-content\\/plugins\\/a3-lazy-load\\/assets\\/js\\/jquery.lazyloadxt.extend.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/jquery-lazyloadxt-extend-v2.3.2-88ff81d1b584d4dccc0c880614db9606d3e404b3.js\",\"ver\":\"2.3.2\"}','yes'),(33225,'_transient_wpacu_js_optimize_282b534b272c8b187c2a112c61f53be9','{\"source_uri\":\"\\/wp-content\\/themes\\/Divi\\/core\\/admin\\/js\\/common.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/et-core-common-v4.4.3-cd97bdd72c8f7ca65a37ea7d78ff71580633169a.js\",\"ver\":\"4.4.3\"}','yes'),(33226,'_transient_wpacu_js_optimize_2ab26ed42ea038f61b9ae3295af6df92','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-overlays\\/assets\\/js\\/jquery.exitintent.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/exit-intent-v5.4-3ad23ab123b73f872e0e54f87a0cd708bd6b2833.js\",\"ver\":\"5.4\"}','yes'),(33227,'_transient_wpacu_js_optimize_966aedb2d1686fe9371b697a6fb43399','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-overlays\\/assets\\/js\\/custom.js\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/js\\/item\\/divi-custom-js-v5.4-68d93e1bf484496982d4c6df2e822cf722af7aba.js\",\"ver\":\"5.4\"}','yes'),(33228,'_transient_wpacu_css_optimize_d52179befebb6de462212097e7a0d1f0','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-overlays\\/assets\\/css\\/style.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/custom_style_css-v5.4-095fc22f8ec61b7c59721c4913d2dedaedfb5ed6.css\",\"ver\":\"5.4\"}','yes'),(33229,'_transient_wpacu_css_optimize_042dbdf7c817afd891a2cd500db5c8a7','{\"source_uri\":\"\\/wp-content\\/plugins\\/divi-stop-stacking\\/css\\/divi-stop-stacking.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/divi-stop-stacking-v5.4-fd330dd4dd88e1b112e4a4602d6cc73cdd1600d2.css\",\"ver\":\"5.4\"}','yes'),(33230,'_transient_wpacu_css_optimize_119d3e0111845c00c13842f056f9bbdd','{\"source_uri\":\"\\/wp-content\\/plugins\\/mhmm\\/css\\/mhmm-menus.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/mhmm-menus-v5.4-67044c58ffab9b23b39e0b63065a0287338aa659.css\",\"ver\":\"5.4\"}','yes'),(33231,'_transient_wpacu_css_optimize_a56b079a2df4d2d4e6ac0b363390a611','{\"source_uri\":\"\\/wp-content\\/plugins\\/mhmm\\/css\\/mhmm-menu-layout.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/mhmm-menu-layout-v5.4-ca414b6039ef88921087230b90f5072fd1aa9c81.css\",\"ver\":\"5.4\"}','yes'),(33232,'_transient_wpacu_css_optimize_8dfca9d8890e21dd8d48998eb5566eb4','{\"source_uri\":\"\\/wp-content\\/plugins\\/mhmm\\/css\\/mhmm.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/mhmm-v5.4-91f962b4b16eff56200d839d47a50a55258950d2.css\",\"ver\":\"5.4\"}','yes'),(33233,'_transient_wpacu_css_optimize_4599691754f63e625cc0b88909e82a29','{\"source_uri\":\"\\/wp-content\\/themes\\/Divi-child\\/style.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/divi-style-v4.4.3-93d62f539f23115a8b8191044a4c766d3f9e868e.css\",\"ver\":\"4.4.3\"}','yes'),(33234,'_transient_wpacu_css_optimize_eb9adae8fadde46f14fb2cae413e4111','{\"source_uri\":\"\\/wp-content\\/plugins\\/a3-lazy-load\\/assets\\/css\\/jquery.lazyloadxt.spinner.css\",\"optimize_uri\":\"\\/wp-content\\/cache\\/asset-cleanup\\/css\\/item\\/jquery-lazyloadxt-spinner-css-v5.4-7815fa6a775fd92a2399a791aaa50146d9d3aabf.css\",\"ver\":\"5.4\"}','yes'),(33275,'_transient_health-check-site-status-result','{\"good\":12,\"recommended\":3,\"critical\":2}','yes'),(33373,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:63:\"https://downloads.wordpress.org/release/en_ZA/wordpress-5.4.zip\";s:6:\"locale\";s:5:\"en_ZA\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:63:\"https://downloads.wordpress.org/release/en_ZA/wordpress-5.4.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"5.4\";s:7:\"version\";s:3:\"5.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1588158231;s:15:\"version_checked\";s:3:\"5.4\";s:12:\"translations\";a:0:{}}','no'),(33374,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1588158235;s:7:\"checked\";a:5:{s:10:\"Divi-child\";s:17:\"3.0.44.1494229532\";s:4:\"Divi\";s:5:\"4.4.3\";s:14:\"twentynineteen\";s:3:\"1.5\";s:15:\"twentyseventeen\";s:3:\"2.3\";s:12:\"twentytwenty\";s:3:\"1.2\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(33378,'_transient_timeout_et_core_version','1601427849','no'),(33379,'_transient_et_core_version','4.4.3','no'),(33584,'_site_transient_timeout_theme_roots','1588160034','no'),(33585,'_site_transient_theme_roots','a:5:{s:10:\"Divi-child\";s:7:\"/themes\";s:4:\"Divi\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";}','no'),(33586,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1588158236;s:7:\"checked\";a:12:{s:29:\"a3-lazy-load/a3-lazy-load.php\";s:5:\"2.3.2\";s:27:\"wp-asset-clean-up/wpacu.php\";s:7:\"1.3.6.1\";s:31:\"divi-overlays/divi-overlays.php\";s:7:\"2.8.9.9\";s:41:\"divi-stop-stacking/divi-stop-stacking.php\";s:3:\"1.1\";s:33:\"formidable-api/formidable-api.php\";s:4:\"1.08\";s:25:\"formidable/formidable.php\";s:7:\"4.04.02\";s:33:\"formidable-pro/formidable-pro.php\";s:7:\"4.04.02\";s:51:\"formidable-registration/formidable-registration.php\";s:7:\"2.02.02\";s:39:\"formidable-zapier/formidable-zapier.php\";s:4:\"1.06\";s:13:\"mhmm/mhmm.php\";s:6:\"2.1.19\";s:19:\"monarch/monarch.php\";s:6:\"1.4.12\";s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";s:6:\"4.17.3\";}s:8:\"response\";a:2:{s:25:\"formidable/formidable.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/formidable\";s:4:\"slug\";s:10:\"formidable\";s:6:\"plugin\";s:25:\"formidable/formidable.php\";s:11:\"new_version\";s:7:\"4.04.03\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/formidable/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/formidable.4.04.03.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/formidable/assets/icon-256x256.png?rev=1109774\";s:2:\"1x\";s:63:\"https://ps.w.org/formidable/assets/icon-128x128.png?rev=1109774\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/formidable/assets/banner-1544x500.png?rev=2285944\";s:2:\"1x\";s:65:\"https://ps.w.org/formidable/assets/banner-772x250.png?rev=2285944\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.4\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:40:\"w.org/plugins/shortpixel-image-optimiser\";s:4:\"slug\";s:26:\"shortpixel-image-optimiser\";s:6:\"plugin\";s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";s:11:\"new_version\";s:6:\"4.17.4\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/shortpixel-image-optimiser/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/shortpixel-image-optimiser.4.17.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/shortpixel-image-optimiser/assets/icon-256x256.png?rev=1038819\";s:2:\"1x\";s:79:\"https://ps.w.org/shortpixel-image-optimiser/assets/icon-128x128.png?rev=1038819\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/shortpixel-image-optimiser/assets/banner-772x250.png?rev=1730573\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.4\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:29:\"a3-lazy-load/a3-lazy-load.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/a3-lazy-load\";s:4:\"slug\";s:12:\"a3-lazy-load\";s:6:\"plugin\";s:29:\"a3-lazy-load/a3-lazy-load.php\";s:11:\"new_version\";s:5:\"2.3.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/a3-lazy-load/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/a3-lazy-load.2.3.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:65:\"https://ps.w.org/a3-lazy-load/assets/icon-256x256.png?rev=1049979\";s:2:\"1x\";s:57:\"https://ps.w.org/a3-lazy-load/assets/icon.svg?rev=1049979\";s:3:\"svg\";s:57:\"https://ps.w.org/a3-lazy-load/assets/icon.svg?rev=1049979\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/a3-lazy-load/assets/banner-772x250.png?rev=1073984\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"wp-asset-clean-up/wpacu.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/wp-asset-clean-up\";s:4:\"slug\";s:17:\"wp-asset-clean-up\";s:6:\"plugin\";s:27:\"wp-asset-clean-up/wpacu.php\";s:11:\"new_version\";s:7:\"1.3.6.1\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/wp-asset-clean-up/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/wp-asset-clean-up.1.3.6.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/wp-asset-clean-up/assets/icon-256x256.png?rev=1981952\";s:2:\"1x\";s:70:\"https://ps.w.org/wp-asset-clean-up/assets/icon-128x128.png?rev=1981952\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/wp-asset-clean-up/assets/banner-772x250.png?rev=1986594\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(33590,'_transient_doing_cron','1601346194.5214300155639648437500','yes'),(33659,'_transient_timeout_et_core_path','1601427848','no'),(33660,'_transient_et_core_path','/home/stadsig/public_html/wp-content/themes/Divi/core','no'),(33661,'_transient_timeout_frm_form_fields_6excludeinclude','1601367797','no'),(33662,'_transient_frm_form_fields_6excludeinclude','a:4:{i:0;O:8:\"stdClass\":13:{s:2:\"id\";s:2:\"68\";s:9:\"field_key\";s:7:\"qh4icy3\";s:4:\"name\";s:4:\"Name\";s:11:\"description\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:13:\"default_value\";s:0:\"\";s:7:\"options\";s:0:\"\";s:11:\"field_order\";s:1:\"1\";s:8:\"required\";s:1:\"1\";s:13:\"field_options\";a:48:{s:5:\"blank\";s:27:\"This field cannot be blank.\";s:14:\"separate_value\";i:0;s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";s:1:\"0\";s:5:\"align\";s:5:\"block\";s:11:\"form_select\";s:0:\"\";s:9:\"show_hide\";s:4:\"show\";s:7:\"any_all\";s:3:\"any\";s:10:\"hide_field\";a:0:{}s:15:\"hide_field_cond\";a:1:{i:0;s:2:\"==\";}s:8:\"hide_opt\";a:0:{}s:9:\"read_only\";i:0;s:10:\"admin_only\";s:0:\"\";s:6:\"unique\";i:0;s:10:\"unique_msg\";s:26:\"This value must be unique.\";s:8:\"use_calc\";i:0;s:4:\"calc\";s:0:\"\";s:8:\"calc_dec\";s:0:\"\";s:9:\"calc_type\";s:0:\"\";s:17:\"dyn_default_value\";s:0:\"\";s:8:\"multiple\";i:0;s:7:\"autocom\";i:0;s:10:\"conf_field\";s:0:\"\";s:10:\"conf_input\";s:0:\"\";s:9:\"conf_desc\";s:0:\"\";s:8:\"conf_msg\";s:31:\"The entered values do not match\";s:5:\"other\";i:0;s:18:\"autopopulate_value\";b:0;s:15:\"get_values_form\";s:0:\"\";s:16:\"get_values_field\";s:0:\"\";s:12:\"watch_lookup\";a:1:{i:0;s:0:\"\";}s:21:\"get_most_recent_value\";s:0:\"\";s:26:\"lookup_filter_current_user\";b:0;s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:4:\"none\";s:18:\"required_indicator\";s:0:\"\";s:7:\"invalid\";s:15:\"Name is invalid\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"custom_html\";s:439:\"<div id=\"frm_field_[id]_container\" class=\"frm_form_field form-field [required_class][error_class]\">\r\n    <label for=\"field_[key]\" class=\"frm_primary_label\">[field_name]\r\n        <span class=\"frm_required\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\"frm_description\" id=\"frm_desc_field_[key]\">[description]</div>[/if description]\r\n    [if error]<div class=\"frm_error\">[error]</div>[/if error]\r\n</div>\";s:12:\"custom_field\";s:0:\"\";s:10:\"post_field\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:11:\"exclude_cat\";i:0;s:11:\"placeholder\";s:4:\"NAME\";}s:7:\"form_id\";s:1:\"6\";s:10:\"created_at\";s:19:\"2018-07-16 11:48:35\";s:9:\"form_name\";s:9:\"Subscribe\";}i:1;O:8:\"stdClass\":13:{s:2:\"id\";s:2:\"69\";s:9:\"field_key\";s:7:\"29yf4d3\";s:4:\"name\";s:5:\"Email\";s:11:\"description\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:13:\"default_value\";s:0:\"\";s:7:\"options\";s:0:\"\";s:11:\"field_order\";s:1:\"3\";s:8:\"required\";s:1:\"1\";s:13:\"field_options\";a:48:{s:5:\"blank\";s:27:\"This field cannot be blank.\";s:7:\"invalid\";s:34:\"Please enter a valid email address\";s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";s:1:\"0\";s:5:\"align\";s:5:\"block\";s:11:\"form_select\";s:0:\"\";s:9:\"show_hide\";s:4:\"show\";s:7:\"any_all\";s:3:\"any\";s:10:\"hide_field\";a:0:{}s:15:\"hide_field_cond\";a:1:{i:0;s:2:\"==\";}s:8:\"hide_opt\";a:0:{}s:9:\"read_only\";i:0;s:10:\"admin_only\";s:0:\"\";s:6:\"unique\";i:0;s:10:\"unique_msg\";s:26:\"This value must be unique.\";s:8:\"use_calc\";i:0;s:4:\"calc\";s:0:\"\";s:8:\"calc_dec\";s:0:\"\";s:9:\"calc_type\";s:0:\"\";s:17:\"dyn_default_value\";s:0:\"\";s:8:\"multiple\";i:0;s:7:\"autocom\";i:0;s:10:\"conf_field\";s:0:\"\";s:10:\"conf_input\";s:0:\"\";s:9:\"conf_desc\";s:0:\"\";s:8:\"conf_msg\";s:31:\"The entered values do not match\";s:5:\"other\";i:0;s:18:\"autopopulate_value\";b:0;s:15:\"get_values_form\";s:0:\"\";s:16:\"get_values_field\";s:0:\"\";s:12:\"watch_lookup\";a:1:{i:0;s:0:\"\";}s:21:\"get_most_recent_value\";s:0:\"\";s:26:\"lookup_filter_current_user\";b:0;s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:4:\"none\";s:18:\"required_indicator\";s:0:\"\";s:14:\"separate_value\";i:0;s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"custom_html\";s:439:\"<div id=\"frm_field_[id]_container\" class=\"frm_form_field form-field [required_class][error_class]\">\r\n    <label for=\"field_[key]\" class=\"frm_primary_label\">[field_name]\r\n        <span class=\"frm_required\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\"frm_description\" id=\"frm_desc_field_[key]\">[description]</div>[/if description]\r\n    [if error]<div class=\"frm_error\">[error]</div>[/if error]\r\n</div>\";s:12:\"custom_field\";s:0:\"\";s:10:\"post_field\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:11:\"exclude_cat\";i:0;s:11:\"placeholder\";s:13:\"EMAIL ADDRESS\";}s:7:\"form_id\";s:1:\"6\";s:10:\"created_at\";s:19:\"2018-07-16 11:48:35\";s:9:\"form_name\";s:9:\"Subscribe\";}i:2;O:8:\"stdClass\":13:{s:2:\"id\";s:2:\"70\";s:9:\"field_key\";s:7:\"e6lis63\";s:4:\"name\";s:14:\"Contact Number\";s:11:\"description\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:13:\"default_value\";s:0:\"\";s:7:\"options\";s:0:\"\";s:11:\"field_order\";s:1:\"5\";s:8:\"required\";s:1:\"1\";s:13:\"field_options\";a:48:{s:5:\"blank\";s:27:\"This field cannot be blank.\";s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";s:1:\"0\";s:5:\"align\";s:5:\"block\";s:11:\"form_select\";s:0:\"\";s:9:\"show_hide\";s:4:\"show\";s:7:\"any_all\";s:3:\"any\";s:10:\"hide_field\";a:0:{}s:15:\"hide_field_cond\";a:1:{i:0;s:2:\"==\";}s:8:\"hide_opt\";a:0:{}s:9:\"read_only\";i:0;s:10:\"admin_only\";s:0:\"\";s:6:\"unique\";i:0;s:10:\"unique_msg\";s:26:\"This value must be unique.\";s:8:\"use_calc\";i:0;s:4:\"calc\";s:0:\"\";s:8:\"calc_dec\";s:0:\"\";s:9:\"calc_type\";s:0:\"\";s:17:\"dyn_default_value\";s:0:\"\";s:8:\"multiple\";i:0;s:7:\"autocom\";i:0;s:10:\"conf_field\";s:0:\"\";s:10:\"conf_input\";s:0:\"\";s:9:\"conf_desc\";s:0:\"\";s:8:\"conf_msg\";s:31:\"The entered values do not match\";s:5:\"other\";i:0;s:18:\"autopopulate_value\";b:0;s:15:\"get_values_form\";s:0:\"\";s:16:\"get_values_field\";s:0:\"\";s:12:\"watch_lookup\";a:1:{i:0;s:0:\"\";}s:21:\"get_most_recent_value\";s:0:\"\";s:26:\"lookup_filter_current_user\";b:0;s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:4:\"none\";s:18:\"required_indicator\";s:0:\"\";s:7:\"invalid\";s:18:\"Subject is invalid\";s:14:\"separate_value\";i:0;s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"custom_html\";s:439:\"<div id=\"frm_field_[id]_container\" class=\"frm_form_field form-field [required_class][error_class]\">\r\n    <label for=\"field_[key]\" class=\"frm_primary_label\">[field_name]\r\n        <span class=\"frm_required\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\"frm_description\" id=\"frm_desc_field_[key]\">[description]</div>[/if description]\r\n    [if error]<div class=\"frm_error\">[error]</div>[/if error]\r\n</div>\";s:12:\"custom_field\";s:0:\"\";s:10:\"post_field\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:11:\"exclude_cat\";i:0;s:11:\"placeholder\";s:14:\"CONTACT NUMBER\";}s:7:\"form_id\";s:1:\"6\";s:10:\"created_at\";s:19:\"2018-07-16 11:48:35\";s:9:\"form_name\";s:9:\"Subscribe\";}i:3;O:8:\"stdClass\":13:{s:2:\"id\";s:2:\"71\";s:9:\"field_key\";s:7:\"9jv0r13\";s:4:\"name\";s:7:\"Message\";s:11:\"description\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:13:\"default_value\";s:0:\"\";s:7:\"options\";s:0:\"\";s:11:\"field_order\";s:1:\"6\";s:8:\"required\";s:1:\"1\";s:13:\"field_options\";a:48:{s:3:\"max\";s:1:\"2\";s:5:\"blank\";s:27:\"This field cannot be blank.\";s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";s:1:\"0\";s:5:\"align\";s:5:\"block\";s:11:\"form_select\";s:0:\"\";s:9:\"show_hide\";s:4:\"show\";s:7:\"any_all\";s:3:\"any\";s:10:\"hide_field\";a:0:{}s:15:\"hide_field_cond\";a:1:{i:0;s:2:\"==\";}s:8:\"hide_opt\";a:0:{}s:9:\"read_only\";i:0;s:10:\"admin_only\";s:0:\"\";s:6:\"unique\";i:0;s:10:\"unique_msg\";s:26:\"This value must be unique.\";s:8:\"use_calc\";i:0;s:4:\"calc\";s:0:\"\";s:8:\"calc_dec\";s:0:\"\";s:9:\"calc_type\";s:0:\"\";s:17:\"dyn_default_value\";s:0:\"\";s:8:\"multiple\";i:0;s:7:\"autocom\";i:0;s:10:\"conf_field\";s:0:\"\";s:10:\"conf_input\";s:0:\"\";s:9:\"conf_desc\";s:0:\"\";s:8:\"conf_msg\";s:31:\"The entered values do not match\";s:5:\"other\";i:0;s:18:\"autopopulate_value\";b:0;s:15:\"get_values_form\";s:0:\"\";s:16:\"get_values_field\";s:0:\"\";s:12:\"watch_lookup\";a:1:{i:0;s:0:\"\";}s:21:\"get_most_recent_value\";s:0:\"\";s:26:\"lookup_filter_current_user\";b:0;s:4:\"size\";s:0:\"\";s:5:\"label\";s:4:\"none\";s:18:\"required_indicator\";s:0:\"\";s:7:\"invalid\";s:0:\"\";s:14:\"separate_value\";i:0;s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"custom_html\";s:439:\"<div id=\"frm_field_[id]_container\" class=\"frm_form_field form-field [required_class][error_class]\">\r\n    <label for=\"field_[key]\" class=\"frm_primary_label\">[field_name]\r\n        <span class=\"frm_required\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\"frm_description\" id=\"frm_desc_field_[key]\">[description]</div>[/if description]\r\n    [if error]<div class=\"frm_error\">[error]</div>[/if error]\r\n</div>\";s:12:\"custom_field\";s:0:\"\";s:10:\"post_field\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:11:\"exclude_cat\";i:0;s:11:\"placeholder\";s:7:\"MESSAGE\";}s:7:\"form_id\";s:1:\"6\";s:10:\"created_at\";s:19:\"2018-07-16 11:48:35\";s:9:\"form_name\";s:9:\"Subscribe\";}}','no');
/*!40000 ALTER TABLE `sts_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_postmeta`
--

DROP TABLE IF EXISTS `sts_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_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 DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=10572 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_postmeta`
--

LOCK TABLES `sts_postmeta` WRITE;
/*!40000 ALTER TABLE `sts_postmeta` DISABLE KEYS */;
INSERT INTO `sts_postmeta` VALUES (36,28,'_edit_last','1'),(37,28,'_edit_lock','1562654743:1'),(38,28,'frm_param','entry'),(39,28,'frm_dyncontent',''),(40,28,'frm_type','id'),(41,28,'frm_show_count','all'),(42,28,'frm_form_id','6'),(43,28,'frm_options','a:11:{s:13:\"date_field_id\";s:10:\"created_at\";s:14:\"edate_field_id\";s:0:\"\";s:21:\"repeat_event_field_id\";s:0:\"\";s:21:\"repeat_edate_field_id\";s:0:\"\";s:14:\"before_content\";s:1411:\"<style type=\"text/css\">\r\n.tg  {border-collapse:collapse;border-spacing:0;margin:0px !important;}\r\n.tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:black;}\r\n.tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:black;}\r\n.tg .tg-yw4l{vertical-align:top}\r\n.tg .tg-yw4l{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;}\r\n@media screen and (max-width: 767px) {.tg {width: auto !important;}.tg col {width: auto !important;}.tg-wrap {overflow-x: auto;-webkit-overflow-scrolling: touch;}}</style>\r\n<div class=\"tg-wrap\"><table class=\"tg\">\r\n  <tr>\r\n    <th class=\"tg-yw4l\" style=\"width:22%; margin:0px !important;background-color:#3333333b;\"><strong>Name</strong></th>\r\n    <th class=\"tg-yw4l\" style=\"width:22%; margin:0px !important;background-color:#3333333b;\"><strong>E-Mail</strong></th>\r\n    <th class=\"tg-yw4l\" style=\"width:14%; margin:0px !important;background-color:#3333333b;\"><strong>Contact</strong></th>\r\n    <th class=\"tg-yw4l\" style=\"width:22%; margin:0px !important;background-color:#3333333b;\"><strong>Message</strong></th>\r\n    <th class=\"tg-yw4l\" style=\"width:22%; margin:0px !important;background-color:#3333333b;\"><strong>Date</strong></th>\r\n  </tr>\r\n</table></div>\";s:13:\"after_content\";s:0:\"\";s:5:\"limit\";s:0:\"\";s:9:\"page_size\";s:0:\"\";s:8:\"order_by\";a:1:{i:1;s:2:\"id\";}s:5:\"order\";a:1:{i:1;s:3:\"ASC\";}s:9:\"empty_msg\";s:16:\"No Entries Found\";}'),(44,30,'_wp_old_slug','6_email_57-2'),(48,33,'_edit_last','1'),(49,33,'_edit_lock','1531741985:1'),(52,33,'_wp_page_template','page-template-blank.php'),(53,33,'_et_pb_post_hide_nav','default'),(54,33,'_et_pb_page_layout','et_right_sidebar'),(55,33,'_et_pb_side_nav','off'),(56,33,'_et_pb_use_builder','on'),(57,33,'_et_builder_version','BB|Divi|3.9'),(58,33,'_et_pb_show_page_creation','off'),(59,33,'_et_pb_ab_stats_refresh_interval','hourly'),(60,33,'_et_pb_old_content',''),(61,33,'_et_pb_enable_shortcode_tracking',''),(62,33,'_et_pb_custom_css',''),(63,36,'_edit_last','2'),(64,36,'_edit_lock','1578930153:1'),(65,36,'_wp_page_template','page-template-blank.php'),(67,36,'_et_pb_page_layout','et_right_sidebar'),(68,36,'_et_pb_side_nav','off'),(69,36,'_et_pb_use_builder','on'),(70,36,'_et_builder_version','BB|Divi|3.11.1'),(71,36,'_et_pb_show_page_creation','off'),(72,36,'_et_pb_ab_stats_refresh_interval','hourly'),(73,36,'_et_pb_old_content',''),(74,36,'_et_pb_enable_shortcode_tracking',''),(75,36,'_et_pb_custom_css',''),(77,43,'_wp_attached_file','2018/07/favicon.png'),(78,43,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:19:\"2018/07/favicon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:15:45\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:1:\"0\";}'),(81,47,'_wp_attached_file','2018/07/Stadsig_Website_favicon.png'),(82,47,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:101;s:6:\"height\";i:101;s:4:\"file\";s:35:\"2018/07/Stadsig_Website_favicon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:15:25\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"48.56\";}'),(87,49,'_wp_attached_file','Stadsig_Website_favicon1.png'),(88,49,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:28:\"Stadsig_Website_favicon1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Stadsig_Website_favicon1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Stadsig_Website_favicon1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"Stadsig_Website_favicon1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"Stadsig_Website_favicon1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"Stadsig_Website_favicon1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"Stadsig_Website_favicon1-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:14:57\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"79.58\";}'),(89,50,'_wp_attached_file','cropped-Stadsig_Website_favicon1.png'),(90,50,'_wp_attachment_context','site-icon'),(91,50,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:36:\"cropped-Stadsig_Website_favicon1.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"cropped-Stadsig_Website_favicon1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"cropped-Stadsig_Website_favicon1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"cropped-Stadsig_Website_favicon1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"cropped-Stadsig_Website_favicon1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"cropped-Stadsig_Website_favicon1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"cropped-Stadsig_Website_favicon1-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:44:\"cropped-Stadsig_Website_favicon1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:44:\"cropped-Stadsig_Website_favicon1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:44:\"cropped-Stadsig_Website_favicon1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:42:\"cropped-Stadsig_Website_favicon1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:14:32\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"78.2\";}'),(115,58,'_edit_last','1'),(116,58,'_edit_lock','1583402239:1'),(117,58,'_wp_page_template','default'),(119,58,'_et_pb_page_layout','et_right_sidebar'),(120,58,'_et_pb_side_nav','off'),(121,58,'_et_pb_use_builder','on'),(122,58,'_et_builder_version','BB|Divi|3.26.4'),(125,58,'_et_pb_old_content',''),(126,58,'_et_pb_enable_shortcode_tracking',''),(127,58,'_et_pb_custom_css','.et_pb_post_extra.el_dbe_block_extended .post-categories a {\n    display: none;\n}\n.et_pb_post_extra.el_dbe_block_extended {\n    display: block;\n    position: relative;\n    -webkit-box-shadow: 0 0px 0px rgba(0,0,0,0);\n    -ms-box-shadow: 0 0px 0px rgba(0,0,0,0);\n    box-shadow: 0 0px 0px rgba(0,0,0,0);\n    background: #fff;\n    border: 1px solid #ffffffba;\n    border-radius: 0px;\n    width: 100%;\n    float: left;\n    margin-bottom: 0px;\n    padding-bottom: 0px;\n    overflow: hidden;\n    -webkit-transform: translateY(0) translateZ(0) rotateX(0);\n    transform: translateY(0) translateZ(0) rotateX(0);\n}\n\n\n@media only screen and ( max-width: 1100px ) {\n.elegantdesign .et_pb_column .et_pb_blog_grid[data-columns]::before { content: \'2 .column.size-1of2\' !important;\n}\n.elegantdesign .et_pb_column .column.size-1of2 {\nwidth:44% !important;\nmargin-right:0%;\n}\n}\n@media (min-width: 1101px){\n.et_pb_gutters3 .et_pb_column_4_4 .et_pb_blog_grid .column.size-1of3, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_blog_grid .column.size-1of3 {\n    width: 32%;\n    margin-right: 2%;\n}\n}\nbody .et_pb_bg_layout_light .et_pb_post p, body .et_pb_bg_layout_dark .et_pb_post p {\n    font-size: 17px;\n}\n.et_pb_blog_0 .et_pb_post .post-meta {\n    font-size: 0px !important;\n  height:0px !important\n}\n.et_pb_blog_0 .et_pb_post .entry-title {\n    min-height: 66px!important;\n}\n\n@media (max-width: 980px){\n.et_pb_gutters1 .et_pb_column .et_pb_blog_grid .column.size-1of2, .et_pb_gutters1 .et_pb_column .et_pb_widget:nth-child(n) {\n    width: 46%!important;\n    margin: 0 2%!important;\n}\n}\n\n@media (max-width: 980px){\n.et_pb_gutters1 .et_pb_column .et_pb_blog_grid .column.size-1of2, .et_pb_gutters1 .et_pb_column .et_pb_widget:nth-child(n) {\n    width: 46%!important;\n    margin: 0 2%!important;\n}\n}\n/*Underline all hyperlinks*/\na {\ntext-decoration:underline;\n}'),(128,58,'_et_pb_gutter_width','3'),(318,1345,'_menu_item_type','post_type'),(319,1345,'_menu_item_menu_item_parent','0'),(320,1345,'_menu_item_object_id','58'),(321,1345,'_menu_item_object','page'),(322,1345,'_menu_item_target',''),(323,1345,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(324,1345,'_menu_item_xfn',''),(325,1345,'_menu_item_url',''),(390,58,'meta-mhmm-header','215035'),(391,58,'meta-mhmm-style','mhmm-sticky-top'),(392,58,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";s:15:\"et-gf-open-sans\";s:80:\"Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";}s:6:\"subset\";a:8:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:5:\"greek\";i:4;s:9:\"greek-ext\";i:5;s:10:\"vietnamese\";i:6;s:8:\"cyrillic\";i:7;s:12:\"cyrillic-ext\";}}'),(393,1355,'_wp_attached_file','Stadsig_Logo.png'),(394,1355,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:982;s:6:\"height\";i:565;s:4:\"file\";s:16:\"Stadsig_Logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Stadsig_Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Stadsig_Logo-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Stadsig_Logo-768x442.png\";s:5:\"width\";i:768;s:6:\"height\";i:442;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_Logo-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_Logo-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_Logo-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Stadsig_Logo-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:13:48\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"73.27\";}'),(649,1460,'_et_pb_built_for_post_type','page'),(650,1460,'_edit_lock','1578930924:1'),(651,1460,'_edit_last','1'),(652,1460,'meta-mhmm-header','default'),(653,1460,'meta-mhmm-style','default'),(654,1460,'_et_pb_use_builder','on'),(655,1460,'_et_builder_version','BB|Divi|3.10.1'),(656,1460,'_et_pb_ab_stats_refresh_interval','hourly'),(657,1460,'_et_pb_old_content',''),(658,1460,'_et_pb_enable_shortcode_tracking',''),(659,1460,'_et_pb_custom_css',''),(660,1460,'_et_pb_gutter_width','3'),(661,1463,'_et_pb_built_for_post_type','page'),(662,1463,'_edit_lock','1539257799:1'),(663,1463,'_edit_last','1'),(664,1463,'meta-mhmm-header','disabled'),(665,1463,'meta-mhmm-style','default'),(666,1463,'_et_pb_use_builder','on'),(667,1463,'_et_builder_version','BB|Divi|3.15'),(668,1463,'_et_pb_ab_stats_refresh_interval','hourly'),(669,1463,'_et_pb_old_content',''),(670,1463,'_et_pb_enable_shortcode_tracking',''),(671,1463,'_et_pb_custom_css',''),(672,1463,'_et_pb_gutter_width','3'),(774,58,'_et_pb_built_for_post_type','page'),(779,58,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"58\" /]'),(977,214969,'_edit_last','1'),(978,214969,'_edit_lock','1536721938:1'),(993,214969,'meta-mhmm-header','1463'),(994,214969,'meta-mhmm-style','mhmm-sticky-top'),(995,214969,'_et_post_bg_color','#ffffff'),(996,214969,'_et_post_bg_layout','light'),(997,214969,'_et_pb_show_title','off'),(998,214969,'_et_pb_post_hide_nav','default'),(999,214969,'_et_pb_page_layout','et_full_width_page'),(1000,214969,'_et_pb_side_nav','off'),(1001,214969,'_et_pb_use_builder','on'),(1002,214969,'_et_builder_version','BB|Divi|3.14'),(1003,214969,'_et_pb_show_page_creation','off'),(1004,214969,'_et_pb_ab_stats_refresh_interval','hourly'),(1005,214969,'_et_pb_old_content',''),(1006,214969,'_et_pb_enable_shortcode_tracking',''),(1007,214969,'_et_pb_custom_css',''),(1008,214969,'_et_pb_gutter_width','3'),(1013,214969,'_et_pb_built_for_post_type','page'),(1016,214969,'_et_pb_use_ab_testing','off'),(1018,214969,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"214969\" /]'),(1020,214983,'_edit_last','1'),(1021,214983,'_edit_lock','1536742160:1'),(1025,214983,'meta-mhmm-header','default'),(1026,214983,'meta-mhmm-style','default'),(1027,214983,'_et_post_bg_color','#ffffff'),(1028,214983,'_et_post_bg_layout','light'),(1029,214983,'_et_pb_show_title','off'),(1030,214983,'_et_pb_post_hide_nav','default'),(1031,214983,'_et_pb_page_layout','et_full_width_page'),(1032,214983,'_et_pb_side_nav','off'),(1033,214983,'_et_pb_use_builder','on'),(1034,214983,'_et_builder_version','BB|Divi|3.10.1'),(1035,214983,'_et_pb_show_page_creation','off'),(1036,214983,'_et_pb_ab_stats_refresh_interval','hourly'),(1037,214983,'_et_pb_old_content',''),(1038,214983,'_et_pb_enable_shortcode_tracking',''),(1039,214983,'_et_pb_custom_css',''),(1040,214983,'_et_pb_gutter_width','3'),(1043,214985,'_edit_last','1'),(1044,214985,'_edit_lock','1536725532:1'),(1048,214985,'meta-mhmm-header','1463'),(1049,214985,'meta-mhmm-style','mhmm-sticky-top'),(1050,214985,'_et_post_bg_color','#ffffff'),(1051,214985,'_et_post_bg_layout','light'),(1052,214985,'_et_pb_show_title','off'),(1053,214985,'_et_pb_post_hide_nav','default'),(1054,214985,'_et_pb_page_layout','et_full_width_page'),(1055,214985,'_et_pb_side_nav','off'),(1056,214985,'_et_pb_use_builder','on'),(1057,214985,'_et_builder_version','BB|Divi|3.14'),(1058,214985,'_et_pb_show_page_creation','off'),(1059,214985,'_et_pb_ab_stats_refresh_interval','hourly'),(1060,214985,'_et_pb_old_content',''),(1061,214985,'_et_pb_enable_shortcode_tracking',''),(1062,214985,'_et_pb_custom_css',''),(1063,214985,'_et_pb_gutter_width','3'),(1081,1463,'_et_pb_use_ab_testing','off'),(1083,1463,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1463\" /]'),(1084,1463,'_et_pb_show_page_creation','off'),(1104,215008,'_et_pb_built_for_post_type','page'),(1112,215020,'_wp_attached_file','Footer_Copyrite.png'),(1113,215020,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:645;s:6:\"height\";i:256;s:4:\"file\";s:19:\"Footer_Copyrite.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Footer_Copyrite-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Footer_Copyrite-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Footer_Copyrite-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Footer_Copyrite-400x256.png\";s:5:\"width\";i:400;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Footer_Copyrite-510x256.png\";s:5:\"width\";i:510;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Footer_Copyrite-400x256.png\";s:5:\"width\";i:400;s:6:\"height\";i:256;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:12:24\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"77.57\";}'),(1115,215035,'_et_pb_built_for_post_type','page'),(1116,215035,'_edit_lock','1579354982:1'),(1117,215035,'_edit_last','1'),(1118,215035,'meta-mhmm-header','215035'),(1119,215035,'meta-mhmm-style','default'),(1120,215035,'_et_pb_use_builder','on'),(1121,215035,'_et_builder_version','BB|Divi|3.15'),(1122,215035,'_et_pb_ab_stats_refresh_interval','hourly'),(1123,215035,'_et_pb_old_content',''),(1124,215035,'_et_pb_enable_shortcode_tracking',''),(1125,215035,'_et_pb_custom_css',''),(1126,215035,'_et_pb_gutter_width','3'),(1127,215035,'_et_pb_use_ab_testing','off'),(1129,215035,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"215035\" /]'),(1130,215035,'_et_pb_show_page_creation','off'),(1132,215056,'_wp_attached_file','Stadsig_breathe.png'),(1133,215056,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:200;s:6:\"height\";i:113;s:4:\"file\";s:19:\"Stadsig_breathe.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Stadsig_breathe-150x113.png\";s:5:\"width\";i:150;s:6:\"height\";i:113;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:12:02\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"64.62\";}'),(1134,215058,'_wp_attached_file','Stadsig_aromas.png'),(1135,215058,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:200;s:6:\"height\";i:113;s:4:\"file\";s:18:\"Stadsig_aromas.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Stadsig_aromas-150x113.png\";s:5:\"width\";i:150;s:6:\"height\";i:113;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:11:39\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"65.04\";}'),(1136,215059,'_wp_attached_file','Stadsig_sentinels.png'),(1137,215059,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:200;s:6:\"height\";i:113;s:4:\"file\";s:21:\"Stadsig_sentinels.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Stadsig_sentinels-150x113.png\";s:5:\"width\";i:150;s:6:\"height\";i:113;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:11:15\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"65.1\";}'),(1138,215060,'_wp_attached_file','Stadsig_savour.png'),(1139,215060,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:200;s:6:\"height\";i:113;s:4:\"file\";s:18:\"Stadsig_savour.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Stadsig_savour-150x113.png\";s:5:\"width\";i:150;s:6:\"height\";i:113;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:10:50\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"68.18\";}'),(1140,215061,'_wp_attached_file','Stadsig_nature.png'),(1141,215061,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:200;s:6:\"height\";i:113;s:4:\"file\";s:18:\"Stadsig_nature.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Stadsig_nature-150x113.png\";s:5:\"width\";i:150;s:6:\"height\";i:113;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:10:15\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"72.44\";}'),(1163,215071,'_wp_attached_file','Stadsig_SS.png'),(1164,215071,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:37;s:6:\"height\";i:37;s:4:\"file\";s:14:\"Stadsig_SS.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:09:31\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"18.51\";}'),(1165,215072,'_wp_attached_file','Stadsig_copyright.png'),(1166,215072,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:92;s:6:\"height\";i:36;s:4:\"file\";s:21:\"Stadsig_copyright.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:09:03\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"40.33\";}'),(1199,214969,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:35:\"Tajawal:200,300,400,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(1286,215151,'_wp_attached_file','Stadsig_PamGoldingLogo-1.png'),(1287,215151,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:288;s:6:\"height\";i:81;s:4:\"file\";s:28:\"Stadsig_PamGoldingLogo-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Stadsig_PamGoldingLogo-1-150x81.png\";s:5:\"width\";i:150;s:6:\"height\";i:81;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:08:35\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"49.1\";}'),(1288,215152,'_wp_attached_file','Stadsig_AtvantageLogo-1.png'),(1289,215152,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:288;s:6:\"height\";i:81;s:4:\"file\";s:27:\"Stadsig_AtvantageLogo-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Stadsig_AtvantageLogo-1-150x81.png\";s:5:\"width\";i:150;s:6:\"height\";i:81;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:08:08\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"43.19\";}'),(1290,215154,'_wp_attached_file','Stadsig_DMLogo-1.png'),(1291,215154,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:288;s:6:\"height\";i:81;s:4:\"file\";s:20:\"Stadsig_DMLogo-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Stadsig_DMLogo-1-150x81.png\";s:5:\"width\";i:150;s:6:\"height\";i:81;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:07:44\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"46.33\";}'),(1468,223296,'_wp_attached_file','Stadsig_DMLogo_Atvatage.png'),(1469,223296,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:714;s:6:\"height\";i:83;s:4:\"file\";s:27:\"Stadsig_DMLogo_Atvatage.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Stadsig_DMLogo_Atvatage-150x83.png\";s:5:\"width\";i:150;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Stadsig_DMLogo_Atvatage-300x35.png\";s:5:\"width\";i:300;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Stadsig_DMLogo_Atvatage-400x83.png\";s:5:\"width\";i:400;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Stadsig_DMLogo_Atvatage-400x83.png\";s:5:\"width\";i:400;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Stadsig_DMLogo_Atvatage-510x83.png\";s:5:\"width\";i:510;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Stadsig_DMLogo_Atvatage-400x83.png\";s:5:\"width\";i:400;s:6:\"height\";i:83;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:07:17\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"59.09\";}'),(1512,223310,'_et_pb_built_for_post_type','page'),(1513,223311,'_et_pb_built_for_post_type','page'),(1515,223312,'_et_pb_built_for_post_type','page'),(1516,223313,'_et_pb_built_for_post_type','page'),(1517,223314,'_et_pb_built_for_post_type','page'),(1518,223315,'_et_pb_built_for_post_type','page'),(1530,223327,'_et_pb_built_for_post_type','page'),(1532,223328,'_et_pb_built_for_post_type','page'),(1538,223333,'_edit_last','1'),(1539,223333,'_edit_lock','1583402674:1'),(1544,223333,'_wp_page_template','default'),(1546,223333,'meta-mhmm-header','215035'),(1547,223333,'meta-mhmm-style','mhmm-sticky-top'),(1548,223333,'_et_pb_page_layout','et_right_sidebar'),(1549,223333,'_et_pb_side_nav','off'),(1550,223333,'_et_pb_use_builder','on'),(1551,223333,'_et_builder_version','VB|Divi|3.25.3'),(1552,223333,'_et_pb_show_page_creation','off'),(1555,223333,'_et_pb_old_content',''),(1556,223333,'_et_pb_enable_shortcode_tracking',''),(1557,223333,'_et_pb_custom_css','@media (max-width: 980px){\r\n.et_pb_gutters1 .et_pb_column .et_pb_blog_grid .column.size-1of2, .et_pb_gutters1 .et_pb_column .et_pb_widget:nth-child(n) {\r\n    width: 46%!important;\r\n    margin: 0 2%!important;\r\n}\r\n}'),(1558,223333,'_et_pb_gutter_width','3'),(1563,223333,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";s:15:\"et-gf-open-sans\";s:80:\"Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";}s:6:\"subset\";a:8:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:5:\"greek\";i:4;s:9:\"greek-ext\";i:5;s:10:\"vietnamese\";i:6;s:8:\"cyrillic\";i:7;s:12:\"cyrillic-ext\";}}'),(1569,223333,'_et_pb_built_for_post_type','page'),(1573,223333,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"223333\" /]'),(1577,223340,'_edit_last','1'),(1578,223340,'_edit_lock','1583402844:1'),(1581,223340,'_wp_page_template','default'),(1583,223340,'meta-mhmm-header','215035'),(1584,223340,'meta-mhmm-style','mhmm-sticky-top'),(1585,223340,'_et_pb_page_layout','et_right_sidebar'),(1586,223340,'_et_pb_side_nav','off'),(1587,223340,'_et_pb_use_builder','on'),(1588,223340,'_et_builder_version','VB|Divi|3.25.3'),(1592,223340,'_et_pb_old_content',''),(1593,223340,'_et_pb_enable_shortcode_tracking',''),(1594,223340,'_et_pb_custom_css','@media (max-width: 980px){\n.et_pb_gutters1 .et_pb_column .et_pb_blog_grid .column.size-1of2, .et_pb_gutters1 .et_pb_column .et_pb_widget:nth-child(n) {\n    width: 46%!important;\n    margin: 0 2%!important;\n}\n}\n\na {\ntext-decoration:underline;\n\n}\n\n.page.et_pb_pagebuilder_layout #main-content {\n    background-color: rgba(255,255,255,0.8);\n}'),(1595,223340,'_et_pb_gutter_width','3'),(1598,223340,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";s:15:\"et-gf-open-sans\";s:80:\"Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";}s:6:\"subset\";a:8:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:5:\"greek\";i:4;s:9:\"greek-ext\";i:5;s:10:\"vietnamese\";i:6;s:8:\"cyrillic\";i:7;s:12:\"cyrillic-ext\";}}'),(1611,223346,'_edit_last','1'),(1612,223346,'_edit_lock','1583402964:1'),(1614,223346,'_wp_page_template','default'),(1616,223346,'meta-mhmm-header','215035'),(1617,223346,'meta-mhmm-style','mhmm-sticky-top'),(1618,223346,'_et_pb_page_layout','et_right_sidebar'),(1619,223346,'_et_pb_side_nav','off'),(1620,223346,'_et_pb_use_builder','on'),(1621,223346,'_et_builder_version','BB|Divi|3.29.3'),(1624,223346,'_et_pb_old_content',''),(1625,223346,'_et_pb_enable_shortcode_tracking',''),(1626,223346,'_et_pb_custom_css','@media (max-width: 980px){\r\n.et_pb_gutters1 .et_pb_column .et_pb_blog_grid .column.size-1of2, .et_pb_gutters1 .et_pb_column .et_pb_widget:nth-child(n) {\r\n    width: 46%!important;\r\n    margin: 0 2%!important;\r\n}\r\n}\r\n\r\n.et_pb_tabs_controls li a {\r\n    padding: 4px 4px 4px;\r\n}\r\n\r\n@media screen and (max-width:900px)\r\n{\r\n.et_pb_row_4 {\r\nbackground-size: contain!important;\r\nheight: 250px !important;\r\n}\r\n\r\n}\r\n\r\n@media screen and (max-width:479px)\r\n{\r\n.et_pb_row_4 {\r\nbackground-size: contain!important;\r\nheight: 110px !important;\r\n}\r\n}'),(1627,223346,'_et_pb_gutter_width','3'),(1632,223346,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";s:15:\"et-gf-open-sans\";s:80:\"Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";}s:6:\"subset\";a:8:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:5:\"greek\";i:4;s:9:\"greek-ext\";i:5;s:10:\"vietnamese\";i:6;s:8:\"cyrillic\";i:7;s:12:\"cyrillic-ext\";}}'),(1633,223349,'_edit_last','1'),(1634,223349,'_edit_lock','1583403103:1'),(1636,223349,'_wp_page_template','default'),(1638,223349,'meta-mhmm-header','215035'),(1639,223349,'meta-mhmm-style','mhmm-sticky-top'),(1640,223349,'_et_pb_page_layout','et_right_sidebar'),(1641,223349,'_et_pb_side_nav','off'),(1642,223349,'_et_pb_use_builder','on'),(1643,223349,'_et_builder_version','VB|Divi|3.25.3'),(1644,223349,'_et_pb_show_page_creation','off'),(1647,223349,'_et_pb_old_content',''),(1648,223349,'_et_pb_enable_shortcode_tracking',''),(1649,223349,'_et_pb_custom_css','@media (max-width: 980px){\r\n.et_pb_gutters1 .et_pb_column .et_pb_blog_grid .column.size-1of2, .et_pb_gutters1 .et_pb_column .et_pb_widget:nth-child(n) {\r\n    width: 46%!important;\r\n    margin: 0 2%!important;\r\n}\r\n}'),(1650,223349,'_et_pb_gutter_width','3'),(1653,223349,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";s:15:\"et-gf-open-sans\";s:80:\"Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";}s:6:\"subset\";a:8:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:5:\"greek\";i:4;s:9:\"greek-ext\";i:5;s:10:\"vietnamese\";i:6;s:8:\"cyrillic\";i:7;s:12:\"cyrillic-ext\";}}'),(1657,223349,'_et_pb_built_for_post_type','page'),(1661,223349,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"223349\" /]'),(1665,223355,'_edit_last','1'),(1666,223355,'_edit_lock','1579265524:1'),(1674,223355,'_wp_page_template','default'),(1676,223355,'meta-mhmm-header','215035'),(1677,223355,'meta-mhmm-style','mhmm-sticky-top'),(1678,223355,'_et_pb_page_layout','et_right_sidebar'),(1679,223355,'_et_pb_side_nav','off'),(1680,223355,'_et_pb_use_builder','on'),(1681,223355,'_et_builder_version','BB|Divi|3.26.6'),(1682,223355,'_et_pb_show_page_creation','off'),(1685,223355,'_et_pb_old_content','[et_pb_section bb_built=\"1\" admin_label=\"Hero Main Image - All Devices\" module_class=\"section\" _builder_version=\"3.10.1\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Hero Image - All Devices\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_phone=\"76px||345px|\" custom_margin=\"2px||0px|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.10.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HeaderPlaceholder1920.jpg\"][et_pb_column type=\"4_4\"][et_pb_divider divider_style=\"none\" height=\"54px\" _builder_version=\"3.10.1\" custom_padding=\"11px||11px||true\"]\r\n\r\n<p> </p>\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Senses Image - Tablet/Phone\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" _builder_version=\"3.10.1\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Image\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px||2px||false|false\" _builder_version=\"3.10.1\"][et_pb_column type=\"4_4\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_breathe.png\" align=\"center\" _builder_version=\"3.10.2\"]\r\n\r\n<p> </p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"H1 Caption - All Devices\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" _builder_version=\"3.10.1\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"H1 Caption\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px||2px||false|false\" _builder_version=\"3.10.1\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"elevate your senses\" _builder_version=\"3.10.2\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#575759\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]\r\n\r\n<h1 style=\"text-align: center;\">elevate your senses</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.0.83\" custom_padding=\"1px||15px||false|false\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Text Area\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0||10px||false|false\" _builder_version=\"3.10.1\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.10.2\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_last_edited=\"on|desktop\" custom_padding=\"|33%||33%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]\r\n\r\n<p style=\"text-align: center;\">At the foot of the Groenberg mountain, in the picturesque Bovlei valley, nestles the tranquil town of Wellington. On the urban edge of town, towards the famed Bainskloof Pass lies Stadsig Private Country Estate. The majestic backdrop of the Hawequa Mountains are silent sentinels which allow you to immerse yourself in the stillness, breathe and experience a sensory lifestyle - the perfect balance of urban convenience and outdoor living.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Desktop/Tablet\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" _builder_version=\"3.10.2\" parallax=\"on\" parallax_method=\"off\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" prev_background_color=\"#000000\" next_background_color=\"#000000\" global_module=\"223327\"][et_pb_row admin_label=\"Contact Desktop/Tablet\" global_parent=\"223327\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"on|tablet\" module_class=\"element\" _builder_version=\"3.10.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_contactParalax1920.jpg\" parallax=\"on\" parallax_method=\"off\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" module_alignment=\"center\" custom_margin_last_edited=\"on|tablet\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Contact Us\" global_parent=\"223327\" _builder_version=\"3.10.1\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\"]\r\n\r\n<h2 style=\"text-align: center;\">get in touch</h2>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Form\" global_parent=\"223327\" _builder_version=\"3.9\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<p style=\"text-align: center;\">[formidable id=\"6\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Phone\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" _builder_version=\"3.10.2\" parallax=\"on\" parallax_method=\"off\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" prev_background_color=\"#000000\" next_background_color=\"#000000\" global_module=\"223328\"][et_pb_row admin_label=\"Contact Phone\" global_parent=\"223328\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"on|tablet\" module_class=\"element\" _builder_version=\"3.10.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_contactParalax1920.jpg\" parallax=\"on\" parallax_method=\"off\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" module_alignment=\"center\" custom_margin_last_edited=\"on|tablet\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Contact Us\" global_parent=\"223328\" disabled_on=\"off|on|on\" _builder_version=\"3.10.1\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<h2 style=\"text-align: center;\">get in touch</h2>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Form\" global_parent=\"223328\" _builder_version=\"3.9\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<p style=\"text-align: center;\">[formidable id=\"6\"]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Footer - Desktop\" disabled_on=\"off|off|off\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" module_id=\"ssfoot-desk\" prev_background_color=\"#000000\" next_background_color=\"#000000\" global_module=\"223313\"][et_pb_row admin_label=\"Footer - Desktop\" global_parent=\"223313\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" padding_top_1=\"22px\" _builder_version=\"3.10.1\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Sales\" global_parent=\"223313\" _builder_version=\"3.10.2\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]\r\n\r\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 762 1022\r\nErika Odendaal 082 412 6964</p>\r\n\r\n[/et_pb_text][et_pb_code global_parent=\"223313\" _builder_version=\"3.10.1\"]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223313\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" _builder_version=\"3.10.1\" max_width=\"80%\"]\r\n\r\n \r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Atvantage\" global_parent=\"223313\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" _builder_version=\"3.10.1\" max_width=\"93%\" module_alignment=\"center\"]\r\n\r\n \r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Dennis Moss\" global_parent=\"223313\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" _builder_version=\"3.10.1\"]\r\n\r\n \r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Footer - Tablet\" disabled_on=\"off|off|off\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" module_id=\"ssfoot-tab\" prev_background_color=\"#000000\" next_background_color=\"#000000\" global_module=\"223314\"][et_pb_row admin_label=\"Footer - Tablet\" global_parent=\"223314\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" padding_top_1=\"22px\" _builder_version=\"3.10.2\" module_alignment=\"center\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Sales\" global_parent=\"223314\" _builder_version=\"3.10.2\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]\r\n\r\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 762 1022\r\nErika Odendaal 082 412 6964</p>\r\n\r\n[/et_pb_text][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" _builder_version=\"3.10.1\"]\r\n\r\n \r\n\r\n[/et_pb_image][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" _builder_version=\"3.10.2\" disabled_on=\"off||\" disabled=\"off\"]\r\n\r\n \r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Footer - Tablet\" global_parent=\"223314\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" padding_top_1=\"22px\" _builder_version=\"3.10.2\" module_class_1=\"columnd size-lof2\" module_class_2=\"columnd size-lof2\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Atvantage\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" _builder_version=\"3.10.1\" max_width=\"93%\" module_alignment=\"center\"]\r\n\r\n \r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Dennis Moss\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" _builder_version=\"3.10.1\"]\r\n\r\n \r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Footer - Phone\" disabled_on=\"off|off|off\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" locked=\"off\" module_id=\"ssfoot-phone\" prev_background_color=\"#000000\" next_background_color=\"#a6bf96\" global_module=\"223315\"][et_pb_row admin_label=\"Footer - Phobe\" global_parent=\"223315\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" padding_top_1=\"22px\" _builder_version=\"3.10.1\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Sales\" global_parent=\"223315\" _builder_version=\"3.10.2\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]\r\n\r\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 762 1022\r\nErika Odendaal 082 412 6964</p>\r\n\r\n[/et_pb_text][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223315\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" _builder_version=\"3.10.2\" align=\"center\"]\r\n\r\n \r\n\r\n[/et_pb_image][et_pb_image admin_label=\"Atvantage\" global_parent=\"223315\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" _builder_version=\"3.10.2\" module_alignment=\"center\" align=\"center\"]\r\n\r\n \r\n\r\n[/et_pb_image][et_pb_image admin_label=\"Dennis Moss\" global_parent=\"223315\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" _builder_version=\"3.10.2\" align=\"center\"]\r\n\r\n \r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Bottom Footer - Desktop\" disabled_on=\"off|off|off\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\" disabled=\"off\" global_module=\"223310\"][et_pb_row admin_label=\"Bottom Footer - Desktop\" global_parent=\"223310\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"15px|0px|11px|0px|false|false\" _builder_version=\"3.10.1\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Logo\" global_parent=\"223310\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" _builder_version=\"3.10.1\" module_alignment=\"right\"]\r\n\r\n \r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Copyright\" global_parent=\"223310\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_copyright.png\" align=\"right\" _builder_version=\"3.10.1\" module_alignment=\"center\"]\r\n\r\n \r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Bottom Footer - Tablet\" disabled_on=\"off|off|off\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" prev_background_color=\"#000000\" next_background_color=\"#000000\" disabled=\"off\" global_module=\"223311\"][et_pb_row admin_label=\"Bottom Footer - Phone\" global_parent=\"223311\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"15px|0px|11px|0px|false|false\" _builder_version=\"3.10.1\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"223311\" _builder_version=\"3.10.1\"]\r\n\r\n<img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Bottom Footer - Phone\" disabled_on=\"off|off|off\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" prev_background_color=\"#000000\" disabled=\"off\" global_module=\"223312\"][et_pb_row admin_label=\"Bottom Footer - Phone\" global_parent=\"223312\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"15px|0px|11px|0px|false|false\" _builder_version=\"3.10.1\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"223312\" _builder_version=\"3.10.1\"]\r\n\r\n<img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]'),(1686,223355,'_et_pb_enable_shortcode_tracking',''),(1687,223355,'_et_pb_custom_css','@media (max-width: 980px){\r\n.et_pb_gutters1 .et_pb_column .et_pb_blog_grid .column.size-1of2, .et_pb_gutters1 .et_pb_column .et_pb_widget:nth-child(n) {\r\n    width: 46%!important;\r\n    margin: 0 2%!important;\r\n}\r\n}'),(1688,223355,'_et_pb_gutter_width','3'),(1691,223355,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";s:15:\"et-gf-open-sans\";s:80:\"Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";}s:6:\"subset\";a:8:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:5:\"greek\";i:4;s:9:\"greek-ext\";i:5;s:10:\"vietnamese\";i:6;s:8:\"cyrillic\";i:7;s:12:\"cyrillic-ext\";}}'),(1696,223355,'_et_pb_built_for_post_type','page'),(1700,223355,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"223355\" /]'),(1701,223363,'_edit_last','1'),(1702,223363,'_edit_lock','1583403321:1'),(1704,223363,'_wp_page_template','default'),(1706,223363,'meta-mhmm-header','215035'),(1707,223363,'meta-mhmm-style','mhmm-sticky-top'),(1708,223363,'_et_pb_page_layout','et_right_sidebar'),(1709,223363,'_et_pb_side_nav','off'),(1710,223363,'_et_pb_use_builder','on'),(1711,223363,'_et_builder_version','VB|Divi|3.25.3'),(1712,223363,'_et_pb_show_page_creation','off'),(1715,223363,'_et_pb_old_content',''),(1716,223363,'_et_pb_enable_shortcode_tracking',''),(1717,223363,'_et_pb_custom_css','@media (max-width: 980px){\r\n.et_pb_gutters1 .et_pb_column .et_pb_blog_grid .column.size-1of2, .et_pb_gutters1 .et_pb_column .et_pb_widget:nth-child(n) {\r\n    width: 46%!important;\r\n    margin: 0 2%!important;\r\n}\r\n}'),(1718,223363,'_et_pb_gutter_width','3'),(1721,223363,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(1725,223363,'_et_pb_built_for_post_type','page'),(1729,223363,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"223363\" /]'),(1732,223369,'_edit_last','1'),(1733,223369,'_edit_lock','1583403504:1'),(1735,223369,'_wp_page_template','default'),(1737,223369,'meta-mhmm-header','215035'),(1738,223369,'meta-mhmm-style','mhmm-sticky-top'),(1739,223369,'_et_pb_page_layout','et_right_sidebar'),(1740,223369,'_et_pb_side_nav','off'),(1741,223369,'_et_pb_use_builder','on'),(1742,223369,'_et_builder_version','VB|Divi|3.25.3'),(1743,223369,'_et_pb_show_page_creation','off'),(1746,223369,'_et_pb_old_content',''),(1747,223369,'_et_pb_enable_shortcode_tracking',''),(1748,223369,'_et_pb_custom_css','@media (max-width: 980px){\r\n.et_pb_gutters1 .et_pb_column .et_pb_blog_grid .column.size-1of2, .et_pb_gutters1 .et_pb_column .et_pb_widget:nth-child(n) {\r\n    width: 46%!important;\r\n    margin: 0 2%!important;\r\n}\r\n}'),(1749,223369,'_et_pb_gutter_width','3'),(1752,223369,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";s:15:\"et-gf-open-sans\";s:80:\"Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";}s:6:\"subset\";a:8:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:5:\"greek\";i:4;s:9:\"greek-ext\";i:5;s:10:\"vietnamese\";i:6;s:8:\"cyrillic\";i:7;s:12:\"cyrillic-ext\";}}'),(1756,223373,'_menu_item_type','post_type'),(1757,223373,'_menu_item_menu_item_parent','0'),(1758,223373,'_menu_item_object_id','223333'),(1759,223373,'_menu_item_object','page'),(1760,223373,'_menu_item_target',''),(1761,223373,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1762,223373,'_menu_item_xfn',''),(1763,223373,'_menu_item_url',''),(1765,223374,'_menu_item_type','post_type'),(1766,223374,'_menu_item_menu_item_parent','0'),(1767,223374,'_menu_item_object_id','223369'),(1768,223374,'_menu_item_object','page'),(1769,223374,'_menu_item_target',''),(1770,223374,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1771,223374,'_menu_item_xfn',''),(1772,223374,'_menu_item_url',''),(1774,223375,'_menu_item_type','post_type'),(1775,223375,'_menu_item_menu_item_parent','0'),(1776,223375,'_menu_item_object_id','223363'),(1777,223375,'_menu_item_object','page'),(1778,223375,'_menu_item_target',''),(1779,223375,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1780,223375,'_menu_item_xfn',''),(1781,223375,'_menu_item_url',''),(1792,223377,'_menu_item_type','post_type'),(1793,223377,'_menu_item_menu_item_parent','0'),(1794,223377,'_menu_item_object_id','223349'),(1795,223377,'_menu_item_object','page'),(1796,223377,'_menu_item_target',''),(1797,223377,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1798,223377,'_menu_item_xfn',''),(1799,223377,'_menu_item_url',''),(1801,223378,'_menu_item_type','post_type'),(1802,223378,'_menu_item_menu_item_parent','0'),(1803,223378,'_menu_item_object_id','223346'),(1804,223378,'_menu_item_object','page'),(1805,223378,'_menu_item_target',''),(1806,223378,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1807,223378,'_menu_item_xfn',''),(1808,223378,'_menu_item_url',''),(1810,223379,'_menu_item_type','post_type'),(1811,223379,'_menu_item_menu_item_parent','0'),(1812,223379,'_menu_item_object_id','223340'),(1813,223379,'_menu_item_object','page'),(1814,223379,'_menu_item_target',''),(1815,223379,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1816,223379,'_menu_item_xfn',''),(1817,223379,'_menu_item_url',''),(1848,223392,'_wp_attached_file','feather.png'),(1849,223392,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:600;s:6:\"height\";i:372;s:4:\"file\";s:11:\"feather.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"feather-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"feather-300x186.png\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"feather-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"feather-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"feather-510x372.png\";s:5:\"width\";i:510;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"feather-400x372.png\";s:5:\"width\";i:400;s:6:\"height\";i:372;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 14:55:52\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"58.83\";}'),(1871,223313,'_et_pb_excluded_global_options','[]'),(1874,223314,'_et_pb_excluded_global_options','[]'),(1879,223315,'_et_pb_excluded_global_options','[]'),(1882,223310,'_et_pb_excluded_global_options','[]'),(1883,223312,'_et_pb_excluded_global_options','[]'),(1972,223340,'_et_pb_built_for_post_type','page'),(1978,223340,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"223340\" /]'),(2015,223346,'_et_pb_built_for_post_type','page'),(2021,223346,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"223346\" /]'),(2283,224113,'_wp_attached_file','Atvantage_developer.png'),(2284,224113,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:500;s:6:\"height\";i:269;s:4:\"file\";s:23:\"Atvantage_developer.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Atvantage_developer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Atvantage_developer-300x161.png\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Atvantage_developer-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Atvantage_developer-400x269.png\";s:5:\"width\";i:400;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Atvantage_developer-400x269.png\";s:5:\"width\";i:400;s:6:\"height\";i:269;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:{}}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:18:56\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"65.35\";}'),(2585,223369,'_et_pb_built_for_post_type','page'),(2591,223369,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"223369\" /]'),(2748,224195,'_wp_attached_file','feather-1.png'),(2749,224195,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:600;s:6:\"height\";i:372;s:4:\"file\";s:13:\"feather-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"feather-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"feather-1-300x186.png\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"feather-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"feather-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"feather-1-510x372.png\";s:5:\"width\";i:510;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"feather-1-400x372.png\";s:5:\"width\";i:400;s:6:\"height\";i:372;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 14:54:23\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"58.83\";}'),(2806,30,'_wp_old_slug','7_email_185'),(2807,33,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:35:\"Tajawal:200,300,400,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(2825,224227,'frm_form_id','6'),(2829,36,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:35:\"Tajawal:200,300,400,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(2830,28,'meta-mhmm-header','default'),(2831,28,'meta-mhmm-style','default'),(2832,28,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:35:\"Tajawal:200,300,400,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(2833,214985,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:35:\"Tajawal:200,300,400,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(2834,214983,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:35:\"Tajawal:200,300,400,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(2838,36,'meta-mhmm-header','default'),(2839,36,'meta-mhmm-style','default'),(2840,36,'_et_pb_use_ab_testing','off'),(2841,36,'_et_pb_gutter_width','3'),(2852,224241,'_edit_lock','1562655149:1'),(2853,224241,'_edit_last','2'),(2856,224241,'_wp_page_template','page-template-blank.php'),(2857,224241,'meta-mhmm-header','default'),(2858,224241,'meta-mhmm-style','default'),(2859,224241,'_et_pb_page_layout','et_right_sidebar'),(2860,224241,'_et_pb_side_nav','off'),(2861,224241,'_et_pb_use_builder','on'),(2862,224241,'_et_builder_version','BB|Divi|3.11.1'),(2863,224241,'_et_pb_show_page_creation','off'),(2864,224241,'_et_pb_ab_stats_refresh_interval','hourly'),(2865,224241,'_et_pb_old_content','[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section]'),(2866,224241,'_et_pb_enable_shortcode_tracking',''),(2867,224241,'_et_pb_custom_css','.logbutton a {\r\n    color: #000000 !important;\r\n    FONT-SIZE: 22px !important;\r\n    font-weight: 400;\r\n    padding: 10px !important;\r\n    border: 2px solid !important;\r\n}'),(2868,224241,'_et_pb_gutter_width','3'),(2869,224241,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:35:\"Tajawal:200,300,400,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(2870,224241,'_et_pb_use_ab_testing','off'),(2876,36,'ddp-css-mermaid','mermaid-buttons'),(2894,223327,'_edit_lock','1579091936:1'),(2897,223327,'_edit_last','1'),(2898,223327,'meta-mhmm-header','default'),(2899,223327,'meta-mhmm-style','default'),(2900,223327,'_et_pb_use_builder','on'),(2901,223327,'_et_builder_version','BB|Divi|3.14'),(2903,223327,'_et_pb_old_content',''),(2904,223327,'_et_pb_enable_shortcode_tracking',''),(2905,223327,'_et_pb_custom_css',''),(2906,223327,'_et_pb_gutter_width','3'),(2907,224276,'_wp_attached_file','Stadsig_NewLogo.png'),(2908,224276,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:256;s:6:\"height\";i:161;s:4:\"file\";s:19:\"Stadsig_NewLogo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Stadsig_NewLogo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 14:46:09\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"51.6\";}'),(2960,214969,'_wp_old_date','2018-07-19'),(2961,214969,'ddp-css-falkor','falkor-headers'),(2964,214985,'_wp_old_date','2018-07-19'),(2965,214985,'ddp-css-falkor','falkor-headers'),(2966,223313,'_edit_lock','1579091932:1'),(2967,224288,'_wp_attached_file','DennisMoss_logo.png'),(2968,224288,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:384;s:6:\"height\";i:108;s:4:\"file\";s:19:\"DennisMoss_logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"DennisMoss_logo-150x108.png\";s:5:\"width\";i:150;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"DennisMoss_logo-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;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:{}}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:06:15\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"41.72\";}'),(2969,223313,'_edit_last','1'),(2970,223313,'meta-mhmm-header','default'),(2971,223313,'meta-mhmm-style','default'),(2972,223313,'_et_pb_use_builder','on'),(2973,223313,'_et_builder_version','BB|Divi|3.15'),(2974,223313,'_et_pb_ab_stats_refresh_interval','hourly'),(2975,223313,'_et_pb_old_content',''),(2976,223313,'_et_pb_enable_shortcode_tracking',''),(2977,223313,'_et_pb_custom_css',''),(2978,223313,'_et_pb_gutter_width','3'),(2979,223314,'_edit_lock','1538076404:1'),(2980,223315,'_edit_lock','1538076245:1'),(2981,223315,'_edit_last','1'),(2983,223315,'meta-mhmm-header','default'),(2984,223315,'meta-mhmm-style','default'),(2985,223315,'_et_pb_use_builder','on'),(2986,223315,'_et_builder_version','BB|Divi|3.15'),(2987,223315,'_et_pb_ab_stats_refresh_interval','hourly'),(2988,223315,'_et_pb_old_content',''),(2989,223315,'_et_pb_enable_shortcode_tracking',''),(2990,223315,'_et_pb_custom_css',''),(2991,223315,'_et_pb_gutter_width','3'),(3043,224305,'meta-mhmm-header','1463'),(3044,224305,'meta-mhmm-style','mhmm-sticky-top'),(3045,224305,'_et_post_bg_color','#ffffff'),(3046,224305,'_et_post_bg_layout','light'),(3047,224305,'_et_pb_show_title','off'),(3048,224305,'_et_pb_post_hide_nav','default'),(3049,224305,'_et_pb_page_layout','et_full_width_page'),(3050,224305,'_et_pb_side_nav','off'),(3051,224305,'_et_pb_use_builder','on'),(3052,224305,'_et_builder_version','BB|Divi|3.14'),(3053,224305,'_et_pb_show_page_creation','off'),(3054,224305,'_et_pb_ab_stats_refresh_interval','hourly'),(3055,224305,'_et_pb_old_content',''),(3056,224305,'_et_pb_enable_shortcode_tracking',''),(3057,224305,'_et_pb_custom_css',''),(3058,224305,'_et_pb_gutter_width','3'),(3059,224305,'_et_pb_built_for_post_type','page'),(3060,224305,'_et_pb_use_ab_testing','off'),(3061,224305,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"214969\" /]'),(3063,224305,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:35:\"Tajawal:200,300,400,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(3064,224305,'_wp_old_date','2018-07-19'),(3066,224305,'_dp_original','214969'),(3067,224305,'_edit_lock','1536837188:1'),(3068,224305,'_edit_last','1'),(3079,224305,'_wp_old_slug','advantage-are-the-new-developers'),(3418,224305,'ddp-css-falkor','falkor-headers'),(3452,223340,'_et_pb_show_page_creation','off'),(3567,223346,'_et_pb_show_page_creation','off'),(3568,223327,'_et_pb_excluded_global_options','[]'),(3750,58,'_et_pb_show_page_creation','off'),(4013,224537,'_wp_attached_file','Stadsig_strelitzia.png'),(4014,224537,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:229;s:6:\"height\";i:149;s:4:\"file\";s:22:\"Stadsig_strelitzia.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Stadsig_strelitzia-150x149.png\";s:5:\"width\";i:150;s:6:\"height\";i:149;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 13:23:30\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"62.7\";}'),(4730,224537,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.83509961848240777;s:5:\"bytes\";i:394;s:11:\"size_before\";i:47180;s:10:\"size_after\";i:46786;s:4:\"time\";d:0.080000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21915;s:10:\"size_after\";i:21915;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5600000000000001;s:5:\"bytes\";i:394;s:11:\"size_before\";i:25265;s:10:\"size_after\";i:24871;s:4:\"time\";d:0.050000000000000003;}}}'),(4753,224288,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.889185135810699;s:5:\"bytes\";i:7468;s:11:\"size_before\";i:30005;s:10:\"size_after\";i:22537;s:4:\"time\";d:0.29000000000000004;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.729999999999997;s:5:\"bytes\";i:2178;s:11:\"size_before\";i:6458;s:10:\"size_after\";i:4280;s:4:\"time\";d:0.040000000000000001;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.199999999999999;s:5:\"bytes\";i:5037;s:11:\"size_before\";i:16678;s:10:\"size_after\";i:11641;s:4:\"time\";d:0.11;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6800000000000002;s:5:\"bytes\";i:253;s:11:\"size_before\";i:6869;s:10:\"size_after\";i:6616;s:4:\"time\";d:0.14000000000000001;}}}'),(4754,224276,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.833633008422446;s:5:\"bytes\";i:5037;s:11:\"size_before\";i:21134;s:10:\"size_after\";i:16097;s:4:\"time\";d:0.14999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.27;s:5:\"bytes\";i:4956;s:11:\"size_before\";i:16373;s:10:\"size_after\";i:11417;s:4:\"time\";d:0.089999999999999997;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7;s:5:\"bytes\";i:81;s:11:\"size_before\";i:4761;s:10:\"size_after\";i:4680;s:4:\"time\";d:0.059999999999999998;}}}'),(4756,224195,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.1656519755368038;s:5:\"bytes\";i:70871;s:11:\"size_before\";i:867916;s:10:\"size_after\";i:797045;s:4:\"time\";d:1.8700000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40769;s:10:\"size_after\";i:40769;s:4:\"time\";d:0.050000000000000003;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7800000000000002;s:5:\"bytes\";i:3805;s:11:\"size_before\";i:65786;s:10:\"size_after\";i:61981;s:4:\"time\";d:0.070000000000000007;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.75;s:5:\"bytes\";i:2318;s:11:\"size_before\";i:132740;s:10:\"size_after\";i:130422;s:4:\"time\";d:0.66000000000000003;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.91000000000000003;s:5:\"bytes\";i:1415;s:11:\"size_before\";i:155935;s:10:\"size_after\";i:154520;s:4:\"time\";d:0.29999999999999999;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.6;s:5:\"bytes\";i:22125;s:11:\"size_before\";i:162678;s:10:\"size_after\";i:140553;s:4:\"time\";d:0.34000000000000002;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.42;s:5:\"bytes\";i:18557;s:11:\"size_before\";i:138237;s:10:\"size_after\";i:119680;s:4:\"time\";d:0.17999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.19;s:5:\"bytes\";i:22651;s:11:\"size_before\";i:171771;s:10:\"size_after\";i:149120;s:4:\"time\";d:0.27000000000000002;}}}'),(4763,224113,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:29.738495844313807;s:5:\"bytes\";i:33741;s:11:\"size_before\";i:113459;s:10:\"size_after\";i:79718;s:4:\"time\";d:1.1200000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.82;s:5:\"bytes\";i:5152;s:11:\"size_before\";i:15696;s:10:\"size_after\";i:10544;s:4:\"time\";d:0.089999999999999997;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.149999999999999;s:5:\"bytes\";i:5257;s:11:\"size_before\";i:17435;s:10:\"size_after\";i:12178;s:4:\"time\";d:0.070000000000000007;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.090000000000003;s:5:\"bytes\";i:14681;s:11:\"size_before\";i:43069;s:10:\"size_after\";i:28388;s:4:\"time\";d:0.34999999999999998;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.719999999999999;s:5:\"bytes\";i:3730;s:11:\"size_before\";i:12552;s:10:\"size_after\";i:8822;s:4:\"time\";d:0.20999999999999999;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8822;s:10:\"size_after\";i:8822;s:4:\"time\";d:0.13;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.98;s:5:\"bytes\";i:4921;s:11:\"size_before\";i:15885;s:10:\"size_after\";i:10964;s:4:\"time\";d:0.27000000000000002;}}}'),(4776,223392,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.1656519755368038;s:5:\"bytes\";i:70871;s:11:\"size_before\";i:867916;s:10:\"size_after\";i:797045;s:4:\"time\";d:1.6200000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40769;s:10:\"size_after\";i:40769;s:4:\"time\";d:0.050000000000000003;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7800000000000002;s:5:\"bytes\";i:3805;s:11:\"size_before\";i:65786;s:10:\"size_after\";i:61981;s:4:\"time\";d:0.059999999999999998;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.75;s:5:\"bytes\";i:2318;s:11:\"size_before\";i:132740;s:10:\"size_after\";i:130422;s:4:\"time\";d:0.22;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.91000000000000003;s:5:\"bytes\";i:1415;s:11:\"size_before\";i:155935;s:10:\"size_after\";i:154520;s:4:\"time\";d:0.54000000000000004;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.6;s:5:\"bytes\";i:22125;s:11:\"size_before\";i:162678;s:10:\"size_after\";i:140553;s:4:\"time\";d:0.27000000000000002;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.42;s:5:\"bytes\";i:18557;s:11:\"size_before\";i:138237;s:10:\"size_after\";i:119680;s:4:\"time\";d:0.27000000000000002;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.19;s:5:\"bytes\";i:22651;s:11:\"size_before\";i:171771;s:10:\"size_after\";i:149120;s:4:\"time\";d:0.20999999999999999;}}}'),(4786,223296,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.465083968670221;s:5:\"bytes\";i:11784;s:11:\"size_before\";i:57581;s:10:\"size_after\";i:45797;s:4:\"time\";d:0.33000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.059999999999999;s:5:\"bytes\";i:111;s:11:\"size_before\";i:527;s:10:\"size_after\";i:416;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.359999999999999;s:5:\"bytes\";i:2107;s:11:\"size_before\";i:8307;s:10:\"size_after\";i:6200;s:4:\"time\";d:0.029999999999999999;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.390000000000001;s:5:\"bytes\";i:1793;s:11:\"size_before\";i:7350;s:10:\"size_after\";i:5557;s:4:\"time\";d:0.029999999999999999;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5557;s:10:\"size_after\";i:5557;s:4:\"time\";d:0.029999999999999999;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.829999999999998;s:5:\"bytes\";i:2930;s:11:\"size_before\";i:11798;s:10:\"size_after\";i:8868;s:4:\"time\";d:0.080000000000000002;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5557;s:10:\"size_after\";i:5557;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.199999999999999;s:5:\"bytes\";i:4843;s:11:\"size_before\";i:18485;s:10:\"size_after\";i:13642;s:4:\"time\";d:0.10000000000000001;}}}'),(4789,215154,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.912718204488776;s:5:\"bytes\";i:1597;s:11:\"size_before\";i:8020;s:10:\"size_after\";i:6423;s:4:\"time\";d:0.070000000000000007;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.399999999999999;s:5:\"bytes\";i:1529;s:11:\"size_before\";i:4201;s:10:\"size_after\";i:2672;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.78;s:5:\"bytes\";i:68;s:11:\"size_before\";i:3819;s:10:\"size_after\";i:3751;s:4:\"time\";d:0.050000000000000003;}}}'),(4790,215152,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.75531914893617;s:5:\"bytes\";i:693;s:11:\"size_before\";i:4136;s:10:\"size_after\";i:3443;s:4:\"time\";d:0.090000000000000011;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.880000000000003;s:5:\"bytes\";i:649;s:11:\"size_before\";i:1809;s:10:\"size_after\";i:1160;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8899999999999999;s:5:\"bytes\";i:44;s:11:\"size_before\";i:2327;s:10:\"size_after\";i:2283;s:4:\"time\";d:0.070000000000000007;}}}'),(4791,215151,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.482369534555712;s:5:\"bytes\";i:1594;s:11:\"size_before\";i:7090;s:10:\"size_after\";i:5496;s:4:\"time\";d:0.089999999999999997;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.390000000000001;s:5:\"bytes\";i:1594;s:11:\"size_before\";i:4047;s:10:\"size_after\";i:2453;s:4:\"time\";d:0.059999999999999998;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3043;s:10:\"size_after\";i:3043;s:4:\"time\";d:0.029999999999999999;}}}'),(4793,215072,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.29673590504451042;s:5:\"bytes\";i:2;s:11:\"size_before\";i:674;s:10:\"size_after\";i:672;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.29999999999999999;s:5:\"bytes\";i:2;s:11:\"size_before\";i:674;s:10:\"size_after\";i:672;s:4:\"time\";d:0.01;}}}'),(4794,215071,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4714548802946599;s:5:\"bytes\";i:46;s:11:\"size_before\";i:543;s:10:\"size_after\";i:497;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4700000000000006;s:5:\"bytes\";i:46;s:11:\"size_before\";i:543;s:10:\"size_after\";i:497;s:4:\"time\";d:0.02;}}}'),(4798,215061,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9344899575264556;s:5:\"bytes\";i:1380;s:11:\"size_before\";i:13891;s:10:\"size_after\";i:12511;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.280000000000001;s:5:\"bytes\";i:1380;s:11:\"size_before\";i:7549;s:10:\"size_after\";i:6169;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6342;s:10:\"size_after\";i:6342;s:4:\"time\";d:0.02;}}}'),(4799,215060,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23833;s:10:\"size_after\";i:23833;s:4:\"time\";d:0.059999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11386;s:10:\"size_after\";i:11386;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12447;s:10:\"size_after\";i:12447;s:4:\"time\";d:0.02;}}}'),(4800,215059,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.0658868545152465;s:5:\"bytes\";i:1231;s:11:\"size_before\";i:59587;s:10:\"size_after\";i:58356;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26262;s:10:\"size_after\";i:26262;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6899999999999999;s:5:\"bytes\";i:1231;s:11:\"size_before\";i:33325;s:10:\"size_after\";i:32094;s:4:\"time\";d:0.029999999999999999;}}}'),(4801,215058,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.28755543237250553;s:5:\"bytes\";i:83;s:11:\"size_before\";i:28864;s:10:\"size_after\";i:28781;s:4:\"time\";d:0.070000000000000007;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.57999999999999996;s:5:\"bytes\";i:83;s:11:\"size_before\";i:14268;s:10:\"size_after\";i:14185;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14596;s:10:\"size_after\";i:14596;s:4:\"time\";d:0.029999999999999999;}}}'),(4802,215056,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.003385584182550699;s:5:\"bytes\";i:1;s:11:\"size_before\";i:29537;s:10:\"size_after\";i:29536;s:4:\"time\";d:0.080000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.01;s:5:\"bytes\";i:1;s:11:\"size_before\";i:14669;s:10:\"size_after\";i:14668;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14868;s:10:\"size_after\";i:14868;s:4:\"time\";d:0.029999999999999999;}}}'),(4803,215020,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.388724183462468;s:5:\"bytes\";i:28164;s:11:\"size_before\";i:120417;s:10:\"size_after\";i:92253;s:4:\"time\";d:1.21;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.969999999999999;s:5:\"bytes\";i:3032;s:11:\"size_before\";i:9790;s:10:\"size_after\";i:6758;s:4:\"time\";d:0.089999999999999997;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.469999999999999;s:5:\"bytes\";i:4150;s:11:\"size_before\";i:15677;s:10:\"size_after\";i:11527;s:4:\"time\";d:0.25;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.73;s:5:\"bytes\";i:9044;s:11:\"size_before\";i:32613;s:10:\"size_after\";i:23569;s:4:\"time\";d:0.26000000000000001;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.780000000000001;s:5:\"bytes\";i:2461;s:11:\"size_before\";i:11843;s:10:\"size_after\";i:9382;s:4:\"time\";d:0.11;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.140000000000001;s:5:\"bytes\";i:3380;s:11:\"size_before\";i:16786;s:10:\"size_after\";i:13406;s:4:\"time\";d:0.20999999999999999;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9382;s:10:\"size_after\";i:9382;s:4:\"time\";d:0.10000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.059999999999999;s:5:\"bytes\";i:6097;s:11:\"size_before\";i:24326;s:10:\"size_after\";i:18229;s:4:\"time\";d:0.19;}}}'),(4808,1355,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:33.974916534432218;s:5:\"bytes\";i:166790;s:11:\"size_before\";i:490921;s:10:\"size_after\";i:324131;s:4:\"time\";d:4.9299999999999997;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.119999999999997;s:5:\"bytes\";i:4150;s:11:\"size_before\";i:12921;s:10:\"size_after\";i:8771;s:4:\"time\";d:0.070000000000000007;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.170000000000002;s:5:\"bytes\";i:8543;s:11:\"size_before\";i:25759;s:10:\"size_after\";i:17216;s:4:\"time\";d:0.25;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.990000000000002;s:5:\"bytes\";i:49583;s:11:\"size_before\";i:134059;s:10:\"size_after\";i:84476;s:4:\"time\";d:1.1399999999999999;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.93;s:5:\"bytes\";i:13578;s:11:\"size_before\";i:41235;s:10:\"size_after\";i:27657;s:4:\"time\";d:0.42999999999999999;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.090000000000003;s:5:\"bytes\";i:18566;s:11:\"size_before\";i:52913;s:10:\"size_after\";i:34347;s:4:\"time\";d:0.46000000000000002;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.990000000000002;s:5:\"bytes\";i:31160;s:11:\"size_before\";i:86574;s:10:\"size_after\";i:55414;s:4:\"time\";d:0.87;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.909999999999997;s:5:\"bytes\";i:33029;s:11:\"size_before\";i:97405;s:10:\"size_after\";i:64376;s:4:\"time\";d:1.3600000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.420000000000002;s:5:\"bytes\";i:8181;s:11:\"size_before\";i:40055;s:10:\"size_after\";i:31874;s:4:\"time\";d:0.34999999999999998;}}}'),(4811,50,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.957951963439839;s:5:\"bytes\";i:74521;s:11:\"size_before\";i:623192;s:10:\"size_after\";i:548671;s:4:\"time\";d:2.7699999999999996;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.66;s:5:\"bytes\";i:5228;s:11:\"size_before\";i:22101;s:10:\"size_after\";i:16873;s:4:\"time\";d:0.070000000000000007;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.629999999999999;s:5:\"bytes\";i:13014;s:11:\"size_before\";i:73830;s:10:\"size_after\";i:60816;s:4:\"time\";d:0.33000000000000002;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999998;s:5:\"bytes\";i:5183;s:11:\"size_before\";i:64707;s:10:\"size_after\";i:59524;s:4:\"time\";d:0.26000000000000001;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006;s:5:\"bytes\";i:6417;s:11:\"size_before\";i:73583;s:10:\"size_after\";i:67166;s:4:\"time\";d:0.28000000000000003;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.460000000000001;s:5:\"bytes\";i:20160;s:11:\"size_before\";i:139462;s:10:\"size_after\";i:119302;s:4:\"time\";d:0.71999999999999997;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:53808;s:10:\"size_after\";i:53808;s:4:\"time\";d:0.28999999999999998;}s:13:\"site_icon-270\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.210000000000001;s:5:\"bytes\";i:12106;s:11:\"size_before\";i:63003;s:10:\"size_after\";i:50897;s:4:\"time\";d:0.27000000000000002;}s:13:\"site_icon-192\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.960000000000001;s:5:\"bytes\";i:4664;s:11:\"size_before\";i:27495;s:10:\"size_after\";i:22831;s:4:\"time\";d:0.089999999999999997;}s:13:\"site_icon-180\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.5;s:5:\"bytes\";i:7297;s:11:\"size_before\";i:31056;s:10:\"size_after\";i:23759;s:4:\"time\";d:0.17000000000000001;}s:12:\"site_icon-32\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.899999999999999;s:5:\"bytes\";i:452;s:11:\"size_before\";i:1620;s:10:\"size_after\";i:1168;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:72527;s:10:\"size_after\";i:72527;s:4:\"time\";d:0.28000000000000003;}}}'),(4812,49,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.8445218411669622;s:5:\"bytes\";i:50002;s:11:\"size_before\";i:507917;s:10:\"size_after\";i:457915;s:4:\"time\";d:2.5899999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.66;s:5:\"bytes\";i:5228;s:11:\"size_before\";i:22101;s:10:\"size_after\";i:16873;s:4:\"time\";d:0.080000000000000002;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.629999999999999;s:5:\"bytes\";i:13014;s:11:\"size_before\";i:73830;s:10:\"size_after\";i:60816;s:4:\"time\";d:0.35999999999999999;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999998;s:5:\"bytes\";i:5183;s:11:\"size_before\";i:64707;s:10:\"size_after\";i:59524;s:4:\"time\";d:0.28000000000000003;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006;s:5:\"bytes\";i:6417;s:11:\"size_before\";i:73583;s:10:\"size_after\";i:67166;s:4:\"time\";d:0.32000000000000001;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.460000000000001;s:5:\"bytes\";i:20160;s:11:\"size_before\";i:139462;s:10:\"size_after\";i:119302;s:4:\"time\";d:0.84999999999999998;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:53808;s:10:\"size_after\";i:53808;s:4:\"time\";d:0.23999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:80426;s:10:\"size_after\";i:80426;s:4:\"time\";d:0.46000000000000002;}}}'),(4813,47,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9600000000000004;s:5:\"bytes\";i:99;s:11:\"size_before\";i:2500;s:10:\"size_after\";i:2401;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.96;s:5:\"bytes\";i:99;s:11:\"size_before\";i:2500;s:10:\"size_after\";i:2401;s:4:\"time\";d:0.050000000000000003;}}}'),(4814,43,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:55.591677503250978;s:5:\"bytes\";i:855;s:11:\"size_before\";i:1538;s:10:\"size_after\";i:683;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.590000000000003;s:5:\"bytes\";i:855;s:11:\"size_before\";i:1538;s:10:\"size_after\";i:683;s:4:\"time\";d:0.02;}}}'),(5469,224814,'_wp_attached_file','Stadsig_HousePlans_header_Mobile.jpg'),(5470,224814,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9096788690563411;s:5:\"bytes\";i:40573;s:11:\"size_before\";i:409428;s:10:\"size_after\";i:368855;s:4:\"time\";d:0.17999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4900000000000002;s:5:\"bytes\";i:392;s:11:\"size_before\";i:7134;s:10:\"size_after\";i:6742;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2800000000000002;s:5:\"bytes\";i:603;s:11:\"size_before\";i:11431;s:10:\"size_after\";i:10828;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8499999999999996;s:5:\"bytes\";i:1217;s:11:\"size_before\";i:25099;s:10:\"size_after\";i:23882;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6200000000000001;s:5:\"bytes\";i:1762;s:11:\"size_before\";i:31360;s:10:\"size_after\";i:29598;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.46;s:5:\"bytes\";i:2171;s:11:\"size_before\";i:39784;s:10:\"size_after\";i:37613;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:29598;s:10:\"size_after\";i:29598;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.99;s:5:\"bytes\";i:34428;s:11:\"size_before\";i:265022;s:10:\"size_after\";i:230594;s:4:\"time\";d:0.059999999999999998;}}}'),(5471,224814,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:612;s:6:\"height\";i:270;s:4:\"file\";s:36:\"Stadsig_HousePlans_header_Mobile.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Stadsig_HousePlans_header_Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Stadsig_HousePlans_header_Mobile-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"Stadsig_HousePlans_header_Mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"Stadsig_HousePlans_header_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"Stadsig_HousePlans_header_Mobile-510x270.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"Stadsig_HousePlans_header_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 13:23:09\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"75.08\";}'),(5504,224820,'_wp_attached_file','Stadsig_AreaLifestyle_header_Mobile.jpg'),(5505,224820,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.210668264908602;s:5:\"bytes\";i:34073;s:11:\"size_before\";i:333700;s:10:\"size_after\";i:299627;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79;s:5:\"bytes\";i:345;s:11:\"size_before\";i:5962;s:10:\"size_after\";i:5617;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4400000000000004;s:5:\"bytes\";i:562;s:11:\"size_before\";i:10340;s:10:\"size_after\";i:9778;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79;s:5:\"bytes\";i:882;s:11:\"size_before\";i:18399;s:10:\"size_after\";i:17517;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5899999999999999;s:5:\"bytes\";i:965;s:11:\"size_before\";i:21012;s:10:\"size_after\";i:20047;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6200000000000001;s:5:\"bytes\";i:1290;s:11:\"size_before\";i:27946;s:10:\"size_after\";i:26656;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20047;s:10:\"size_after\";i:20047;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.06;s:5:\"bytes\";i:30029;s:11:\"size_before\";i:229994;s:10:\"size_after\";i:199965;s:4:\"time\";d:0.050000000000000003;}}}'),(5506,224820,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:615;s:6:\"height\";i:270;s:4:\"file\";s:39:\"Stadsig_AreaLifestyle_header_Mobile.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Stadsig_AreaLifestyle_header_Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Stadsig_AreaLifestyle_header_Mobile-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"Stadsig_AreaLifestyle_header_Mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"Stadsig_AreaLifestyle_header_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"Stadsig_AreaLifestyle_header_Mobile-510x270.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"Stadsig_AreaLifestyle_header_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 13:22:06\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"77.83\";}'),(5520,224824,'_wp_attached_file','Stadsig_EstateOverview_header_Mobile.jpg'),(5522,224824,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.8120225222672683;s:5:\"bytes\";i:38094;s:11:\"size_before\";i:388238;s:10:\"size_after\";i:350144;s:4:\"time\";d:0.12000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8700000000000001;s:5:\"bytes\";i:511;s:11:\"size_before\";i:7439;s:10:\"size_after\";i:6928;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2400000000000002;s:5:\"bytes\";i:788;s:11:\"size_before\";i:12621;s:10:\"size_after\";i:11833;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4000000000000004;s:5:\"bytes\";i:1349;s:11:\"size_before\";i:24983;s:10:\"size_after\";i:23634;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6100000000000003;s:5:\"bytes\";i:1612;s:11:\"size_before\";i:28726;s:10:\"size_after\";i:27114;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29;s:5:\"bytes\";i:1904;s:11:\"size_before\";i:36011;s:10:\"size_after\";i:34107;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27114;s:10:\"size_after\";i:27114;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.699999999999999;s:5:\"bytes\";i:31930;s:11:\"size_before\";i:251344;s:10:\"size_after\";i:219414;s:4:\"time\";d:0.050000000000000003;}}}'),(5523,224824,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:615;s:6:\"height\";i:269;s:4:\"file\";s:40:\"Stadsig_EstateOverview_header_Mobile.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Stadsig_EstateOverview_header_Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Stadsig_EstateOverview_header_Mobile-300x131.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"Stadsig_EstateOverview_header_Mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"Stadsig_EstateOverview_header_Mobile-400x269.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"Stadsig_EstateOverview_header_Mobile-510x269.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"Stadsig_EstateOverview_header_Mobile-400x269.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:269;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 13:21:12\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"75.66\";}'),(5544,224829,'_wp_attached_file','HomeCover_Mobile.jpg'),(5545,224829,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.500768872649294;s:5:\"bytes\";i:30128;s:11:\"size_before\";i:354415;s:10:\"size_after\";i:324287;s:4:\"time\";d:0.13999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8300000000000001;s:5:\"bytes\";i:403;s:11:\"size_before\";i:6917;s:10:\"size_after\";i:6514;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7000000000000002;s:5:\"bytes\";i:655;s:11:\"size_before\";i:11494;s:10:\"size_after\";i:10839;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8300000000000001;s:5:\"bytes\";i:1089;s:11:\"size_before\";i:22561;s:10:\"size_after\";i:21472;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9699999999999998;s:5:\"bytes\";i:1352;s:11:\"size_before\";i:27213;s:10:\"size_after\";i:25861;s:4:\"time\";d:0.029999999999999999;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4199999999999999;s:5:\"bytes\";i:1429;s:11:\"size_before\";i:32333;s:10:\"size_after\";i:30904;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25861;s:10:\"size_after\";i:25861;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.050000000000001;s:5:\"bytes\";i:25200;s:11:\"size_before\";i:228036;s:10:\"size_after\";i:202836;s:4:\"time\";d:0.040000000000000001;}}}'),(5546,224829,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:613;s:6:\"height\";i:270;s:4:\"file\";s:20:\"HomeCover_Mobile.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"HomeCover_Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"HomeCover_Mobile-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"HomeCover_Mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"HomeCover_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"HomeCover_Mobile-510x270.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"HomeCover_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 13:19:18\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"75.53\";}'),(5559,224832,'_wp_attached_file','Page4_Main_1_Mobile.jpg'),(5560,224832,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.7918451087994871;s:5:\"bytes\";i:29911;s:11:\"size_before\";i:340213;s:10:\"size_after\";i:310302;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7699999999999996;s:5:\"bytes\";i:416;s:11:\"size_before\";i:7207;s:10:\"size_after\";i:6791;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.71;s:5:\"bytes\";i:715;s:11:\"size_before\";i:12518;s:10:\"size_after\";i:11803;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5800000000000001;s:5:\"bytes\";i:1059;s:11:\"size_before\";i:23119;s:10:\"size_after\";i:22060;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79;s:5:\"bytes\";i:1241;s:11:\"size_before\";i:25917;s:10:\"size_after\";i:24676;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79;s:5:\"bytes\";i:1620;s:11:\"size_before\";i:33829;s:10:\"size_after\";i:32209;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24676;s:10:\"size_after\";i:24676;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.67;s:5:\"bytes\";i:24860;s:11:\"size_before\";i:212947;s:10:\"size_after\";i:188087;s:4:\"time\";d:0.040000000000000001;}}}'),(5561,224832,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:614;s:6:\"height\";i:270;s:4:\"file\";s:23:\"Page4_Main_1_Mobile.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Page4_Main_1_Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Page4_Main_1_Mobile-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Page4_Main_1_Mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Page4_Main_1_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Page4_Main_1_Mobile-510x270.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Page4_Main_1_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 13:18:41\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"72.75\";}'),(5580,224835,'_wp_attached_file','Page5_Main_1_Mobile.jpg'),(5581,224835,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.0533950037720423;s:5:\"bytes\";i:24446;s:11:\"size_before\";i:303549;s:10:\"size_after\";i:279103;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.96;s:5:\"bytes\";i:429;s:11:\"size_before\";i:7196;s:10:\"size_after\";i:6767;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04;s:5:\"bytes\";i:380;s:11:\"size_before\";i:9401;s:10:\"size_after\";i:9021;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0700000000000003;s:5:\"bytes\";i:843;s:11:\"size_before\";i:20716;s:10:\"size_after\";i:19873;s:4:\"time\";d:0.029999999999999999;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3399999999999999;s:5:\"bytes\";i:1089;s:11:\"size_before\";i:25101;s:10:\"size_after\";i:24012;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0700000000000003;s:5:\"bytes\";i:1156;s:11:\"size_before\";i:28402;s:10:\"size_after\";i:27246;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24012;s:10:\"size_after\";i:24012;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.890000000000001;s:5:\"bytes\";i:20549;s:11:\"size_before\";i:188721;s:10:\"size_after\";i:168172;s:4:\"time\";d:0.029999999999999999;}}}'),(5582,224835,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:615;s:6:\"height\";i:270;s:4:\"file\";s:23:\"Page5_Main_1_Mobile.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Page5_Main_1_Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Page5_Main_1_Mobile-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Page5_Main_1_Mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Page5_Main_1_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Page5_Main_1_Mobile-510x270.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Page5_Main_1_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 13:16:20\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"75.24\";}'),(5629,224842,'_wp_attached_file','Page6_Main_1_Mobile.jpg'),(5630,224842,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.6627831692057846;s:5:\"bytes\";i:21422;s:11:\"size_before\";i:279559;s:10:\"size_after\";i:258137;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0700000000000003;s:5:\"bytes\";i:208;s:11:\"size_before\";i:5108;s:10:\"size_after\";i:4900;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.79;s:5:\"bytes\";i:341;s:11:\"size_before\";i:8989;s:10:\"size_after\";i:8648;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1899999999999999;s:5:\"bytes\";i:557;s:11:\"size_before\";i:17439;s:10:\"size_after\";i:16882;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5699999999999998;s:5:\"bytes\";i:695;s:11:\"size_before\";i:19477;s:10:\"size_after\";i:18782;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.25;s:5:\"bytes\";i:806;s:11:\"size_before\";i:24810;s:10:\"size_after\";i:24004;s:4:\"time\";d:0.029999999999999999;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18782;s:10:\"size_after\";i:18782;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.17;s:5:\"bytes\";i:18815;s:11:\"size_before\";i:184954;s:10:\"size_after\";i:166139;s:4:\"time\";d:0.050000000000000003;}}}'),(5631,224842,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:615;s:6:\"height\";i:270;s:4:\"file\";s:23:\"Page6_Main_1_Mobile.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Page6_Main_1_Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Page6_Main_1_Mobile-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Page6_Main_1_Mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Page6_Main_1_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Page6_Main_1_Mobile-510x270.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Page6_Main_1_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;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:{}}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 15:04:36\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"16.88\";}'),(5782,223311,'_edit_lock','1537524286:1'),(5783,223311,'_edit_last','1'),(5784,223311,'meta-mhmm-header','default'),(5785,223311,'meta-mhmm-style','default'),(5786,223311,'_et_pb_use_builder','on'),(5787,223311,'_et_builder_version','BB|Divi|3.15'),(5788,223311,'_et_pb_ab_stats_refresh_interval','hourly'),(5789,223311,'_et_pb_old_content',''),(5790,223311,'_et_pb_enable_shortcode_tracking',''),(5791,223311,'_et_pb_custom_css',''),(5792,223311,'_et_pb_gutter_width','3'),(5793,223310,'_edit_lock','1537516905:1'),(5794,223310,'_edit_last','1'),(5795,223310,'meta-mhmm-header','default'),(5796,223310,'meta-mhmm-style','default'),(5797,223310,'_et_pb_use_builder','on'),(5798,223310,'_et_builder_version','VB|Divi|3.15'),(5799,223310,'_et_pb_ab_stats_refresh_interval','hourly'),(5800,223310,'_et_pb_old_content',''),(5801,223310,'_et_pb_enable_shortcode_tracking',''),(5802,223310,'_et_pb_custom_css',''),(5803,223310,'_et_pb_gutter_width','3'),(5804,223310,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:35:\"Tajawal:200,300,400,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(5805,223310,'_et_pb_use_ab_testing','off'),(5806,223310,'_et_pb_ab_subjects',''),(5807,223310,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"223310\" /]'),(5808,223310,'_thumbnail_id',''),(5809,223310,'_et_pb_show_page_creation','off'),(5878,224901,'_edit_lock','1578926039:1'),(5879,224901,'_edit_last','1'),(5880,224901,'_wp_page_template','default'),(5881,224901,'meta-mhmm-header','215035'),(5882,224901,'meta-mhmm-style','mhmm-sticky-top'),(5883,224901,'_et_pb_page_layout','et_right_sidebar'),(5884,224901,'_et_pb_side_nav','off'),(5885,224901,'_et_pb_use_builder','on'),(5886,224901,'_et_builder_version','VB|Divi|3.15'),(5887,224901,'_et_pb_show_page_creation','off'),(5888,224901,'_et_pb_ab_stats_refresh_interval','hourly'),(5889,224901,'_et_pb_old_content',''),(5890,224901,'_et_pb_enable_shortcode_tracking',''),(5891,224901,'_et_pb_custom_css',''),(5892,224901,'_et_pb_gutter_width','3'),(5893,224901,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:35:\"Tajawal:200,300,400,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(6020,224901,'_et_monarch_override',''),(6024,224901,'_et_pb_built_for_post_type','page'),(6027,224901,'_et_pb_use_ab_testing','off'),(6028,224901,'_et_pb_ab_subjects',''),(6029,224901,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"224901\" /]'),(6030,224901,'_thumbnail_id',''),(6041,224901,'ddp-css-falkor','falkor-footers'),(6042,224901,'ddp-css-falkor','falkor-headers'),(6045,224928,'_wp_attached_file','Stadsig_PGP_logo.png'),(6046,224928,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:38.465928546969522;s:5:\"bytes\";i:3370;s:11:\"size_before\";i:8761;s:10:\"size_after\";i:5391;s:4:\"time\";d:0.090000000000000011;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:57.240000000000002;s:5:\"bytes\";i:3300;s:11:\"size_before\";i:5765;s:10:\"size_after\";i:2465;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.3399999999999999;s:5:\"bytes\";i:70;s:11:\"size_before\";i:2996;s:10:\"size_after\";i:2926;s:4:\"time\";d:0.070000000000000007;}}}'),(6047,224928,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:287;s:6:\"height\";i:81;s:4:\"file\";s:20:\"Stadsig_PGP_logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Stadsig_PGP_logo-150x81.png\";s:5:\"width\";i:150;s:6:\"height\";i:81;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 12:55:30\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"55.09\";}'),(6102,224945,'_wp_attached_file','StadsigDocuments_AchitectureDisclaimer.pdf'),(6103,224946,'_wp_attached_file','StadsigDocuments_MasterSDP.pdf'),(6104,224947,'_wp_attached_file','StadsigDocuments_RegionalLocalLocation.pdf'),(6105,224948,'_wp_attached_file','StadsigDocuments_UnitTypeAllocation.pdf'),(6152,224959,'_wp_attached_file','Stadsig_HOAConstitution.pdf'),(6153,224946,'_edit_lock','1538391007:1'),(6251,224972,'_wp_attached_file','StadsigWebPlans_Part2.pdf'),(6252,224973,'_wp_attached_file','StadsigWebPlans_Part3.pdf'),(6253,224974,'_wp_attached_file','StadsigWebPlans_Part4.pdf'),(6254,224975,'_wp_attached_file','StadsigWebPlans_Part5.pdf'),(6255,224976,'_wp_attached_file','StadsigWebPlans_Part6.pdf'),(6256,224977,'_wp_attached_file','StadsigWebPlans_Part7.pdf'),(6257,224978,'_wp_attached_file','StadsigWebPlans_Part8.pdf'),(6258,224979,'_wp_attached_file','StadsigWebPlans_Part9.pdf'),(6259,224980,'_wp_attached_file','StadsigWebPlans_Part10.pdf'),(6260,224981,'_wp_attached_file','StadsigWebPlans_Part11.pdf'),(6268,224985,'_wp_attached_file','StadsigWebPlans_Part1.pdf'),(6347,224959,'_edit_lock','1538390973:1'),(6382,223346,'_et_monarch_override',''),(6476,225028,'_wp_attached_file','StadsigGeneralSpecifications.pdf'),(6477,225029,'_wp_attached_file','StadsigInteriorFinishes_final.pdf'),(6479,225028,'_edit_lock','1538390625:1'),(6618,225061,'_wp_attached_file','StadsigSubDPhasing.pdf'),(6619,225062,'_wp_attached_file','StadsigUnitAllocationPlan.pdf'),(6639,225061,'_edit_lock','1537541871:1'),(6642,225062,'_edit_lock','1538390564:1'),(6932,223328,'_et_pb_excluded_global_options','[]'),(6991,223328,'_edit_lock','1579011191:1'),(6998,223312,'_edit_lock','1537617398:1'),(6999,223312,'_edit_last','1'),(7000,223312,'meta-mhmm-header','default'),(7001,223312,'meta-mhmm-style','default'),(7002,223312,'_et_pb_use_builder','on'),(7003,223312,'_et_builder_version','BB|Divi|3.15'),(7004,223312,'_et_pb_ab_stats_refresh_interval','hourly'),(7005,223312,'_et_pb_old_content',''),(7006,223312,'_et_pb_enable_shortcode_tracking',''),(7007,223312,'_et_pb_custom_css',''),(7008,223312,'_et_pb_gutter_width','3'),(7805,215035,'ddp-css-mermaid','mermaid-buttons'),(7828,223349,'_et_pb_ab_subjects',''),(7984,223314,'_edit_last','1'),(7985,223314,'meta-mhmm-header','default'),(7986,223314,'meta-mhmm-style','default'),(7987,223314,'_et_pb_use_builder','on'),(7988,223314,'_et_builder_version','BB|Divi|3.15'),(7989,223314,'_et_pb_ab_stats_refresh_interval','hourly'),(7990,223314,'_et_pb_old_content',''),(7991,223314,'_et_pb_enable_shortcode_tracking',''),(7992,223314,'_et_pb_custom_css',''),(7993,223314,'_et_pb_gutter_width','3'),(8023,223333,'ddp-css-falkor','falkor-footers'),(8024,223333,'ddp-css-falkor','falkor-headers'),(8030,223340,'ddp-css-falkor','falkor-footers'),(8031,223340,'ddp-css-falkor','falkor-headers'),(8060,223363,'ddp-css-falkor','falkor-footers'),(8061,223363,'ddp-css-falkor','falkor-headers'),(8077,223349,'ddp-css-falkor','falkor-footers'),(8078,223349,'ddp-css-falkor','falkor-headers'),(8095,223355,'ddp-css-falkor','falkor-footers'),(8096,223355,'ddp-css-falkor','falkor-headers'),(8097,223355,'ddp-css-mermaid','mermaid-buttons'),(8109,223369,'ddp-css-falkor','falkor-footers'),(8110,223369,'ddp-css-falkor','falkor-headers'),(8111,225435,'_wp_attached_file','STADSIG_BuildingAgreement_1oct.pdf'),(8113,225437,'_wp_attached_file','Stadsig_OptionalExtras_1oct.pdf'),(8114,225438,'_wp_attached_file','STADSIG_SalesPrices_1oct.pdf'),(8155,223346,'ddp-css-falkor','falkor-footers'),(8156,223346,'ddp-css-falkor','falkor-headers'),(8157,225438,'_edit_lock','1538390438:1'),(8158,225438,'_edit_last','1'),(8159,225437,'_edit_lock','1538390475:1'),(8160,225437,'_edit_last','1'),(8163,225435,'_edit_lock','1538390531:1'),(8164,225435,'_edit_last','1'),(8165,225062,'_edit_last','1'),(8166,225029,'_edit_lock','1538390741:1'),(8167,225029,'_edit_last','1'),(8168,225028,'_edit_last','1'),(8169,224985,'_edit_lock','1538390679:1'),(8170,224985,'_edit_last','1'),(8171,224981,'_edit_lock','1538390707:1'),(8172,224981,'_edit_last','1'),(8173,224980,'_edit_lock','1538390733:1'),(8174,224980,'_edit_last','1'),(8175,224979,'_edit_lock','1538390758:1'),(8176,224979,'_edit_last','1'),(8177,224978,'_edit_lock','1538390783:1'),(8178,224978,'_edit_last','1'),(8179,224977,'_edit_lock','1538390812:1'),(8180,224977,'_edit_last','1'),(8181,224976,'_edit_lock','1538390843:1'),(8182,224976,'_edit_last','1'),(8183,224975,'_edit_lock','1538390874:1'),(8184,224975,'_edit_last','1'),(8185,224974,'_edit_lock','1538390893:1'),(8186,224974,'_edit_last','1'),(8187,224973,'_edit_lock','1538390915:1'),(8188,224973,'_edit_last','1'),(8189,224972,'_edit_lock','1538391079:1'),(8190,224972,'_edit_last','1'),(8191,224959,'_edit_last','1'),(8192,224948,'_edit_lock','1538390992:1'),(8193,224948,'_edit_last','1'),(8194,224946,'_edit_last','1'),(8195,224945,'_edit_lock','1538391231:1'),(8196,224945,'_edit_last','1'),(8198,223315,'ddp-css-falkor','falkor-footers'),(8201,58,'ddp-css-falkor','falkor-footers'),(8202,58,'ddp-css-falkor','falkor-headers'),(8203,225480,'_wp_attached_file','STADSIG_DeedOfSale_1octFinal.pdf'),(8204,225480,'_edit_lock','1538476256:1'),(8205,225480,'_edit_last','1'),(8206,225484,'_wp_attached_file','Stadsig_GeneralSpecifications_2oct.pdf'),(8207,225485,'_wp_attached_file','Stadsig_HousePlans_2oct.pdf'),(8208,225486,'_wp_attached_file','Stadsig_InteriorFinishes_2oct.pdf'),(8209,225487,'_wp_attached_file','Stadsig_SubDPhasing_2oct.pdf'),(8210,225487,'_edit_lock','1538485669:1'),(8211,225487,'_edit_last','1'),(8251,225527,'_wp_attached_file','Stadsig_Website_LifestyleCollage1.jpg'),(8252,225527,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8255425599032895;s:5:\"bytes\";i:13204;s:11:\"size_before\";i:226657;s:10:\"size_after\";i:213453;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000004;s:5:\"bytes\";i:510;s:11:\"size_before\";i:7973;s:10:\"size_after\";i:7463;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8200000000000003;s:5:\"bytes\";i:1012;s:11:\"size_before\";i:14847;s:10:\"size_after\";i:13835;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6799999999999997;s:5:\"bytes\";i:1871;s:11:\"size_before\";i:28013;s:10:\"size_after\";i:26142;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26142;s:10:\"size_after\";i:26142;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26142;s:10:\"size_after\";i:26142;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9400000000000004;s:5:\"bytes\";i:9811;s:11:\"size_before\";i:123540;s:10:\"size_after\";i:113729;s:4:\"time\";d:0.059999999999999998;}}}'),(8253,225527,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:37:\"Stadsig_Website_LifestyleCollage1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Stadsig_Website_LifestyleCollage1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Stadsig_Website_LifestyleCollage1-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Stadsig_Website_LifestyleCollage1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Stadsig_Website_LifestyleCollage1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Stadsig_Website_LifestyleCollage1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 11:47:42\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"67.95\";}'),(8266,225533,'_et_pb_built_for_post_type','page'),(8267,223333,'_et_pb_ab_subjects',''),(8269,223363,'_et_pb_ab_subjects',''),(8271,223340,'_et_pb_ab_subjects',''),(8276,225545,'_wp_attached_file','Stadsig_PressArticle2.pdf'),(8277,225546,'_wp_attached_file','Stadsig_PressArticle1.pdf'),(8278,225546,'_edit_lock','1539367867:1'),(8280,225551,'_wp_page_template','default'),(8281,225551,'meta-mhmm-header','215035'),(8282,225551,'meta-mhmm-style','mhmm-sticky-top'),(8283,225551,'_et_pb_page_layout','et_right_sidebar'),(8284,225551,'_et_pb_side_nav','off'),(8285,225551,'_et_pb_use_builder','on'),(8286,225551,'_et_builder_version','VB|Divi|3.26.4'),(8287,225551,'_et_pb_show_page_creation','off'),(8290,225551,'_et_pb_old_content',''),(8291,225551,'_et_pb_enable_shortcode_tracking',''),(8292,225551,'_et_pb_custom_css','@media (max-width: 980px){\r\n.et_pb_gutters1 .et_pb_column .et_pb_blog_grid .column.size-1of2, .et_pb_gutters1 .et_pb_column .et_pb_widget:nth-child(n) {\r\n    width: 46%!important;\r\n    margin: 0 2%!important;\r\n}\r\n}'),(8293,225551,'_et_pb_gutter_width','3'),(8294,225551,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";s:15:\"et-gf-open-sans\";s:80:\"Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";}s:6:\"subset\";a:8:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:5:\"greek\";i:4;s:9:\"greek-ext\";i:5;s:10:\"vietnamese\";i:6;s:8:\"cyrillic\";i:7;s:12:\"cyrillic-ext\";}}'),(8295,225551,'_et_pb_built_for_post_type','page'),(8296,225551,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"225551\" /]'),(8299,225551,'ddp-css-falkor','falkor-footers'),(8300,225551,'ddp-css-falkor','falkor-headers'),(8301,225551,'_dp_original','223349'),(8302,225551,'_edit_lock','1583403210:1'),(8303,225551,'_edit_last','1'),(8310,225567,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00.pdf'),(8311,225568,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00_Part1.pdf'),(8312,225569,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00_Part2.pdf'),(8313,225570,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00_Part3.pdf'),(8314,225571,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00_Part4.pdf'),(8315,225572,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00_Part5.pdf'),(8316,225573,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00_Part6.pdf'),(8317,225574,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00_Part7.pdf'),(8318,225575,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00_Part8.pdf'),(8319,225576,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00_Part9.pdf'),(8320,225577,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00_Part10.pdf'),(8321,225578,'_wp_attached_file','6.-HOUSE-TYPE-1-11_-REV00_Part11.pdf'),(8322,225568,'_edit_lock','1539695777:1'),(8325,225593,'_menu_item_type','post_type'),(8326,225593,'_menu_item_menu_item_parent','0'),(8327,225593,'_menu_item_object_id','225551'),(8328,225593,'_menu_item_object','page'),(8329,225593,'_menu_item_target',''),(8330,225593,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(8331,225593,'_menu_item_xfn',''),(8332,225593,'_menu_item_url',''),(8334,225578,'_edit_lock','1539700263:1'),(8337,225551,'_et_pb_ab_subjects',''),(8354,225657,'_wp_attached_file','Stadsig_Map_Placeholder_small-2-1.png'),(8355,225657,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.477935054121566;s:5:\"bytes\";i:954;s:11:\"size_before\";i:3603;s:10:\"size_after\";i:2649;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.48;s:5:\"bytes\";i:954;s:11:\"size_before\";i:3603;s:10:\"size_after\";i:2649;s:4:\"time\";d:0.029999999999999999;}}}'),(8356,225657,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:46;s:6:\"height\";i:43;s:4:\"file\";s:37:\"Stadsig_Map_Placeholder_small-2-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 10:04:24\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"42.32\";}'),(8357,225657,'_edit_lock','1539865275:1'),(8403,36,'_oembed_d977e5f54eafb5da529e7bd105cdcde6','{{unknown}}'),(8404,36,'_oembed_f12e66d9c3c144b45b244a9e525562e0','{{unknown}}'),(8405,36,'_oembed_0518d7a73fbd5597eb19552a78bf8b41','{{unknown}}'),(8406,36,'_oembed_40a10566e73f3cfa9281dc6f416eee52','{{unknown}}'),(8407,36,'_oembed_4c617a7245ddb64656520660b74ddb7b','{{unknown}}'),(8408,36,'_oembed_a8f8f51da5c44e551c3f76ab7f4d4f9f','{{unknown}}'),(8409,36,'_oembed_8fc635cc0d0afa67aa57170293cf9395','{{unknown}}'),(8410,36,'_oembed_b360079c7b2e80ed708f568fb789fe6a','{{unknown}}'),(8411,36,'_oembed_21ecff737e1020bf57c4fc049487ed2a','{{unknown}}'),(8412,36,'_oembed_be1012675889944d1e38d36ec5643fa5','{{unknown}}'),(8413,36,'_oembed_991bdcb5d1f8a8098f70cb263ae23182','{{unknown}}'),(8414,36,'_oembed_b77a24b6e88347f91348f462ae4aaa16','{{unknown}}'),(8415,36,'_oembed_6d56e7c583ce044d648d71a920bffd40','{{unknown}}'),(8416,225688,'frm_form_id','6'),(8417,214985,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_3 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					phase one sold out\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_7 et_pb_equal_columns et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_4 et_pb_image_sticky\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_news3.jpg\" alt=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</p>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem</p>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(8418,224305,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_3 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					stadsig country estate set for imminent rejuvenation\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_7 et_pb_equal_columns et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_4 et_pb_image_sticky\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax.jpg\" alt=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>The intrigue and disappointment surrounding the picturesque residential development of Stadsig in Wellington, has finally come to an end after many years of uncertainty. The further development of the estate has been taken over by ATVANTAGE, a multi-faceted group of built environment professional services and development companies.</p>\n<p>Since the launch of Stadsig in 2012, the initial phases proceeded well until the liquidation of the building contractor in 2017. The stuttering attempt at business rescue that preceded the eventual liquidation, only served to further demoralise the residents of Stadsig and tarnish the reputation of the estate. For too long, the development lay unattended, a mere shadow of its true potential.</p>\n<p>ATVANTAGE is set to re-ignite Stadsig and realise its full potential. “We took transfer of the property in June 2018 and have commenced with focused activities aimed at putting Stadsig firmly on the path to being the most sought after residential community in the greater Wellington winelands. We’re introducing improvements in urban and landscaping design, all with the objective of enhancing the village character of the estate and to create an environment of rest and relaxation for its residents,” says Paul Louw, Group Director at ATVANTAGE.</p>\n<p>The construction of the new electrified perimeter security wall and fencing, together with the engagement of Thorburn Security Solutions will, for the first time, offer residents the peace of mind of a truly secured estate. Hessel Dijkstra, Group CEO, continues: “Infrastructure and services to future phases of the development will follow in due course. We’ll be offering prospective owners a selection of newly designed homes from Dennis Moss Partnership, esteemed Stellenbosch architects known for estates such as De Zalze, Welgevonden (Stellenbosch) and Eden Island (Seychelles).”</p>\n<p>Stadsig Country Estate is located on the outskirts of Wellington, just off the R301, on the way to Bain’s Kloof Pass. Nestled under the majestic Hawequa mountains, the topography and orientation of the estate affords it panoramic vistas, as far as Tafelberg. “The prime location offers the best of both worlds – a tranquil setting amid rolling farmland, within easy reach of the town’s amenities. It’s also easily accessible to the rest of the Winelands and the Cape Town Metropole beyond,” Louw concludes.</p>\n<p>Prospective homeowners in Stadsig can rest assured as ATVANTAGE comes with an impressive property track record and the experience and expertise to realise Stadsig’s full potential. With offices in Cape Town, Centurion, Nairobi (Kenya) and Mahé (Seychelles), the company has a wealth of experience driven by an experienced and dynamic team.</p>\n<p>For further information on Stadsig Country Estate, visit www.atvantage.co.za, send an email to<br />\ncrm@stadsig.co.za or call Johandre le Roux on +27 (83) 571 7279.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(8419,214969,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_5 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_2 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					advantage are the new developers for<br />\nstadsig private country estate\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_6 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9 et_pb_equal_columns et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_5 et_pb_image_sticky\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_news1.jpg\" alt=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_3 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</p>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem</p>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(8420,214983,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_7 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_4 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					new landscape design will elevate the property value\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_8 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_11 et_pb_equal_columns et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_6 et_pb_image_sticky\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_news2.jpg\" alt=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_5 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</p>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem</p>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(8421,225691,'_wp_attached_file','STADSIG_BuildingAgreement_25June2019.pdf'),(8422,225692,'_wp_attached_file','STADSIG_DeedOfSale_25June2019.pdf'),(8423,225693,'_wp_attached_file','StadsigDocuments_GeneralSpecifications_25June2019.pdf'),(8424,225694,'_wp_attached_file','StadsigDocuments_SDP_25June2019.pdf'),(8425,225695,'_wp_attached_file','StadsigDocuments_SubdivisionPhasing_25June2019.pdf'),(8426,225696,'_wp_attached_file','StadsigDocuments_UnitTypeAllocation_25June2019.pdf'),(8427,225691,'_edit_lock','1562577218:1'),(8428,225692,'_edit_lock','1562577254:1'),(8429,225693,'_edit_lock','1562577295:1'),(8430,225694,'_edit_lock','1562578250:1'),(8431,225695,'_edit_lock','1562578105:1'),(8432,225696,'_edit_lock','1562578104:1'),(8433,225551,'_et_pb_first_image',''),(8434,225551,'_et_pb_truncate_post',''),(8435,223340,'_et_pb_first_image',''),(8436,223340,'_et_pb_truncate_post',''),(8442,58,'_et_pb_first_image',''),(8443,58,'_et_pb_truncate_post',''),(8444,223333,'_et_pb_first_image',''),(8445,223333,'_et_pb_truncate_post',''),(8446,223346,'_et_pb_first_image',''),(8447,223346,'_et_pb_truncate_post',''),(8448,223349,'_et_pb_first_image',''),(8449,223349,'_et_pb_truncate_post',''),(8450,223363,'_et_pb_first_image',''),(8451,223363,'_et_pb_truncate_post',''),(8452,223369,'_et_pb_ab_subjects',''),(8454,223369,'_et_pb_first_image',''),(8455,223369,'_et_pb_truncate_post',''),(8458,225743,'_wp_attached_file','Stadsig_Pricelist_1Jul2019.pdf'),(8459,225743,'_edit_lock','1562591984:1'),(8460,36,'_oembed_7ef7a9ae391ffdccd41373838ee1328a','{{unknown}}'),(8461,36,'_oembed_ecc06766def5a18e6a50c47de917c60f','{{unknown}}'),(8475,225765,'_wp_attached_file','StadsigPricelistJuly2019.pdf'),(8476,225765,'_edit_lock','1564136457:1'),(8526,225789,'_wp_attached_file','Stadsig_Gallery_TheEstate_July2019_11.jpg'),(8527,225789,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.998647326909871;s:5:\"bytes\";i:7206;s:11:\"size_before\";i:144159;s:10:\"size_after\";i:136953;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.26;s:5:\"bytes\";i:317;s:11:\"size_before\";i:6030;s:10:\"size_after\";i:5713;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.63;s:5:\"bytes\";i:672;s:11:\"size_before\";i:14512;s:10:\"size_after\";i:13840;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.49;s:5:\"bytes\";i:925;s:11:\"size_before\";i:20612;s:10:\"size_after\";i:19687;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.89;s:5:\"bytes\";i:1136;s:11:\"size_before\";i:23245;s:10:\"size_after\";i:22109;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.83;s:5:\"bytes\";i:1805;s:11:\"size_before\";i:37359;s:10:\"size_after\";i:35554;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54;s:5:\"bytes\";i:2351;s:11:\"size_before\";i:42401;s:10:\"size_after\";i:40050;s:4:\"time\";d:0.05;}}}'),(8528,225789,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:41:\"Stadsig_Gallery_TheEstate_July2019_11.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Stadsig_Gallery_TheEstate_July2019_11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Stadsig_Gallery_TheEstate_July2019_11-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"Stadsig_Gallery_TheEstate_July2019_11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"Stadsig_Gallery_TheEstate_July2019_11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"Stadsig_Gallery_TheEstate_July2019_11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"Stadsig_Gallery_TheEstate_July2019_11-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;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:{}}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 18:08:24\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"71.93\";}'),(8556,223355,'_et_pb_first_image',''),(8557,223355,'_et_pb_truncate_post',''),(8558,225804,'_menu_item_type','post_type'),(8559,225804,'_menu_item_menu_item_parent','0'),(8560,225804,'_menu_item_object_id','223355'),(8561,225804,'_menu_item_object','page'),(8562,225804,'_menu_item_target',''),(8563,225804,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(8564,225804,'_menu_item_xfn',''),(8565,225804,'_menu_item_url',''),(8584,225873,'_wp_attached_file','Stadsig_Home_Video.mp4'),(8585,225873,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:11277301;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:91;s:16:\"length_formatted\";s:4:\"1:31\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1564734814;}'),(8586,225881,'_wp_attached_file','Stadsig_Home_Video-1.mp4'),(8587,225881,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:11277301;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:91;s:16:\"length_formatted\";s:4:\"1:31\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1564734814;}'),(8659,225902,'_et_pb_built_for_post_type','page'),(8660,225902,'_edit_lock','1564753061:1'),(8662,225902,'_et_pb_enable_shortcode_tracking',''),(8663,225902,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"225902\" /]'),(8664,225902,'_et_pb_custom_css',''),(8665,225902,'_et_pb_gutter_width','3'),(8667,225902,'_et_pb_first_image',''),(8668,225902,'_et_pb_truncate_post',''),(8669,225902,'_et_builder_version','BB|Divi|3.26.4'),(8670,225902,'_et_pb_show_page_creation','off'),(8671,225902,'_edit_last','1'),(8672,225902,'post_do_preventscroll','0'),(8673,225902,'do_at_pages_selected',''),(8674,225902,'css_selector_at_pages_selected',''),(8675,225902,'post_enableurltrigger','0'),(8676,225902,'overlay_automatictrigger','0'),(8677,225902,'overlay_automatictrigger_onceperload','0'),(8678,225902,'overlay_automatictrigger_disablemobile','0'),(8679,225902,'overlay_automatictrigger_disabletablet','0'),(8680,225902,'overlay_automatictrigger_disabledesktop','0'),(8681,225902,'post_do_hideclosebtn','0'),(8682,225902,'post_do_customizeclosebtn','0'),(8683,225902,'do_enable_scheduling','0'),(8684,225902,'meta-mhmm-header','disabled'),(8685,225902,'meta-mhmm-style','default'),(8686,225902,'_et_pb_use_builder','on'),(8687,225902,'_et_pb_old_content',''),(8690,225909,'_edit_last','1'),(8691,225909,'_edit_lock','1579244113:1'),(8692,225909,'_et_pb_overlay_effect','overlay-hugeinc'),(8693,225909,'post_overlay_bg_color','rgba(0,0,0,0.01)'),(8694,225909,'post_overlay_font_color',''),(8695,225909,'post_do_preventscroll','0'),(8696,225909,'do_at_pages','specific'),(8697,225909,'do_at_pages_selected','a:1:{i:0;s:2:\"58\";}'),(8698,225909,'post_css_selector',''),(8699,225909,'css_selector_at_pages_selected',''),(8700,225909,'post_enableurltrigger','1'),(8701,225909,'overlay_automatictrigger','overlay-timed'),(8702,225909,'overlay_automatictrigger_onceperload','1'),(8703,225909,'overlay_automatictrigger_disablemobile','1'),(8704,225909,'overlay_automatictrigger_disabletablet','0'),(8705,225909,'overlay_automatictrigger_disabledesktop','0'),(8706,225909,'dov_closebtn_cookie','0'),(8707,225909,'post_do_hideclosebtn','0'),(8708,225909,'post_do_customizeclosebtn','1'),(8709,225909,'post_doclosebtn_text_color','#ffffff'),(8710,225909,'post_doclosebtn_bg_color','#a6bf96'),(8711,225909,'post_doclosebtn_fontsize','39'),(8712,225909,'post_doclosebtn_borderradius','5'),(8713,225909,'post_doclosebtn_padding','6'),(8714,225909,'do_enable_scheduling','0'),(8715,225909,'meta-mhmm-header','disabled'),(8716,225909,'meta-mhmm-style','default'),(8717,225909,'_et_pb_page_layout','et_no_sidebar'),(8718,225909,'_et_pb_side_nav','off'),(8719,225909,'_et_pb_use_builder','on'),(8720,225909,'_et_pb_first_image',''),(8721,225909,'_et_pb_truncate_post',''),(8722,225909,'_et_pb_old_content',''),(8723,225909,'_et_pb_built_for_post_type','page'),(8725,225909,'_et_pb_enable_shortcode_tracking',''),(8726,225909,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"225909\" /]'),(8727,225909,'_et_pb_custom_css',''),(8728,225909,'_et_pb_gutter_width','3'),(8729,225909,'_thumbnail_id',''),(8730,225909,'_et_builder_version','BB|Divi|3.26.4'),(8731,225909,'_et_pb_show_page_creation','off'),(8732,225909,'post_dolistpages',''),(8738,225902,'_et_pb_ab_stats_refresh_interval','hourly'),(8826,225909,'overlay_automatictrigger_timed_value','5'),(8827,225909,'overlay_automatictrigger_scroll_from_value','200px'),(8828,225909,'overlay_automatictrigger_scroll_to_value',''),(8833,58,'post_do_preventscroll','0'),(8834,58,'do_at_pages_selected',''),(8835,58,'css_selector_at_pages_selected',''),(8836,58,'post_enableurltrigger','0'),(8837,58,'overlay_automatictrigger','0'),(8838,58,'overlay_automatictrigger_onceperload','0'),(8839,58,'overlay_automatictrigger_disablemobile','0'),(8840,58,'overlay_automatictrigger_disabletablet','0'),(8841,58,'overlay_automatictrigger_disabledesktop','0'),(8842,58,'post_do_hideclosebtn','0'),(8843,58,'post_do_customizeclosebtn','0'),(8844,58,'do_enable_scheduling','0'),(8884,223355,'post_do_preventscroll','0'),(8885,223355,'do_at_pages_selected',''),(8886,223355,'css_selector_at_pages_selected',''),(8887,223355,'post_enableurltrigger','0'),(8888,223355,'overlay_automatictrigger','0'),(8889,223355,'overlay_automatictrigger_onceperload','0'),(8890,223355,'overlay_automatictrigger_disablemobile','0'),(8891,223355,'overlay_automatictrigger_disabletablet','0'),(8892,223355,'overlay_automatictrigger_disabledesktop','0'),(8893,223355,'post_do_hideclosebtn','0'),(8894,223355,'post_do_customizeclosebtn','0'),(8895,223355,'do_enable_scheduling','0'),(8987,223346,'post_do_preventscroll','0'),(8988,223346,'do_at_pages_selected',''),(8989,223346,'css_selector_at_pages_selected',''),(8990,223346,'post_enableurltrigger','0'),(8991,223346,'overlay_automatictrigger','0'),(8992,223346,'overlay_automatictrigger_onceperload','0'),(8993,223346,'overlay_automatictrigger_disablemobile','0'),(8994,223346,'overlay_automatictrigger_disabletablet','0'),(8995,223346,'overlay_automatictrigger_disabledesktop','0'),(8996,223346,'post_do_hideclosebtn','0'),(8997,223346,'post_do_customizeclosebtn','0'),(8998,223346,'do_enable_scheduling','0'),(9001,226007,'_et_pb_built_for_post_type','page'),(9002,226007,'_edit_lock','1570701663:1'),(9003,226008,'_et_pb_built_for_post_type','page'),(9004,226009,'_et_pb_built_for_post_type','page'),(9005,226010,'_et_pb_built_for_post_type','page'),(9035,226015,'_et_pb_built_for_post_type','page'),(9036,226016,'frm_form_id','6'),(9037,58,'_et_pb_ab_subjects',''),(9050,225909,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(9051,225909,'_et_pb_ab_subjects',''),(9052,225909,'_et_pb_truncate_post_date',''),(9053,225909,'do_at_pagesexception_selected',''),(9054,225909,'category_at_categories','all'),(9055,225909,'category_at_categories_selected',''),(9056,225909,'category_at_exceptioncategories_selected',''),(9057,225909,'tag_at_tags','all'),(9058,225909,'tag_at_tags_selected',''),(9059,225909,'tag_at_exceptiontags_selected',''),(9060,225909,'do_displaylocations_archive','0'),(9061,225909,'do_enableajax','0'),(9065,58,'_et_pb_truncate_post_date',''),(9066,58,'do_at_pagesexception_selected',''),(9067,58,'category_at_categories_selected',''),(9068,58,'category_at_exceptioncategories_selected',''),(9069,58,'tag_at_tags_selected',''),(9070,58,'tag_at_exceptiontags_selected',''),(9071,58,'do_displaylocations_archive','0'),(9072,58,'do_enableajax','0'),(9142,223369,'post_do_preventscroll','0'),(9143,223369,'do_at_pages_selected',''),(9144,223369,'do_at_pagesexception_selected',''),(9145,223369,'category_at_categories_selected',''),(9146,223369,'category_at_exceptioncategories_selected',''),(9147,223369,'tag_at_tags_selected',''),(9148,223369,'tag_at_exceptiontags_selected',''),(9149,223369,'do_displaylocations_archive','0'),(9150,223369,'css_selector_at_pages_selected',''),(9151,223369,'post_enableurltrigger','0'),(9152,223369,'do_enableajax','0'),(9153,223369,'overlay_automatictrigger','0'),(9154,223369,'overlay_automatictrigger_onceperload','0'),(9155,223369,'overlay_automatictrigger_disablemobile','0'),(9156,223369,'overlay_automatictrigger_disabletablet','0'),(9157,223369,'overlay_automatictrigger_disabledesktop','0'),(9158,223369,'post_do_hideclosebtn','0'),(9159,223369,'post_do_customizeclosebtn','0'),(9160,223369,'do_enable_scheduling','0'),(9161,224901,'post_do_preventscroll','0'),(9162,224901,'do_at_pages_selected',''),(9163,224901,'do_at_pagesexception_selected',''),(9164,224901,'category_at_categories_selected',''),(9165,224901,'category_at_exceptioncategories_selected',''),(9166,224901,'tag_at_tags_selected',''),(9167,224901,'tag_at_exceptiontags_selected',''),(9168,224901,'do_displaylocations_archive','0'),(9169,224901,'css_selector_at_pages_selected',''),(9170,224901,'post_enableurltrigger','0'),(9171,224901,'do_enableajax','0'),(9172,224901,'overlay_automatictrigger','0'),(9173,224901,'overlay_automatictrigger_onceperload','0'),(9174,224901,'overlay_automatictrigger_disablemobile','0'),(9175,224901,'overlay_automatictrigger_disabletablet','0'),(9176,224901,'overlay_automatictrigger_disabledesktop','0'),(9177,224901,'post_do_hideclosebtn','0'),(9178,224901,'post_do_customizeclosebtn','0'),(9179,224901,'do_enable_scheduling','0'),(9180,225551,'post_do_preventscroll','0'),(9181,225551,'do_at_pages_selected',''),(9182,225551,'do_at_pagesexception_selected',''),(9183,225551,'category_at_categories_selected',''),(9184,225551,'category_at_exceptioncategories_selected',''),(9185,225551,'tag_at_tags_selected',''),(9186,225551,'tag_at_exceptiontags_selected',''),(9187,225551,'do_displaylocations_archive','0'),(9188,225551,'css_selector_at_pages_selected',''),(9189,225551,'post_enableurltrigger','0'),(9190,225551,'do_enableajax','0'),(9191,225551,'overlay_automatictrigger','0'),(9192,225551,'overlay_automatictrigger_onceperload','0'),(9193,225551,'overlay_automatictrigger_disablemobile','0'),(9194,225551,'overlay_automatictrigger_disabletablet','0'),(9195,225551,'overlay_automatictrigger_disabledesktop','0'),(9196,225551,'post_do_hideclosebtn','0'),(9197,225551,'post_do_customizeclosebtn','0'),(9198,225551,'do_enable_scheduling','0'),(9199,223340,'post_do_preventscroll','0'),(9200,223340,'do_at_pages_selected',''),(9201,223340,'do_at_pagesexception_selected',''),(9202,223340,'category_at_categories_selected',''),(9203,223340,'category_at_exceptioncategories_selected',''),(9204,223340,'tag_at_tags_selected',''),(9205,223340,'tag_at_exceptiontags_selected',''),(9206,223340,'do_displaylocations_archive','0'),(9207,223340,'css_selector_at_pages_selected',''),(9208,223340,'post_enableurltrigger','0'),(9209,223340,'do_enableajax','0'),(9210,223340,'overlay_automatictrigger','0'),(9211,223340,'overlay_automatictrigger_onceperload','0'),(9212,223340,'overlay_automatictrigger_disablemobile','0'),(9213,223340,'overlay_automatictrigger_disabletablet','0'),(9214,223340,'overlay_automatictrigger_disabledesktop','0'),(9215,223340,'post_do_hideclosebtn','0'),(9216,223340,'post_do_customizeclosebtn','0'),(9217,223340,'do_enable_scheduling','0'),(9218,223355,'do_at_pagesexception_selected',''),(9219,223355,'category_at_categories_selected',''),(9220,223355,'category_at_exceptioncategories_selected',''),(9221,223355,'tag_at_tags_selected',''),(9222,223355,'tag_at_exceptiontags_selected',''),(9223,223355,'do_displaylocations_archive','0'),(9224,223355,'do_enableajax','0'),(9230,223346,'do_at_pagesexception_selected',''),(9231,223346,'category_at_categories_selected',''),(9232,223346,'category_at_exceptioncategories_selected',''),(9233,223346,'tag_at_tags_selected',''),(9234,223346,'tag_at_exceptiontags_selected',''),(9235,223346,'do_displaylocations_archive','0'),(9236,223346,'do_enableajax','0'),(9237,223363,'post_do_preventscroll','0'),(9238,223363,'do_at_pages_selected',''),(9239,223363,'do_at_pagesexception_selected',''),(9240,223363,'category_at_categories_selected',''),(9241,223363,'category_at_exceptioncategories_selected',''),(9242,223363,'tag_at_tags_selected',''),(9243,223363,'tag_at_exceptiontags_selected',''),(9244,223363,'do_displaylocations_archive','0'),(9245,223363,'css_selector_at_pages_selected',''),(9246,223363,'post_enableurltrigger','0'),(9247,223363,'do_enableajax','0'),(9248,223363,'overlay_automatictrigger','0'),(9249,223363,'overlay_automatictrigger_onceperload','0'),(9250,223363,'overlay_automatictrigger_disablemobile','0'),(9251,223363,'overlay_automatictrigger_disabletablet','0'),(9252,223363,'overlay_automatictrigger_disabledesktop','0'),(9253,223363,'post_do_hideclosebtn','0'),(9254,223363,'post_do_customizeclosebtn','0'),(9255,223363,'do_enable_scheduling','0'),(9256,223363,'_et_pb_truncate_post_date',''),(9257,223349,'_et_pb_truncate_post_date',''),(9258,223349,'post_do_preventscroll','0'),(9259,223349,'do_at_pages_selected',''),(9260,223349,'do_at_pagesexception_selected',''),(9261,223349,'category_at_categories_selected',''),(9262,223349,'category_at_exceptioncategories_selected',''),(9263,223349,'tag_at_tags_selected',''),(9264,223349,'tag_at_exceptiontags_selected',''),(9265,223349,'do_displaylocations_archive','0'),(9266,223349,'css_selector_at_pages_selected',''),(9267,223349,'post_enableurltrigger','0'),(9268,223349,'do_enableajax','0'),(9269,223349,'overlay_automatictrigger','0'),(9270,223349,'overlay_automatictrigger_onceperload','0'),(9271,223349,'overlay_automatictrigger_disablemobile','0'),(9272,223349,'overlay_automatictrigger_disabletablet','0'),(9273,223349,'overlay_automatictrigger_disabledesktop','0'),(9274,223349,'post_do_hideclosebtn','0'),(9275,223349,'post_do_customizeclosebtn','0'),(9276,223349,'do_enable_scheduling','0'),(9279,1460,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(9281,215035,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(9284,226064,'_wp_attached_file','Stadsig_Website_1920_homeHeader.jpg'),(9285,226064,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:517;s:4:\"file\";s:35:\"Stadsig_Website_1920_homeHeader.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Stadsig_Website_1920_homeHeader-300x81.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Stadsig_Website_1920_homeHeader-1024x276.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Stadsig_Website_1920_homeHeader-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:\"Stadsig_Website_1920_homeHeader-768x207.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"Stadsig_Website_1920_homeHeader-1536x414.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Stadsig_Website_1920_homeHeader-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Stadsig_Website_1920_homeHeader-1080x517.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:517;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Stadsig_Website_1920_homeHeader-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Stadsig_Website_1920_homeHeader-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Stadsig_Website_1920_homeHeader-1080x291.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Stadsig_Website_1920_homeHeader-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:44:\"Stadsig_Website_1920_homeHeader-1280x345.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:43:\"Stadsig_Website_1920_homeHeader-980x264.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"Stadsig_Website_1920_homeHeader-480x129.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:129;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:{}}s:21:\"ShortPixelImprovement\";s:5:\"57.61\";s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:3;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 10:22:35\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}}'),(9286,226064,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.144690010269684;s:5:\"bytes\";i:40227;s:11:\"size_before\";i:781913;s:10:\"size_after\";i:741686;s:4:\"time\";d:0.42999999999999994;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.26;s:5:\"bytes\";i:489;s:11:\"size_before\";i:7814;s:10:\"size_after\";i:7325;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.16;s:5:\"bytes\";i:3280;s:11:\"size_before\";i:63569;s:10:\"size_after\";i:60289;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.44;s:5:\"bytes\";i:487;s:11:\"size_before\";i:7561;s:10:\"size_after\";i:7074;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.15;s:5:\"bytes\";i:1955;s:11:\"size_before\";i:37965;s:10:\"size_after\";i:36010;s:4:\"time\";d:0.02;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8;s:5:\"bytes\";i:6156;s:11:\"size_before\";i:128122;s:10:\"size_after\";i:121966;s:4:\"time\";d:0.05;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.76;s:5:\"bytes\";i:1638;s:11:\"size_before\";i:28449;s:10:\"size_after\";i:26811;s:4:\"time\";d:0.02;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.26;s:5:\"bytes\";i:7119;s:11:\"size_before\";i:135434;s:10:\"size_after\";i:128315;s:4:\"time\";d:0.05;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04;s:5:\"bytes\";i:1976;s:11:\"size_before\";i:32723;s:10:\"size_after\";i:30747;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.47;s:5:\"bytes\";i:2864;s:11:\"size_before\";i:52404;s:10:\"size_after\";i:49540;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.88;s:5:\"bytes\";i:3423;s:11:\"size_before\";i:70135;s:10:\"size_after\";i:66712;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.74;s:5:\"bytes\";i:2300;s:11:\"size_before\";i:48523;s:10:\"size_after\";i:46223;s:4:\"time\";d:0.05;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96;s:5:\"bytes\";i:4672;s:11:\"size_before\";i:94197;s:10:\"size_after\";i:89525;s:4:\"time\";d:0.04;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.95;s:5:\"bytes\";i:2871;s:11:\"size_before\";i:58055;s:10:\"size_after\";i:55184;s:4:\"time\";d:0.04;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.88;s:5:\"bytes\";i:997;s:11:\"size_before\";i:16962;s:10:\"size_after\";i:15965;s:4:\"time\";d:0.03;}}}'),(9288,226064,'original-file','Stadsig_Website_1920_homeHeader-updraft-pre-smush-original.jpg'),(9289,226064,'smush-complete','1'),(9290,226064,'smush-info','The file was compressed from 351.39 KB to 295.17 KB saving 16 percent using WP-Optimize'),(9291,226064,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:359822;s:12:\"smushed-size\";i:302259;s:15:\"savings-percent\";d:16;}'),(9293,226069,'_wp_attached_file','Stadsig_NewContactParalax_1280.jpg'),(9294,226069,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1280;s:6:\"height\";i:673;s:4:\"file\";s:34:\"Stadsig_NewContactParalax_1280.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Stadsig_NewContactParalax_1280-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Stadsig_NewContactParalax_1280-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Stadsig_NewContactParalax_1280-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:\"Stadsig_NewContactParalax_1280-768x404.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Stadsig_NewContactParalax_1280-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"Stadsig_NewContactParalax_1280-1080x673.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Stadsig_NewContactParalax_1280-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Stadsig_NewContactParalax_1280-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Stadsig_NewContactParalax_1280-1080x568.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Stadsig_NewContactParalax_1280-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"Stadsig_NewContactParalax_1280-980x515.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:42:\"Stadsig_NewContactParalax_1280-480x252.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:252;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:56:58\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"51.8\";}'),(9295,226069,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.081851873998878;s:5:\"bytes\";i:39943;s:11:\"size_before\";i:785993;s:10:\"size_after\";i:746050;s:4:\"time\";d:0.35999999999999993;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.23;s:5:\"bytes\";i:672;s:11:\"size_before\";i:12855;s:10:\"size_after\";i:12183;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.76;s:5:\"bytes\";i:5495;s:11:\"size_before\";i:115389;s:10:\"size_after\";i:109894;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8;s:5:\"bytes\";i:402;s:11:\"size_before\";i:6929;s:10:\"size_after\";i:6527;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.78;s:5:\"bytes\";i:3314;s:11:\"size_before\";i:69272;s:10:\"size_after\";i:65958;s:4:\"time\";d:0.03;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.08;s:5:\"bytes\";i:1274;s:11:\"size_before\";i:25096;s:10:\"size_after\";i:23822;s:4:\"time\";d:0.01;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.78;s:5:\"bytes\";i:10003;s:11:\"size_before\";i:172962;s:10:\"size_after\";i:162959;s:4:\"time\";d:0.07;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.26;s:5:\"bytes\";i:1474;s:11:\"size_before\";i:28047;s:10:\"size_after\";i:26573;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.21;s:5:\"bytes\";i:2379;s:11:\"size_before\";i:45629;s:10:\"size_after\";i:43250;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.81;s:5:\"bytes\";i:6052;s:11:\"size_before\";i:125764;s:10:\"size_after\";i:119712;s:4:\"time\";d:0.06;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.98;s:5:\"bytes\";i:2364;s:11:\"size_before\";i:47514;s:10:\"size_after\";i:45150;s:4:\"time\";d:0.03;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7;s:5:\"bytes\";i:5039;s:11:\"size_before\";i:107182;s:10:\"size_after\";i:102143;s:4:\"time\";d:0.04;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.02;s:5:\"bytes\";i:1475;s:11:\"size_before\";i:29354;s:10:\"size_after\";i:27879;s:4:\"time\";d:0.02;}}}'),(9296,226069,'original-file','Stadsig_NewContactParalax_1280-updraft-pre-smush-original.jpg'),(9297,226069,'smush-complete','1'),(9298,226069,'smush-info','The file was compressed from 197.95 KB to 197.95 KB saving 0 percent using WP-Optimize'),(9299,226069,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:202703;s:12:\"smushed-size\";i:202703;s:15:\"savings-percent\";d:0;}'),(9301,226074,'_wp_attached_file','HouseImage1_850.jpg'),(9302,226074,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:850;s:6:\"height\";i:398;s:4:\"file\";s:19:\"HouseImage1_850.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"HouseImage1_850-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"HouseImage1_850-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:\"HouseImage1_850-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"HouseImage1_850-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"HouseImage1_850-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"HouseImage1_850-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"HouseImage1_850-400x398.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:27:\"HouseImage1_850-480x225.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:225;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:55:35\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"49.1\";}'),(9303,226074,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.6092583399279428;s:5:\"bytes\";i:7343;s:11:\"size_before\";i:203449;s:10:\"size_after\";i:196106;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.47;s:5:\"bytes\";i:644;s:11:\"size_before\";i:11771;s:10:\"size_after\";i:11127;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.03;s:5:\"bytes\";i:405;s:11:\"size_before\";i:6712;s:10:\"size_after\";i:6307;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.07;s:5:\"bytes\";i:1525;s:11:\"size_before\";i:49751;s:10:\"size_after\";i:48226;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95;s:5:\"bytes\";i:860;s:11:\"size_before\";i:21780;s:10:\"size_after\";i:20920;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.65;s:5:\"bytes\";i:849;s:11:\"size_before\";i:23275;s:10:\"size_after\";i:22426;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.11;s:5:\"bytes\";i:1090;s:11:\"size_before\";i:35098;s:10:\"size_after\";i:34008;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.32;s:5:\"bytes\";i:1021;s:11:\"size_before\";i:30729;s:10:\"size_after\";i:29708;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9;s:5:\"bytes\";i:949;s:11:\"size_before\";i:24333;s:10:\"size_after\";i:23384;s:4:\"time\";d:0.02;}}}'),(9304,226075,'_wp_attached_file','HouseImage2_850.jpg'),(9305,226075,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:850;s:6:\"height\";i:398;s:4:\"file\";s:19:\"HouseImage2_850.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"HouseImage2_850-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"HouseImage2_850-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:\"HouseImage2_850-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"HouseImage2_850-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"HouseImage2_850-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"HouseImage2_850-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"HouseImage2_850-400x398.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:27:\"HouseImage2_850-480x225.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:225;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:54:52\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"44.1\";}'),(9306,226075,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.619045191919119;s:5:\"bytes\";i:15434;s:11:\"size_before\";i:274673;s:10:\"size_after\";i:259239;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.15;s:5:\"bytes\";i:1026;s:11:\"size_before\";i:14356;s:10:\"size_after\";i:13330;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.07;s:5:\"bytes\";i:571;s:11:\"size_before\";i:8072;s:10:\"size_after\";i:7501;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.25;s:5:\"bytes\";i:3566;s:11:\"size_before\";i:67982;s:10:\"size_after\";i:64416;s:4:\"time\";d:0.03;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.68;s:5:\"bytes\";i:1633;s:11:\"size_before\";i:28759;s:10:\"size_after\";i:27126;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.78;s:5:\"bytes\";i:1827;s:11:\"size_before\";i:31627;s:10:\"size_after\";i:29800;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.27;s:5:\"bytes\";i:2537;s:11:\"size_before\";i:48175;s:10:\"size_after\";i:45638;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.49;s:5:\"bytes\";i:2407;s:11:\"size_before\";i:43825;s:10:\"size_after\";i:41418;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.86;s:5:\"bytes\";i:1867;s:11:\"size_before\";i:31877;s:10:\"size_after\";i:30010;s:4:\"time\";d:0.02;}}}'),(9307,226076,'_wp_attached_file','HouseImage3_850.jpg'),(9308,226076,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:850;s:6:\"height\";i:398;s:4:\"file\";s:19:\"HouseImage3_850.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"HouseImage3_850-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"HouseImage3_850-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:\"HouseImage3_850-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"HouseImage3_850-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"HouseImage3_850-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"HouseImage3_850-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"HouseImage3_850-400x398.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:27:\"HouseImage3_850-480x225.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:225;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:53:44\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"50.04\";}'),(9309,226076,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.283292598156827;s:5:\"bytes\";i:5857;s:11:\"size_before\";i:178388;s:10:\"size_after\";i:172531;s:4:\"time\";d:0.12000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5;s:5:\"bytes\";i:451;s:11:\"size_before\";i:10019;s:10:\"size_after\";i:9568;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.74;s:5:\"bytes\";i:359;s:11:\"size_before\";i:6257;s:10:\"size_after\";i:5898;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.61;s:5:\"bytes\";i:1056;s:11:\"size_before\";i:40392;s:10:\"size_after\";i:39336;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.65;s:5:\"bytes\";i:716;s:11:\"size_before\";i:19634;s:10:\"size_after\";i:18918;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.38;s:5:\"bytes\";i:705;s:11:\"size_before\";i:20868;s:10:\"size_after\";i:20163;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9;s:5:\"bytes\";i:911;s:11:\"size_before\";i:31426;s:10:\"size_after\";i:30515;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.27;s:5:\"bytes\";i:966;s:11:\"size_before\";i:29502;s:10:\"size_after\";i:28536;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.42;s:5:\"bytes\";i:693;s:11:\"size_before\";i:20290;s:10:\"size_after\";i:19597;s:4:\"time\";d:0.01;}}}'),(9311,226074,'original-file','HouseImage1_850-updraft-pre-smush-original.jpg'),(9312,226079,'_wp_attached_file','feather-2_450.png'),(9313,226079,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:450;s:6:\"height\";i:277;s:4:\"file\";s:17:\"feather-2_450.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"feather-2_450-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"feather-2_450-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"feather-2_450-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"feather-2_450-400x277.png\";s:5:\"width\";i:400;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"feather-2_450-400x277.png\";s:5:\"width\";i:400;s:6:\"height\";i:277;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:52:59\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"11.65\";}'),(9314,226079,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:469742;s:10:\"size_after\";i:469742;s:4:\"time\";d:0.55;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:68196;s:10:\"size_after\";i:68196;s:4:\"time\";d:0.05;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:38428;s:10:\"size_after\";i:38428;s:4:\"time\";d:0.05;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:124822;s:10:\"size_after\";i:124822;s:4:\"time\";d:0.2;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119148;s:10:\"size_after\";i:119148;s:4:\"time\";d:0.11;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119148;s:10:\"size_after\";i:119148;s:4:\"time\";d:0.14;}}}'),(9315,226074,'smush-complete','1'),(9316,226074,'smush-info','The file was compressed from 74.76 KB to 73.07 KB saving 2.27 percent using WP-Optimize'),(9317,226074,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:76559;s:12:\"smushed-size\";i:74822;s:15:\"savings-percent\";d:2.27;}'),(9318,226075,'original-file','HouseImage2_850-updraft-pre-smush-original.jpg'),(9320,226075,'smush-complete','1'),(9321,226075,'smush-info','The file was compressed from 105.63 KB to 103.87 KB saving 1.67 percent using WP-Optimize'),(9322,226075,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:108167;s:12:\"smushed-size\";i:106364;s:15:\"savings-percent\";d:1.67;}'),(9323,226076,'original-file','HouseImage3_850-updraft-pre-smush-original.jpg'),(9324,226076,'smush-complete','1'),(9325,226076,'smush-info','The file was compressed from 60.69 KB to 59.17 KB saving 2.49 percent using WP-Optimize'),(9326,226076,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:62143;s:12:\"smushed-size\";i:60595;s:15:\"savings-percent\";d:2.49;}'),(9328,226079,'original-file','feather-2_450-updraft-pre-smush-original.png'),(9329,226079,'smush-complete','1'),(9330,226079,'smush-info','The file was compressed from 124.69 KB to 50.05 KB saving 59.86 percent using WP-Optimize'),(9331,226079,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:127678;s:12:\"smushed-size\";i:51255;s:15:\"savings-percent\";d:59.86;}'),(9333,223313,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(9334,223327,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(9335,223327,'_et_pb_ab_subjects',''),(9336,223327,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"223327\" /]'),(9338,223327,'_et_pb_first_image',''),(9339,223327,'_et_pb_truncate_post',''),(9340,223327,'_et_pb_truncate_post_date',''),(9341,223327,'_et_pb_show_page_creation','off'),(9342,223327,'post_do_preventscroll','0'),(9343,223327,'do_at_pages_selected',''),(9344,223327,'do_at_pagesexception_selected',''),(9345,223327,'category_at_categories_selected',''),(9346,223327,'category_at_exceptioncategories_selected',''),(9347,223327,'tag_at_tags_selected',''),(9348,223327,'tag_at_exceptiontags_selected',''),(9349,223327,'do_displaylocations_archive','0'),(9350,223327,'css_selector_at_pages_selected',''),(9351,223327,'post_enableurltrigger','0'),(9352,223327,'do_enableajax','0'),(9353,223327,'overlay_automatictrigger','0'),(9354,223327,'overlay_automatictrigger_onceperload','0'),(9355,223327,'overlay_automatictrigger_disablemobile','0'),(9356,223327,'overlay_automatictrigger_disabletablet','0'),(9357,223327,'overlay_automatictrigger_disabledesktop','0'),(9358,223327,'post_do_hideclosebtn','0'),(9359,223327,'post_do_customizeclosebtn','0'),(9360,223327,'do_enable_scheduling','0'),(9363,223328,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(9364,223328,'_et_pb_ab_subjects',''),(9365,223328,'_et_pb_enable_shortcode_tracking',''),(9366,223328,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"223328\" /]'),(9367,223328,'_et_pb_custom_css',''),(9368,223328,'_et_pb_gutter_width','3'),(9370,223328,'_et_pb_first_image',''),(9371,223328,'_et_pb_truncate_post',''),(9372,223328,'_et_pb_truncate_post_date',''),(9373,223328,'_et_builder_version','VB|Divi|4.1'),(9374,223328,'_et_pb_show_page_creation','off'),(9375,223328,'_edit_last','1'),(9376,223328,'post_do_preventscroll','0'),(9377,223328,'do_at_pages_selected',''),(9378,223328,'do_at_pagesexception_selected',''),(9379,223328,'category_at_categories_selected',''),(9380,223328,'category_at_exceptioncategories_selected',''),(9381,223328,'tag_at_tags_selected',''),(9382,223328,'tag_at_exceptiontags_selected',''),(9383,223328,'do_displaylocations_archive','0'),(9384,223328,'css_selector_at_pages_selected',''),(9385,223328,'post_enableurltrigger','0'),(9386,223328,'do_enableajax','0'),(9387,223328,'overlay_automatictrigger','0'),(9388,223328,'overlay_automatictrigger_onceperload','0'),(9389,223328,'overlay_automatictrigger_disablemobile','0'),(9390,223328,'overlay_automatictrigger_disabletablet','0'),(9391,223328,'overlay_automatictrigger_disabledesktop','0'),(9392,223328,'post_do_hideclosebtn','0'),(9393,223328,'post_do_customizeclosebtn','0'),(9394,223328,'do_enable_scheduling','0'),(9395,223328,'meta-mhmm-header','default'),(9396,223328,'meta-mhmm-style','default'),(9397,223328,'_et_pb_use_builder','on'),(9398,223328,'_et_pb_old_content',''),(9399,226094,'_wp_attached_file','HomeCover_Mobile_650.jpg'),(9400,226094,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:650;s:6:\"height\";i:286;s:4:\"file\";s:24:\"HomeCover_Mobile_650.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"HomeCover_Mobile_650-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"HomeCover_Mobile_650-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"HomeCover_Mobile_650-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"HomeCover_Mobile_650-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"HomeCover_Mobile_650-510x286.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"HomeCover_Mobile_650-400x286.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"HomeCover_Mobile_650-480x211.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:52:33\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"36.81\";}'),(9402,226094,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.208737161868942;s:5:\"bytes\";i:5819;s:11:\"size_before\";i:138260;s:10:\"size_after\";i:132441;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.53;s:5:\"bytes\";i:617;s:11:\"size_before\";i:11155;s:10:\"size_after\";i:10538;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.83;s:5:\"bytes\";i:389;s:11:\"size_before\";i:6677;s:10:\"size_after\";i:6288;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1;s:5:\"bytes\";i:853;s:11:\"size_before\";i:20816;s:10:\"size_after\";i:19963;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.87;s:5:\"bytes\";i:890;s:11:\"size_before\";i:22968;s:10:\"size_after\";i:22078;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.59;s:5:\"bytes\";i:1057;s:11:\"size_before\";i:29423;s:10:\"size_after\";i:28366;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.39;s:5:\"bytes\";i:1105;s:11:\"size_before\";i:25167;s:10:\"size_after\";i:24062;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12;s:5:\"bytes\";i:908;s:11:\"size_before\";i:22054;s:10:\"size_after\";i:21146;s:4:\"time\";d:0.03;}}}'),(9403,226094,'original-file','HomeCover_Mobile_650-updraft-pre-smush-original.jpg'),(9404,226094,'smush-complete','1'),(9405,226094,'smush-info','The file was compressed from 44.80 KB to 43.90 KB saving 2.01 percent using WP-Optimize'),(9406,226094,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:45876;s:12:\"smushed-size\";i:44956;s:15:\"savings-percent\";d:2.01;}'),(9407,226097,'_wp_attached_file','Gallery_ArtistsImpression_1.jpg'),(9408,226097,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:31:\"Gallery_ArtistsImpression_1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_1-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_1-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:51:54\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"40.01\";}'),(9409,226098,'_wp_attached_file','Gallery_ArtistsImpression_2.jpg'),(9410,226098,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:31:\"Gallery_ArtistsImpression_2.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_2-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_2-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:51:17\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"46.47\";}'),(9411,226097,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.572620362094047;s:5:\"bytes\";i:7827;s:11:\"size_before\";i:171171;s:10:\"size_after\";i:163344;s:4:\"time\";d:0.22999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.16;s:5:\"bytes\";i:760;s:11:\"size_before\";i:14725;s:10:\"size_after\";i:13965;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:360;s:11:\"size_before\";i:5996;s:10:\"size_after\";i:5636;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.52;s:5:\"bytes\";i:967;s:11:\"size_before\";i:21380;s:10:\"size_after\";i:20413;s:4:\"time\";d:0.04;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.74;s:5:\"bytes\";i:1107;s:11:\"size_before\";i:23334;s:10:\"size_after\";i:22227;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.34;s:5:\"bytes\";i:1583;s:11:\"size_before\";i:36486;s:10:\"size_after\";i:34903;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.25;s:5:\"bytes\";i:1585;s:11:\"size_before\";i:37307;s:10:\"size_after\";i:35722;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.59;s:5:\"bytes\";i:1465;s:11:\"size_before\";i:31943;s:10:\"size_after\";i:30478;s:4:\"time\";d:0.06;}}}'),(9412,226099,'_wp_attached_file','Gallery_ArtistsImpression_3.jpg'),(9413,226099,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:31:\"Gallery_ArtistsImpression_3.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_3-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_3-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:49:28\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"44.42\";}'),(9414,226100,'_wp_attached_file','Gallery_ArtistsImpression_4.jpg'),(9415,226098,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.5965577500082433;s:5:\"bytes\";i:5454;s:11:\"size_before\";i:151645;s:10:\"size_after\";i:146191;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.32;s:5:\"bytes\";i:576;s:11:\"size_before\";i:13319;s:10:\"size_after\";i:12743;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79;s:5:\"bytes\";i:359;s:11:\"size_before\";i:6203;s:10:\"size_after\";i:5844;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.78;s:5:\"bytes\";i:708;s:11:\"size_before\";i:18746;s:10:\"size_after\";i:18038;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.75;s:5:\"bytes\";i:758;s:11:\"size_before\";i:20191;s:10:\"size_after\";i:19433;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.37;s:5:\"bytes\";i:1056;s:11:\"size_before\";i:31297;s:10:\"size_after\";i:30241;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.97;s:5:\"bytes\";i:1022;s:11:\"size_before\";i:34462;s:10:\"size_after\";i:33440;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.55;s:5:\"bytes\";i:975;s:11:\"size_before\";i:27427;s:10:\"size_after\";i:26452;s:4:\"time\";d:0.04;}}}'),(9416,226100,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:31:\"Gallery_ArtistsImpression_4.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_4-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_4-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:48:36\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"37.49\";}'),(9417,226099,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9253406618573226;s:5:\"bytes\";i:6856;s:11:\"size_before\";i:174660;s:10:\"size_after\";i:167804;s:4:\"time\";d:0.16999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.23;s:5:\"bytes\";i:816;s:11:\"size_before\";i:15603;s:10:\"size_after\";i:14787;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54;s:5:\"bytes\";i:368;s:11:\"size_before\";i:6640;s:10:\"size_after\";i:6272;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.31;s:5:\"bytes\";i:951;s:11:\"size_before\";i:22052;s:10:\"size_after\";i:21101;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.24;s:5:\"bytes\";i:1013;s:11:\"size_before\";i:23875;s:10:\"size_after\";i:22862;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.55;s:5:\"bytes\";i:1325;s:11:\"size_before\";i:37272;s:10:\"size_after\";i:35947;s:4:\"time\";d:0.07;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.01;s:5:\"bytes\";i:1099;s:11:\"size_before\";i:36570;s:10:\"size_after\";i:35471;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.93;s:5:\"bytes\";i:1284;s:11:\"size_before\";i:32648;s:10:\"size_after\";i:31364;s:4:\"time\";d:0.02;}}}'),(9418,226101,'_wp_attached_file','Gallery_ArtistsImpression_5.jpg'),(9419,226101,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:31:\"Gallery_ArtistsImpression_5.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_5-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_5-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:46:12\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"43.04\";}'),(9420,226102,'_wp_attached_file','Gallery_ArtistsImpression_6.jpg'),(9421,226100,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.88954523571172;s:5:\"bytes\";i:15414;s:11:\"size_before\";i:261718;s:10:\"size_after\";i:246304;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.63;s:5:\"bytes\";i:1390;s:11:\"size_before\";i:20980;s:10:\"size_after\";i:19590;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.39;s:5:\"bytes\";i:498;s:11:\"size_before\";i:7797;s:10:\"size_after\";i:7299;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4;s:5:\"bytes\";i:2010;s:11:\"size_before\";i:31430;s:10:\"size_after\";i:29420;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.42;s:5:\"bytes\";i:2263;s:11:\"size_before\";i:35241;s:10:\"size_after\";i:32978;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.19;s:5:\"bytes\";i:3552;s:11:\"size_before\";i:57384;s:10:\"size_after\";i:53832;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4;s:5:\"bytes\";i:2615;s:11:\"size_before\";i:59448;s:10:\"size_after\";i:56833;s:4:\"time\";d:0.04;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.24;s:5:\"bytes\";i:3086;s:11:\"size_before\";i:49438;s:10:\"size_after\";i:46352;s:4:\"time\";d:0.02;}}}'),(9422,226102,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:31:\"Gallery_ArtistsImpression_6.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_6-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_6-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:45:09\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"38.77\";}'),(9423,226103,'_wp_attached_file','Gallery_ArtistsImpression_7.jpg'),(9424,226101,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.164568083389439;s:5:\"bytes\";i:10816;s:11:\"size_before\";i:209427;s:10:\"size_after\";i:198611;s:4:\"time\";d:0.13999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79;s:5:\"bytes\";i:1049;s:11:\"size_before\";i:18119;s:10:\"size_after\";i:17070;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.56;s:5:\"bytes\";i:490;s:11:\"size_before\";i:7468;s:10:\"size_after\";i:6978;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.61;s:5:\"bytes\";i:1455;s:11:\"size_before\";i:25947;s:10:\"size_after\";i:24492;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.57;s:5:\"bytes\";i:1586;s:11:\"size_before\";i:28467;s:10:\"size_after\";i:26881;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.03;s:5:\"bytes\";i:2253;s:11:\"size_before\";i:44834;s:10:\"size_after\";i:42581;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.25;s:5:\"bytes\";i:1927;s:11:\"size_before\";i:45344;s:10:\"size_after\";i:43417;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.24;s:5:\"bytes\";i:2056;s:11:\"size_before\";i:39248;s:10:\"size_after\";i:37192;s:4:\"time\";d:0.01;}}}'),(9425,226103,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:31:\"Gallery_ArtistsImpression_7.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_7-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_7-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Gallery_ArtistsImpression_7-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:44:01\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"38.72\";}'),(9426,226104,'_wp_attached_file','Gallery_TheEstate_July2019_1.jpg'),(9427,226102,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.592816016586109;s:5:\"bytes\";i:13434;s:11:\"size_before\";i:240201;s:10:\"size_after\";i:226767;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.34;s:5:\"bytes\";i:1274;s:11:\"size_before\";i:20090;s:10:\"size_after\";i:18816;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.08;s:5:\"bytes\";i:574;s:11:\"size_before\";i:8108;s:10:\"size_after\";i:7534;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.19;s:5:\"bytes\";i:1876;s:11:\"size_before\";i:30286;s:10:\"size_after\";i:28410;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.86;s:5:\"bytes\";i:1890;s:11:\"size_before\";i:32256;s:10:\"size_after\";i:30366;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.56;s:5:\"bytes\";i:2852;s:11:\"size_before\";i:51341;s:10:\"size_after\";i:48489;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.39;s:5:\"bytes\";i:2348;s:11:\"size_before\";i:53472;s:10:\"size_after\";i:51124;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87;s:5:\"bytes\";i:2620;s:11:\"size_before\";i:44648;s:10:\"size_after\";i:42028;s:4:\"time\";d:0.02;}}}'),(9428,226104,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:32:\"Gallery_TheEstate_July2019_1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_1-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_1-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:42:22\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"47.54\";}'),(9429,226103,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.853530114422231;s:5:\"bytes\";i:14897;s:11:\"size_before\";i:254496;s:10:\"size_after\";i:239599;s:4:\"time\";d:0.12000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.27;s:5:\"bytes\";i:1296;s:11:\"size_before\";i:20659;s:10:\"size_after\";i:19363;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.87;s:5:\"bytes\";i:576;s:11:\"size_before\";i:8385;s:10:\"size_after\";i:7809;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.36;s:5:\"bytes\";i:1992;s:11:\"size_before\";i:31345;s:10:\"size_after\";i:29353;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.21;s:5:\"bytes\";i:2094;s:11:\"size_before\";i:33746;s:10:\"size_after\";i:31652;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9;s:5:\"bytes\";i:3205;s:11:\"size_before\";i:54364;s:10:\"size_after\";i:51159;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.94;s:5:\"bytes\";i:2926;s:11:\"size_before\";i:59188;s:10:\"size_after\";i:56262;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:2808;s:11:\"size_before\";i:46809;s:10:\"size_after\";i:44001;s:4:\"time\";d:0.03;}}}'),(9430,226105,'_wp_attached_file','Gallery_TheEstate_July2019_2.jpg'),(9431,226105,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:32:\"Gallery_TheEstate_July2019_2.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_2-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_2-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:40:51\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"46.1\";}'),(9432,226104,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.437271712182289;s:5:\"bytes\";i:5746;s:11:\"size_before\";i:105678;s:10:\"size_after\";i:99932;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.61;s:5:\"bytes\";i:529;s:11:\"size_before\";i:9427;s:10:\"size_after\";i:8898;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.63;s:5:\"bytes\";i:244;s:11:\"size_before\";i:4332;s:10:\"size_after\";i:4088;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.27;s:5:\"bytes\";i:668;s:11:\"size_before\";i:12679;s:10:\"size_after\";i:12011;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.22;s:5:\"bytes\";i:745;s:11:\"size_before\";i:14276;s:10:\"size_after\";i:13531;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54;s:5:\"bytes\";i:1219;s:11:\"size_before\";i:22009;s:10:\"size_after\";i:20790;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.31;s:5:\"bytes\";i:1258;s:11:\"size_before\";i:23701;s:10:\"size_after\";i:22443;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.62;s:5:\"bytes\";i:1083;s:11:\"size_before\";i:19254;s:10:\"size_after\";i:18171;s:4:\"time\";d:0.01;}}}'),(9433,226106,'_wp_attached_file','Gallery_TheEstate_July2019_3.jpg'),(9434,226106,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:32:\"Gallery_TheEstate_July2019_3.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_3-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_3-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:40:26\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"43.5\";}'),(9435,226107,'_wp_attached_file','Gallery_TheEstate_July2019_4.jpg'),(9436,226105,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.510481322755691;s:5:\"bytes\";i:7342;s:11:\"size_before\";i:133237;s:10:\"size_after\";i:125895;s:4:\"time\";d:0.14;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.84;s:5:\"bytes\";i:677;s:11:\"size_before\";i:11598;s:10:\"size_after\";i:10921;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.65;s:5:\"bytes\";i:262;s:11:\"size_before\";i:4640;s:10:\"size_after\";i:4378;s:4:\"time\";d:0.03;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.62;s:5:\"bytes\";i:947;s:11:\"size_before\";i:16845;s:10:\"size_after\";i:15898;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.31;s:5:\"bytes\";i:950;s:11:\"size_before\";i:17888;s:10:\"size_after\";i:16938;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.68;s:5:\"bytes\";i:1632;s:11:\"size_before\";i:28714;s:10:\"size_after\";i:27082;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.88;s:5:\"bytes\";i:1387;s:11:\"size_before\";i:28425;s:10:\"size_after\";i:27038;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.92;s:5:\"bytes\";i:1487;s:11:\"size_before\";i:25127;s:10:\"size_after\";i:23640;s:4:\"time\";d:0.03;}}}'),(9437,226107,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:32:\"Gallery_TheEstate_July2019_4.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_4-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_4-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:39:44\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"42.52\";}'),(9438,226108,'_wp_attached_file','Gallery_TheEstate_July2019_5.jpg'),(9439,226106,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.001849989132578;s:5:\"bytes\";i:11874;s:11:\"size_before\";i:197839;s:10:\"size_after\";i:185965;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28;s:5:\"bytes\";i:1122;s:11:\"size_before\";i:17877;s:10:\"size_after\";i:16755;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6;s:5:\"bytes\";i:477;s:11:\"size_before\";i:7225;s:10:\"size_after\";i:6748;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.03;s:5:\"bytes\";i:1519;s:11:\"size_before\";i:25194;s:10:\"size_after\";i:23675;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1;s:5:\"bytes\";i:1699;s:11:\"size_before\";i:27863;s:10:\"size_after\";i:26164;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.09;s:5:\"bytes\";i:2594;s:11:\"size_before\";i:42590;s:10:\"size_after\";i:39996;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.57;s:5:\"bytes\";i:2210;s:11:\"size_before\";i:39647;s:10:\"size_after\";i:37437;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.02;s:5:\"bytes\";i:2253;s:11:\"size_before\";i:37443;s:10:\"size_after\";i:35190;s:4:\"time\";d:0.03;}}}'),(9440,226108,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:32:\"Gallery_TheEstate_July2019_5.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_5-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_5-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:35:57\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"36.41\";}'),(9441,226109,'_wp_attached_file','Gallery_TheEstate_July2019_6.jpg'),(9442,226109,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:32:\"Gallery_TheEstate_July2019_6.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_6-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_6-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:34:44\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"45.84\";}'),(9443,226107,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.122107902562349;s:5:\"bytes\";i:9887;s:11:\"size_before\";i:193026;s:10:\"size_after\";i:183139;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.51;s:5:\"bytes\";i:891;s:11:\"size_before\";i:16178;s:10:\"size_after\";i:15287;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7;s:5:\"bytes\";i:394;s:11:\"size_before\";i:6914;s:10:\"size_after\";i:6520;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.39;s:5:\"bytes\";i:1309;s:11:\"size_before\";i:24296;s:10:\"size_after\";i:22987;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.31;s:5:\"bytes\";i:1379;s:11:\"size_before\";i:25964;s:10:\"size_after\";i:24585;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:2044;s:11:\"size_before\";i:40903;s:10:\"size_after\";i:38859;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62;s:5:\"bytes\";i:1998;s:11:\"size_before\";i:43279;s:10:\"size_after\";i:41281;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.27;s:5:\"bytes\";i:1872;s:11:\"size_before\";i:35492;s:10:\"size_after\";i:33620;s:4:\"time\";d:0.02;}}}'),(9444,226110,'_wp_attached_file','Gallery_TheEstate_July2019_7.jpg'),(9445,226110,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:32:\"Gallery_TheEstate_July2019_7.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_7-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_7-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_7-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:33:57\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"42.77\";}'),(9446,226108,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.539771005893482;s:5:\"bytes\";i:26380;s:11:\"size_before\";i:349878;s:10:\"size_after\";i:323498;s:4:\"time\";d:0.22000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:2175;s:11:\"size_before\";i:27183;s:10:\"size_after\";i:25008;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:782;s:11:\"size_before\";i:9772;s:10:\"size_after\";i:8990;s:4:\"time\";d:0.03;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92;s:5:\"bytes\";i:3274;s:11:\"size_before\";i:41339;s:10:\"size_after\";i:38065;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.98;s:5:\"bytes\";i:3729;s:11:\"size_before\";i:46708;s:10:\"size_after\";i:42979;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67;s:5:\"bytes\";i:5821;s:11:\"size_before\";i:75879;s:10:\"size_after\";i:70058;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.61;s:5:\"bytes\";i:5512;s:11:\"size_before\";i:83451;s:10:\"size_after\";i:77939;s:4:\"time\";d:0.04;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.76;s:5:\"bytes\";i:5087;s:11:\"size_before\";i:65546;s:10:\"size_after\";i:60459;s:4:\"time\";d:0.05;}}}'),(9447,226111,'_wp_attached_file','Gallery_TheEstate_July2019_8.jpg'),(9448,226109,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.942554237233637;s:5:\"bytes\";i:12937;s:11:\"size_before\";i:217701;s:10:\"size_after\";i:204764;s:4:\"time\";d:0.16999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55;s:5:\"bytes\";i:974;s:11:\"size_before\";i:17547;s:10:\"size_after\";i:16573;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.31;s:5:\"bytes\";i:458;s:11:\"size_before\";i:7253;s:10:\"size_after\";i:6795;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.51;s:5:\"bytes\";i:1409;s:11:\"size_before\";i:25579;s:10:\"size_after\";i:24170;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.53;s:5:\"bytes\";i:1574;s:11:\"size_before\";i:28470;s:10:\"size_after\";i:26896;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.96;s:5:\"bytes\";i:2742;s:11:\"size_before\";i:46040;s:10:\"size_after\";i:43298;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.48;s:5:\"bytes\";i:3444;s:11:\"size_before\";i:53137;s:10:\"size_after\";i:49693;s:4:\"time\";d:0.04;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.89;s:5:\"bytes\";i:2336;s:11:\"size_before\";i:39675;s:10:\"size_after\";i:37339;s:4:\"time\";d:0.02;}}}'),(9449,226111,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:32:\"Gallery_TheEstate_July2019_8.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_8-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_8-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_8-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:33:09\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"41.27\";}'),(9450,226112,'_wp_attached_file','Gallery_TheEstate_July2019_9.jpg'),(9451,226112,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:32:\"Gallery_TheEstate_July2019_9.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_9-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_9-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Gallery_TheEstate_July2019_9-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:32:27\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"40.31\";}'),(9452,226113,'_wp_attached_file','Gallery_TheEstate_July2019_10.jpg'),(9453,226110,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.768081717831842;s:5:\"bytes\";i:12324;s:11:\"size_before\";i:182090;s:10:\"size_after\";i:169766;s:4:\"time\";d:0.15999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54;s:5:\"bytes\";i:1163;s:11:\"size_before\";i:15418;s:10:\"size_after\";i:14255;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.03;s:5:\"bytes\";i:416;s:11:\"size_before\";i:5919;s:10:\"size_after\";i:5503;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.78;s:5:\"bytes\";i:1532;s:11:\"size_before\";i:22608;s:10:\"size_after\";i:21076;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.83;s:5:\"bytes\";i:1701;s:11:\"size_before\";i:24922;s:10:\"size_after\";i:23221;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8;s:5:\"bytes\";i:2718;s:11:\"size_before\";i:39985;s:10:\"size_after\";i:37267;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.13;s:5:\"bytes\";i:2352;s:11:\"size_before\";i:38345;s:10:\"size_after\";i:35993;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:7;s:5:\"bytes\";i:2442;s:11:\"size_before\";i:34893;s:10:\"size_after\";i:32451;s:4:\"time\";d:0.02;}}}'),(9454,226113,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:33:\"Gallery_TheEstate_July2019_10.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_10-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_10-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_10-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:30:22\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"37.56\";}'),(9455,226114,'_wp_attached_file','Gallery_TheEstate_July2019_11.jpg'),(9456,226111,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.6508220157255185;s:5:\"bytes\";i:18609;s:11:\"size_before\";i:279800;s:10:\"size_after\";i:261191;s:4:\"time\";d:0.17;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.24;s:5:\"bytes\";i:1343;s:11:\"size_before\";i:21538;s:10:\"size_after\";i:20195;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.26;s:5:\"bytes\";i:630;s:11:\"size_before\";i:8674;s:10:\"size_after\";i:8044;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.58;s:5:\"bytes\";i:2190;s:11:\"size_before\";i:33259;s:10:\"size_after\";i:31069;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.35;s:5:\"bytes\";i:2303;s:11:\"size_before\";i:36249;s:10:\"size_after\";i:33946;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.63;s:5:\"bytes\";i:3945;s:11:\"size_before\";i:59458;s:10:\"size_after\";i:55513;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.91;s:5:\"bytes\";i:4839;s:11:\"size_before\";i:70045;s:10:\"size_after\";i:65206;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.64;s:5:\"bytes\";i:3359;s:11:\"size_before\";i:50577;s:10:\"size_after\";i:47218;s:4:\"time\";d:0.04;}}}'),(9457,226097,'original-file','Gallery_ArtistsImpression_1-updraft-pre-smush-original.jpg'),(9458,226114,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:33:\"Gallery_TheEstate_July2019_11.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_11-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_11-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_11-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:29:44\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"41.01\";}'),(9459,226112,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.550148350255699;s:5:\"bytes\";i:17573;s:11:\"size_before\";i:268284;s:10:\"size_after\";i:250711;s:4:\"time\";d:0.14;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.76;s:5:\"bytes\";i:1822;s:11:\"size_before\";i:23477;s:10:\"size_after\";i:21655;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.83;s:5:\"bytes\";i:726;s:11:\"size_before\";i:9268;s:10:\"size_after\";i:8542;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.12;s:5:\"bytes\";i:2405;s:11:\"size_before\";i:33779;s:10:\"size_after\";i:31374;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.15;s:5:\"bytes\";i:2680;s:11:\"size_before\";i:37459;s:10:\"size_after\";i:34779;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.49;s:5:\"bytes\";i:3748;s:11:\"size_before\";i:57775;s:10:\"size_after\";i:54027;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96;s:5:\"bytes\";i:2766;s:11:\"size_before\";i:55762;s:10:\"size_after\";i:52996;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.75;s:5:\"bytes\";i:3426;s:11:\"size_before\";i:50764;s:10:\"size_after\";i:47338;s:4:\"time\";d:0.02;}}}'),(9460,226115,'_wp_attached_file','Gallery_TheEstate_July2019_12.jpg'),(9461,226115,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:33:\"Gallery_TheEstate_July2019_12.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_12-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_12-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_12-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:29:18\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"43.31\";}'),(9462,226113,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.652825738477073;s:5:\"bytes\";i:18842;s:11:\"size_before\";i:283218;s:10:\"size_after\";i:264376;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67;s:5:\"bytes\";i:1838;s:11:\"size_before\";i:23952;s:10:\"size_after\";i:22114;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.61;s:5:\"bytes\";i:835;s:11:\"size_before\";i:9697;s:10:\"size_after\";i:8862;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2;s:5:\"bytes\";i:2488;s:11:\"size_before\";i:34569;s:10:\"size_after\";i:32081;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.18;s:5:\"bytes\";i:2783;s:11:\"size_before\";i:38763;s:10:\"size_after\";i:35980;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.35;s:5:\"bytes\";i:3831;s:11:\"size_before\";i:60333;s:10:\"size_after\";i:56502;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6;s:5:\"bytes\";i:3540;s:11:\"size_before\";i:63171;s:10:\"size_after\";i:59631;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.69;s:5:\"bytes\";i:3527;s:11:\"size_before\";i:52733;s:10:\"size_after\";i:49206;s:4:\"time\";d:0.04;}}}'),(9463,226116,'_wp_attached_file','Gallery_TheEstate_July2019_13.jpg'),(9464,226114,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.398161414931053;s:5:\"bytes\";i:7674;s:11:\"size_before\";i:174482;s:10:\"size_after\";i:166808;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54;s:5:\"bytes\";i:666;s:11:\"size_before\";i:14663;s:10:\"size_after\";i:13997;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.32;s:5:\"bytes\";i:324;s:11:\"size_before\";i:6088;s:10:\"size_after\";i:5764;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.28;s:5:\"bytes\";i:895;s:11:\"size_before\";i:20919;s:10:\"size_after\";i:20024;s:4:\"time\";d:0.04;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.64;s:5:\"bytes\";i:1094;s:11:\"size_before\";i:23572;s:10:\"size_after\";i:22478;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.67;s:5:\"bytes\";i:1747;s:11:\"size_before\";i:37406;s:10:\"size_after\";i:35659;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.64;s:5:\"bytes\";i:1435;s:11:\"size_before\";i:39392;s:10:\"size_after\";i:37957;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.66;s:5:\"bytes\";i:1513;s:11:\"size_before\";i:32442;s:10:\"size_after\";i:30929;s:4:\"time\";d:0.02;}}}'),(9465,226116,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:33:\"Gallery_TheEstate_July2019_13.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_13-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_13-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_13-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:28:42\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"48.35\";}'),(9466,226097,'smush-complete','1'),(9467,226097,'smush-info','The file was compressed from 61.30 KB to 58.33 KB saving 4.84 percent using WP-Optimize'),(9468,226097,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:62767;s:12:\"smushed-size\";i:59732;s:15:\"savings-percent\";d:4.84;}'),(9469,226117,'_wp_attached_file','Gallery_TheEstate_July2019_14.jpg'),(9470,226117,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:33:\"Gallery_TheEstate_July2019_14.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_14-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_14-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_14-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:28:17\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"39.82\";}'),(9471,226098,'original-file','Gallery_ArtistsImpression_2-updraft-pre-smush-original.jpg'),(9472,226115,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.718549536707056;s:5:\"bytes\";i:12837;s:11:\"size_before\";i:224480;s:10:\"size_after\";i:211643;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.31;s:5:\"bytes\";i:1213;s:11:\"size_before\";i:19225;s:10:\"size_after\";i:18012;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.74;s:5:\"bytes\";i:533;s:11:\"size_before\";i:7903;s:10:\"size_after\";i:7370;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04;s:5:\"bytes\";i:1733;s:11:\"size_before\";i:28691;s:10:\"size_after\";i:26958;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1;s:5:\"bytes\";i:1876;s:11:\"size_before\";i:30729;s:10:\"size_after\";i:28853;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.62;s:5:\"bytes\";i:2682;s:11:\"size_before\";i:47700;s:10:\"size_after\";i:45018;s:4:\"time\";d:0.05;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.81;s:5:\"bytes\";i:2332;s:11:\"size_before\";i:48514;s:10:\"size_after\";i:46182;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.92;s:5:\"bytes\";i:2468;s:11:\"size_before\";i:41718;s:10:\"size_after\";i:39250;s:4:\"time\";d:0.02;}}}'),(9473,226118,'_wp_attached_file','Gallery_TheEstate_July2019_15.jpg'),(9474,226116,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.124220233251966;s:5:\"bytes\";i:6774;s:11:\"size_before\";i:110610;s:10:\"size_after\";i:103836;s:4:\"time\";d:0.12;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.86;s:5:\"bytes\";i:635;s:11:\"size_before\";i:9254;s:10:\"size_after\";i:8619;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.85;s:5:\"bytes\";i:267;s:11:\"size_before\";i:3895;s:10:\"size_after\";i:3628;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6;s:5:\"bytes\";i:694;s:11:\"size_before\";i:12400;s:10:\"size_after\";i:11706;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.78;s:5:\"bytes\";i:849;s:11:\"size_before\";i:14700;s:10:\"size_after\";i:13851;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.09;s:5:\"bytes\";i:1465;s:11:\"size_before\";i:24072;s:10:\"size_after\";i:22607;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.21;s:5:\"bytes\";i:1585;s:11:\"size_before\";i:25515;s:10:\"size_after\";i:23930;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.16;s:5:\"bytes\";i:1279;s:11:\"size_before\";i:20774;s:10:\"size_after\";i:19495;s:4:\"time\";d:0.04;}}}'),(9475,226118,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:33:\"Gallery_TheEstate_July2019_15.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_15-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_15-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_15-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_15-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_15-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_15-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:27:31\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"39.13\";}'),(9476,226119,'_wp_attached_file','Gallery_TheEstate_July2019_16.jpg'),(9477,226119,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:33:\"Gallery_TheEstate_July2019_16.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_16-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_16-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_16-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_16-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_16-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"Gallery_TheEstate_July2019_16-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:26:13\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"40.34\";}'),(9478,226098,'smush-complete','1'),(9479,226098,'smush-info','The file was compressed from 43.48 KB to 41.33 KB saving 4.96 percent using WP-Optimize'),(9480,226098,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:44525;s:12:\"smushed-size\";i:42317;s:15:\"savings-percent\";d:4.96;}'),(9481,226117,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.750010371865968;s:5:\"bytes\";i:19524;s:11:\"size_before\";i:289244;s:10:\"size_after\";i:269720;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.14;s:5:\"bytes\";i:1707;s:11:\"size_before\";i:23919;s:10:\"size_after\";i:22212;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.39;s:5:\"bytes\";i:689;s:11:\"size_before\";i:9323;s:10:\"size_after\";i:8634;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.02;s:5:\"bytes\";i:2500;s:11:\"size_before\";i:35620;s:10:\"size_after\";i:33120;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.08;s:5:\"bytes\";i:2781;s:11:\"size_before\";i:39267;s:10:\"size_after\";i:36486;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.72;s:5:\"bytes\";i:4174;s:11:\"size_before\";i:62069;s:10:\"size_after\";i:57895;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.03;s:5:\"bytes\";i:3927;s:11:\"size_before\";i:65074;s:10:\"size_after\";i:61147;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.94;s:5:\"bytes\";i:3746;s:11:\"size_before\";i:53972;s:10:\"size_after\";i:50226;s:4:\"time\";d:0.03;}}}'),(9482,226099,'original-file','Gallery_ArtistsImpression_3-updraft-pre-smush-original.jpg'),(9483,226118,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.199204470189588;s:5:\"bytes\";i:16941;s:11:\"size_before\";i:273277;s:10:\"size_after\";i:256336;s:4:\"time\";d:0.17;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9;s:5:\"bytes\";i:1543;s:11:\"size_before\";i:22376;s:10:\"size_after\";i:20833;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.51;s:5:\"bytes\";i:695;s:11:\"size_before\";i:9257;s:10:\"size_after\";i:8562;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.53;s:5:\"bytes\";i:2143;s:11:\"size_before\";i:32820;s:10:\"size_after\";i:30677;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.43;s:5:\"bytes\";i:2352;s:11:\"size_before\";i:36602;s:10:\"size_after\";i:34250;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.11;s:5:\"bytes\";i:3545;s:11:\"size_before\";i:57982;s:10:\"size_after\";i:54437;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55;s:5:\"bytes\";i:3552;s:11:\"size_before\";i:63949;s:10:\"size_after\";i:60397;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.19;s:5:\"bytes\";i:3111;s:11:\"size_before\";i:50291;s:10:\"size_after\";i:47180;s:4:\"time\";d:0.03;}}}'),(9484,226119,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7845716199704675;s:5:\"bytes\";i:10142;s:11:\"size_before\";i:211973;s:10:\"size_after\";i:201831;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29;s:5:\"bytes\";i:946;s:11:\"size_before\";i:17866;s:10:\"size_after\";i:16920;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9;s:5:\"bytes\";i:425;s:11:\"size_before\";i:7204;s:10:\"size_after\";i:6779;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.08;s:5:\"bytes\";i:1389;s:11:\"size_before\";i:27319;s:10:\"size_after\";i:25930;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.17;s:5:\"bytes\";i:1497;s:11:\"size_before\";i:28968;s:10:\"size_after\";i:27471;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.71;s:5:\"bytes\";i:2135;s:11:\"size_before\";i:45376;s:10:\"size_after\";i:43241;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.88;s:5:\"bytes\";i:1774;s:11:\"size_before\";i:45762;s:10:\"size_after\";i:43988;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.01;s:5:\"bytes\";i:1976;s:11:\"size_before\";i:39478;s:10:\"size_after\";i:37502;s:4:\"time\";d:0.02;}}}'),(9485,226099,'smush-complete','1'),(9486,226099,'smush-info','The file was compressed from 52.79 KB to 50.74 KB saving 3.9 percent using WP-Optimize'),(9487,226099,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:54062;s:12:\"smushed-size\";i:51953;s:15:\"savings-percent\";d:3.9;}'),(9488,226100,'original-file','Gallery_ArtistsImpression_4-updraft-pre-smush-original.jpg'),(9489,226100,'smush-complete','1'),(9490,226100,'smush-info','The file was compressed from 85.86 KB to 81.96 KB saving 4.55 percent using WP-Optimize'),(9491,226100,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:87920;s:12:\"smushed-size\";i:83923;s:15:\"savings-percent\";d:4.55;}'),(9492,226101,'original-file','Gallery_ArtistsImpression_5-updraft-pre-smush-original.jpg'),(9493,226101,'smush-complete','1'),(9494,226101,'smush-info','The file was compressed from 74.88 KB to 72.39 KB saving 3.33 percent using WP-Optimize'),(9495,226101,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:76681;s:12:\"smushed-size\";i:74124;s:15:\"savings-percent\";d:3.33;}'),(9496,226102,'original-file','Gallery_ArtistsImpression_6-updraft-pre-smush-original.jpg'),(9497,226102,'smush-complete','1'),(9498,226102,'smush-info','The file was compressed from 72.90 KB to 69.82 KB saving 4.22 percent using WP-Optimize'),(9499,226102,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:74649;s:12:\"smushed-size\";i:71497;s:15:\"savings-percent\";d:4.22;}'),(9500,226103,'original-file','Gallery_ArtistsImpression_7-updraft-pre-smush-original.jpg'),(9501,226103,'smush-complete','1'),(9502,226103,'smush-info','The file was compressed from 77.82 KB to 74.61 KB saving 4.13 percent using WP-Optimize'),(9503,226103,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:79686;s:12:\"smushed-size\";i:76397;s:15:\"savings-percent\";d:4.13;}'),(9504,226104,'original-file','Gallery_TheEstate_July2019_1-updraft-pre-smush-original.jpg'),(9505,226104,'smush-complete','1'),(9506,226104,'smush-info','The file was compressed from 37.85 KB to 34.06 KB saving 10.03 percent using WP-Optimize'),(9507,226104,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:38763;s:12:\"smushed-size\";i:34874;s:15:\"savings-percent\";d:10.03;}'),(9508,226105,'original-file','Gallery_TheEstate_July2019_2-updraft-pre-smush-original.jpg'),(9509,226105,'smush-complete','1'),(9510,226105,'smush-info','The file was compressed from 50.59 KB to 46.38 KB saving 8.32 percent using WP-Optimize'),(9511,226105,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:51803;s:12:\"smushed-size\";i:47495;s:15:\"savings-percent\";d:8.32;}'),(9512,226106,'original-file','Gallery_TheEstate_July2019_3-updraft-pre-smush-original.jpg'),(9513,226106,'smush-complete','1'),(9514,226106,'smush-info','The file was compressed from 61.08 KB to 58.02 KB saving 5 percent using WP-Optimize'),(9515,226106,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:62543;s:12:\"smushed-size\";i:59414;s:15:\"savings-percent\";d:5;}'),(9516,226107,'original-file','Gallery_TheEstate_July2019_4-updraft-pre-smush-original.jpg'),(9517,226107,'smush-complete','1'),(9518,226107,'smush-info','The file was compressed from 68.17 KB to 65.15 KB saving 4.43 percent using WP-Optimize'),(9519,226107,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:69805;s:12:\"smushed-size\";i:66715;s:15:\"savings-percent\";d:4.43;}'),(9520,226108,'original-file','Gallery_TheEstate_July2019_5-updraft-pre-smush-original.jpg'),(9521,226108,'smush-complete','1'),(9522,226108,'smush-info','The file was compressed from 114.00 KB to 108.23 KB saving 5.06 percent using WP-Optimize'),(9523,226108,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:116735;s:12:\"smushed-size\";i:110825;s:15:\"savings-percent\";d:5.06;}'),(9524,226109,'original-file','Gallery_TheEstate_July2019_6-updraft-pre-smush-original.jpg'),(9525,226109,'smush-complete','1'),(9526,226109,'smush-info','The file was compressed from 98.67 KB to 97.66 KB saving 1.02 percent using WP-Optimize'),(9527,226109,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:101036;s:12:\"smushed-size\";i:100005;s:15:\"savings-percent\";d:1.02;}'),(9528,226110,'original-file','Gallery_TheEstate_July2019_7-updraft-pre-smush-original.jpg'),(9529,226110,'smush-complete','1'),(9530,226110,'smush-info','The file was compressed from 71.07 KB to 66.22 KB saving 6.82 percent using WP-Optimize'),(9531,226110,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:72772;s:12:\"smushed-size\";i:67808;s:15:\"savings-percent\";d:6.82;}'),(9532,226111,'original-file','Gallery_TheEstate_July2019_8-updraft-pre-smush-original.jpg'),(9533,226111,'smush-complete','1'),(9534,226111,'smush-info','The file was compressed from 88.54 KB to 84.10 KB saving 5.02 percent using WP-Optimize'),(9535,226111,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:90670;s:12:\"smushed-size\";i:86116;s:15:\"savings-percent\";d:5.02;}'),(9536,226112,'original-file','Gallery_TheEstate_July2019_9-updraft-pre-smush-original.jpg'),(9537,226112,'smush-complete','1'),(9538,226112,'smush-info','The file was compressed from 78.41 KB to 75.67 KB saving 3.49 percent using WP-Optimize'),(9539,226112,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:80288;s:12:\"smushed-size\";i:77485;s:15:\"savings-percent\";d:3.49;}'),(9540,226113,'original-file','Gallery_TheEstate_July2019_10-updraft-pre-smush-original.jpg'),(9541,226113,'smush-complete','1'),(9542,226113,'smush-info','The file was compressed from 83.19 KB to 80.63 KB saving 3.07 percent using WP-Optimize'),(9543,226113,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:85183;s:12:\"smushed-size\";i:82564;s:15:\"savings-percent\";d:3.07;}'),(9544,226114,'original-file','Gallery_TheEstate_July2019_11-updraft-pre-smush-original.jpg'),(9545,226114,'smush-complete','1'),(9546,226114,'smush-info','The file was compressed from 54.35 KB to 51.47 KB saving 5.31 percent using WP-Optimize'),(9547,226114,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:55658;s:12:\"smushed-size\";i:52704;s:15:\"savings-percent\";d:5.31;}'),(9548,226115,'original-file','Gallery_TheEstate_July2019_12-updraft-pre-smush-original.jpg'),(9549,226115,'smush-complete','1'),(9550,226115,'smush-info','The file was compressed from 65.34 KB to 62.48 KB saving 4.38 percent using WP-Optimize'),(9551,226115,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:66910;s:12:\"smushed-size\";i:63982;s:15:\"savings-percent\";d:4.38;}'),(9552,226116,'original-file','Gallery_TheEstate_July2019_13-updraft-pre-smush-original.jpg'),(9553,226116,'smush-complete','1'),(9554,226116,'smush-info','The file was compressed from 43.65 KB to 39.56 KB saving 9.38 percent using WP-Optimize'),(9555,226116,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:44702;s:12:\"smushed-size\";i:40509;s:15:\"savings-percent\";d:9.38;}'),(9556,226117,'original-file','Gallery_TheEstate_July2019_14-updraft-pre-smush-original.jpg'),(9557,226117,'smush-complete','1'),(9558,226117,'smush-info','The file was compressed from 89.40 KB to 85.73 KB saving 4.11 percent using WP-Optimize'),(9559,226117,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:91546;s:12:\"smushed-size\";i:87785;s:15:\"savings-percent\";d:4.11;}'),(9560,226118,'original-file','Gallery_TheEstate_July2019_15-updraft-pre-smush-original.jpg'),(9561,226118,'smush-complete','1'),(9562,226118,'smush-info','The file was compressed from 81.38 KB to 78.86 KB saving 3.1 percent using WP-Optimize'),(9563,226118,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:83331;s:12:\"smushed-size\";i:80750;s:15:\"savings-percent\";d:3.1;}'),(9564,226119,'original-file','Gallery_TheEstate_July2019_16-updraft-pre-smush-original.jpg'),(9565,226119,'smush-complete','1'),(9566,226119,'smush-info','The file was compressed from 63.39 KB to 60.58 KB saving 4.43 percent using WP-Optimize'),(9567,226119,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:64907;s:12:\"smushed-size\";i:62031;s:15:\"savings-percent\";d:4.43;}'),(9568,226120,'_wp_attached_file','Stadsig_Gallery_TheEstate_July2019_15-1.jpg'),(9569,226120,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:43:\"Stadsig_Gallery_TheEstate_July2019_15-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Stadsig_Gallery_TheEstate_July2019_15-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Stadsig_Gallery_TheEstate_July2019_15-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:51:\"Stadsig_Gallery_TheEstate_July2019_15-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:51:\"Stadsig_Gallery_TheEstate_July2019_15-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:51:\"Stadsig_Gallery_TheEstate_July2019_15-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:51:\"Stadsig_Gallery_TheEstate_July2019_15-1-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:51:\"Stadsig_Gallery_TheEstate_July2019_15-1-480x343.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:25:36\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"39.13\";}'),(9570,226120,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.199204470189588;s:5:\"bytes\";i:16941;s:11:\"size_before\";i:273277;s:10:\"size_after\";i:256336;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9;s:5:\"bytes\";i:1543;s:11:\"size_before\";i:22376;s:10:\"size_after\";i:20833;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.51;s:5:\"bytes\";i:695;s:11:\"size_before\";i:9257;s:10:\"size_after\";i:8562;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.53;s:5:\"bytes\";i:2143;s:11:\"size_before\";i:32820;s:10:\"size_after\";i:30677;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.43;s:5:\"bytes\";i:2352;s:11:\"size_before\";i:36602;s:10:\"size_after\";i:34250;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.11;s:5:\"bytes\";i:3545;s:11:\"size_before\";i:57982;s:10:\"size_after\";i:54437;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55;s:5:\"bytes\";i:3552;s:11:\"size_before\";i:63949;s:10:\"size_after\";i:60397;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.19;s:5:\"bytes\";i:3111;s:11:\"size_before\";i:50291;s:10:\"size_after\";i:47180;s:4:\"time\";d:0.03;}}}'),(9571,226120,'original-file','Stadsig_Gallery_TheEstate_July2019_15-1-updraft-pre-smush-original.jpg'),(9572,226120,'smush-complete','1'),(9573,226120,'smush-info','The file was compressed from 81.38 KB to 78.86 KB saving 3.1 percent using WP-Optimize'),(9574,226120,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:83331;s:12:\"smushed-size\";i:80750;s:15:\"savings-percent\";d:3.1;}'),(9575,226122,'_wp_attached_file','New_Stadsig_AreaLifestyle_header_Mobile.jpg'),(9576,226122,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:615;s:6:\"height\";i:270;s:4:\"file\";s:43:\"New_Stadsig_AreaLifestyle_header_Mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_AreaLifestyle_header_Mobile-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_AreaLifestyle_header_Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_AreaLifestyle_header_Mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_AreaLifestyle_header_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_AreaLifestyle_header_Mobile-510x270.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_AreaLifestyle_header_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_AreaLifestyle_header_Mobile-480x211.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:211;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:23:10\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"39.29\";}'),(9577,226123,'_wp_attached_file','New_Stadsig_AreaThumb1.jpg'),(9578,226123,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:26:\"New_Stadsig_AreaThumb1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb1-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:22:26\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"25.56\";}'),(9579,226122,'original-file','New_Stadsig_AreaLifestyle_header_Mobile-updraft-pre-smush-original.jpg'),(9580,226124,'_wp_attached_file','New_Stadsig_AreaThumb2.jpg'),(9581,226124,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:26:\"New_Stadsig_AreaThumb2.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb2-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb2-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb2-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb2-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:22:01\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"41.62\";}'),(9582,226123,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.417438233401;s:5:\"bytes\";i:1953;s:11:\"size_before\";i:80788;s:10:\"size_after\";i:78835;s:4:\"time\";d:0.08;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.13;s:5:\"bytes\";i:595;s:11:\"size_before\";i:11604;s:10:\"size_after\";i:11009;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.13;s:5:\"bytes\";i:347;s:11:\"size_before\";i:6763;s:10:\"size_after\";i:6416;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.71;s:5:\"bytes\";i:1011;s:11:\"size_before\";i:21481;s:10:\"size_after\";i:20470;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20470;s:10:\"size_after\";i:20470;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20470;s:10:\"size_after\";i:20470;s:4:\"time\";d:0.01;}}}'),(9583,226125,'_wp_attached_file','New_Stadsig_AreaThumb3.jpg'),(9584,226125,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:26:\"New_Stadsig_AreaThumb3.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb3-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb3-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb3-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_AreaThumb3-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:21:06\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"26.17\";}'),(9585,226124,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.3554987212276215;s:5:\"bytes\";i:1842;s:11:\"size_before\";i:78200;s:10:\"size_after\";i:76358;s:4:\"time\";d:0.11000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.88;s:5:\"bytes\";i:561;s:11:\"size_before\";i:11506;s:10:\"size_after\";i:10945;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.01;s:5:\"bytes\";i:287;s:11:\"size_before\";i:5730;s:10:\"size_after\";i:5443;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.74;s:5:\"bytes\";i:994;s:11:\"size_before\";i:20984;s:10:\"size_after\";i:19990;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19990;s:10:\"size_after\";i:19990;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19990;s:10:\"size_after\";i:19990;s:4:\"time\";d:0.04;}}}'),(9586,226122,'smush-complete','1'),(9587,226126,'_wp_attached_file','New_Stadsig_map-1.jpg'),(9588,226122,'smush-info','The file was compressed from 44.52 KB to 42.79 KB saving 3.9 percent using WP-Optimize'),(9589,226122,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:45593;s:12:\"smushed-size\";i:43813;s:15:\"savings-percent\";d:3.9;}'),(9590,226126,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:659;s:6:\"height\";i:446;s:4:\"file\";s:21:\"New_Stadsig_map-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"New_Stadsig_map-1-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"New_Stadsig_map-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"New_Stadsig_map-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"New_Stadsig_map-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"New_Stadsig_map-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"New_Stadsig_map-1-400x446.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"New_Stadsig_map-1-480x325.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:12:25\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"60.7\";}'),(9591,226125,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.58940419884991;s:5:\"bytes\";i:1522;s:11:\"size_before\";i:58778;s:10:\"size_after\";i:57256;s:4:\"time\";d:0.07999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.71;s:5:\"bytes\";i:522;s:11:\"size_before\";i:9148;s:10:\"size_after\";i:8626;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.89;s:5:\"bytes\";i:333;s:11:\"size_before\";i:5658;s:10:\"size_after\";i:5325;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.42;s:5:\"bytes\";i:667;s:11:\"size_before\";i:15102;s:10:\"size_after\";i:14435;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14435;s:10:\"size_after\";i:14435;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14435;s:10:\"size_after\";i:14435;s:4:\"time\";d:0.01;}}}'),(9592,226127,'_wp_attached_file','New_Stadsig_Website_AreaHeader.jpg'),(9593,226127,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1280;s:6:\"height\";i:345;s:4:\"file\";s:34:\"New_Stadsig_Website_AreaHeader.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"New_Stadsig_Website_AreaHeader-300x81.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_Website_AreaHeader-1024x276.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_AreaHeader-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:\"New_Stadsig_Website_AreaHeader-768x207.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_AreaHeader-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_Website_AreaHeader-1080x345.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_AreaHeader-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_AreaHeader-510x345.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_Website_AreaHeader-1080x291.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_AreaHeader-400x345.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_AreaHeader-980x264.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_AreaHeader-480x129.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:21:\"ShortPixelImprovement\";s:5:\"28.31\";s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:2;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 08:53:32\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}}'),(9594,226126,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.721313185036866;s:5:\"bytes\";i:6445;s:11:\"size_before\";i:95889;s:10:\"size_after\";i:89444;s:4:\"time\";d:0.16999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.08;s:5:\"bytes\";i:520;s:11:\"size_before\";i:8551;s:10:\"size_after\";i:8031;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.71;s:5:\"bytes\";i:216;s:11:\"size_before\";i:4584;s:10:\"size_after\";i:4368;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.23;s:5:\"bytes\";i:769;s:11:\"size_before\";i:12352;s:10:\"size_after\";i:11583;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5;s:5:\"bytes\";i:887;s:11:\"size_before\";i:13656;s:10:\"size_after\";i:12769;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.84;s:5:\"bytes\";i:1566;s:11:\"size_before\";i:19963;s:10:\"size_after\";i:18397;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:1213;s:11:\"size_before\";i:20210;s:10:\"size_after\";i:18997;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.69;s:5:\"bytes\";i:1274;s:11:\"size_before\";i:16573;s:10:\"size_after\";i:15299;s:4:\"time\";d:0.03;}}}'),(9595,226127,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.220619106795572;s:5:\"bytes\";i:51422;s:11:\"size_before\";i:712155;s:10:\"size_after\";i:660733;s:4:\"time\";d:0.59;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.32;s:5:\"bytes\";i:926;s:11:\"size_before\";i:11131;s:10:\"size_after\";i:10205;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.84;s:5:\"bytes\";i:6350;s:11:\"size_before\";i:92894;s:10:\"size_after\";i:86544;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.64;s:5:\"bytes\";i:851;s:11:\"size_before\";i:9852;s:10:\"size_after\";i:9001;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62;s:5:\"bytes\";i:4350;s:11:\"size_before\";i:57076;s:10:\"size_after\";i:52726;s:4:\"time\";d:0.05;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.58;s:5:\"bytes\";i:2748;s:11:\"size_before\";i:36251;s:10:\"size_after\";i:33503;s:4:\"time\";d:0.02;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.24;s:5:\"bytes\";i:9861;s:11:\"size_before\";i:136292;s:10:\"size_after\";i:126431;s:4:\"time\";d:0.09;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.35;s:5:\"bytes\";i:2898;s:11:\"size_before\";i:39422;s:10:\"size_after\";i:36524;s:4:\"time\";d:0.04;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:7;s:5:\"bytes\";i:4610;s:11:\"size_before\";i:65867;s:10:\"size_after\";i:61257;s:4:\"time\";d:0.04;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.81;s:5:\"bytes\";i:6932;s:11:\"size_before\";i:101823;s:10:\"size_after\";i:94891;s:4:\"time\";d:0.1;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.43;s:5:\"bytes\";i:3744;s:11:\"size_before\";i:50393;s:10:\"size_after\";i:46649;s:4:\"time\";d:0.03;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.06;s:5:\"bytes\";i:6064;s:11:\"size_before\";i:85949;s:10:\"size_after\";i:79885;s:4:\"time\";d:0.13;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.28;s:5:\"bytes\";i:2088;s:11:\"size_before\";i:25205;s:10:\"size_after\";i:23117;s:4:\"time\";d:0.02;}}}'),(9596,223333,'_et_pb_truncate_post_date',''),(9597,223333,'post_do_preventscroll','0'),(9598,223333,'do_at_pages_selected',''),(9599,223333,'do_at_pagesexception_selected',''),(9600,223333,'category_at_categories_selected',''),(9601,223333,'category_at_exceptioncategories_selected',''),(9602,223333,'tag_at_tags_selected',''),(9603,223333,'tag_at_exceptiontags_selected',''),(9604,223333,'do_displaylocations_archive','0'),(9605,223333,'css_selector_at_pages_selected',''),(9606,223333,'post_enableurltrigger','0'),(9607,223333,'do_enableajax','0'),(9608,223333,'overlay_automatictrigger','0'),(9609,223333,'overlay_automatictrigger_onceperload','0'),(9610,223333,'overlay_automatictrigger_disablemobile','0'),(9611,223333,'overlay_automatictrigger_disabletablet','0'),(9612,223333,'overlay_automatictrigger_disabledesktop','0'),(9613,223333,'post_do_hideclosebtn','0'),(9614,223333,'post_do_customizeclosebtn','0'),(9615,223333,'do_enable_scheduling','0'),(9616,226123,'original-file','New_Stadsig_AreaThumb1-updraft-pre-smush-original.jpg'),(9617,226123,'smush-complete','1'),(9618,226123,'smush-info','The file was compressed from 31.27 KB to 29.74 KB saving 4.91 percent using WP-Optimize'),(9619,226123,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:32024;s:12:\"smushed-size\";i:30453;s:15:\"savings-percent\";d:4.91;}'),(9620,226124,'original-file','New_Stadsig_AreaThumb2-updraft-pre-smush-original.jpg'),(9621,226124,'smush-complete','1'),(9622,226124,'smush-info','The file was compressed from 28.81 KB to 27.89 KB saving 3.19 percent using WP-Optimize'),(9623,226124,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:29499;s:12:\"smushed-size\";i:28558;s:15:\"savings-percent\";d:3.19;}'),(9624,226125,'original-file','New_Stadsig_AreaThumb3-updraft-pre-smush-original.jpg'),(9625,226125,'smush-complete','1'),(9626,226125,'smush-info','The file was compressed from 15.78 KB to 15.59 KB saving 1.21 percent using WP-Optimize'),(9627,226125,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:16162;s:12:\"smushed-size\";i:15966;s:15:\"savings-percent\";d:1.21;}'),(9628,226126,'original-file','New_Stadsig_map-1-updraft-pre-smush-original.jpg'),(9629,226126,'smush-complete','1'),(9630,226126,'smush-info','The file was compressed from 33.68 KB to 32.53 KB saving 3.4 percent using WP-Optimize'),(9631,226126,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:34484;s:12:\"smushed-size\";i:33312;s:15:\"savings-percent\";d:3.4;}'),(9632,226127,'original-file','New_Stadsig_Website_AreaHeader-updraft-pre-smush-original.jpg'),(9633,226130,'_wp_attached_file','New_Stadsig_breathe.jpg'),(9634,226130,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:200;s:6:\"height\";i:113;s:4:\"file\";s:23:\"New_Stadsig_breathe.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"New_Stadsig_breathe-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:02:28\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"70.35\";}'),(9635,226130,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.765560165975103;s:5:\"bytes\";i:338;s:11:\"size_before\";i:3856;s:10:\"size_after\";i:3518;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.77;s:5:\"bytes\";i:338;s:11:\"size_before\";i:3856;s:10:\"size_after\";i:3518;s:4:\"time\";d:0.01;}}}'),(9636,226131,'_wp_attached_file','New_Stadsig_estateOverviewMap.jpg'),(9637,226131,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1200;s:6:\"height\";i:667;s:4:\"file\";s:33:\"New_Stadsig_estateOverviewMap.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"New_Stadsig_estateOverviewMap-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_estateOverviewMap-1024x569.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"New_Stadsig_estateOverviewMap-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:41:\"New_Stadsig_estateOverviewMap-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"New_Stadsig_estateOverviewMap-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_estateOverviewMap-1080x667.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"New_Stadsig_estateOverviewMap-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"New_Stadsig_estateOverviewMap-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_estateOverviewMap-1080x600.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"New_Stadsig_estateOverviewMap-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:41:\"New_Stadsig_estateOverviewMap-980x545.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"New_Stadsig_estateOverviewMap-480x267.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 17:02:09\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"53.29\";}'),(9638,226132,'_wp_attached_file','New_Stadsig_Website_EstateOverviewHeader.jpg'),(9639,226127,'smush-complete','1'),(9640,226127,'smush-info','The file was compressed from 168.71 KB to 159.58 KB saving 5.41 percent using WP-Optimize'),(9641,226127,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:172762;s:12:\"smushed-size\";i:163407;s:15:\"savings-percent\";d:5.41;}'),(9642,226132,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1580;s:6:\"height\";i:425;s:4:\"file\";s:44:\"New_Stadsig_Website_EstateOverviewHeader.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_Website_EstateOverviewHeader-300x81.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"New_Stadsig_Website_EstateOverviewHeader-1024x275.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_EstateOverviewHeader-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:52:\"New_Stadsig_Website_EstateOverviewHeader-768x207.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"New_Stadsig_Website_EstateOverviewHeader-1536x413.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_EstateOverviewHeader-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:53:\"New_Stadsig_Website_EstateOverviewHeader-1080x425.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_EstateOverviewHeader-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_EstateOverviewHeader-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:53:\"New_Stadsig_Website_EstateOverviewHeader-1080x291.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_EstateOverviewHeader-400x425.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:53:\"New_Stadsig_Website_EstateOverviewHeader-1280x344.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_EstateOverviewHeader-980x264.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_EstateOverviewHeader-480x129.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:3;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:59:58\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"37.44\";}'),(9643,226133,'_wp_attached_file','New_Stadsig_Website_LifestyleCollage1.jpg'),(9644,226133,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:41:\"New_Stadsig_Website_LifestyleCollage1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage1-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:55:00\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"38.64\";}'),(9645,226134,'_wp_attached_file','New_Stadsig_Website_LifestyleCollage2.jpg'),(9646,226134,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:41:\"New_Stadsig_Website_LifestyleCollage2.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage2-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage2-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage2-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage2-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:54:38\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"40.5\";}'),(9647,226135,'_wp_attached_file','New_Stadsig_Website_LifestyleCollage3.jpg'),(9648,226133,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.3284941015854095;s:5:\"bytes\";i:3462;s:11:\"size_before\";i:104011;s:10:\"size_after\";i:100549;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9;s:5:\"bytes\";i:1026;s:11:\"size_before\";i:14861;s:10:\"size_after\";i:13835;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.67;s:5:\"bytes\";i:534;s:11:\"size_before\";i:8009;s:10:\"size_after\";i:7475;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.72;s:5:\"bytes\";i:1902;s:11:\"size_before\";i:28315;s:10:\"size_after\";i:26413;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26413;s:10:\"size_after\";i:26413;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26413;s:10:\"size_after\";i:26413;s:4:\"time\";d:0.01;}}}'),(9649,226135,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:41:\"New_Stadsig_Website_LifestyleCollage3.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage3-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage3-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage3-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage3-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 12:54:15\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"42.84\";}'),(9650,226134,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.1588409022813853;s:5:\"bytes\";i:2952;s:11:\"size_before\";i:93452;s:10:\"size_after\";i:90500;s:4:\"time\";d:0.12;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.73;s:5:\"bytes\";i:938;s:11:\"size_before\";i:13945;s:10:\"size_after\";i:13007;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.91;s:5:\"bytes\";i:546;s:11:\"size_before\";i:7905;s:10:\"size_after\";i:7359;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.91;s:5:\"bytes\";i:1468;s:11:\"size_before\";i:24846;s:10:\"size_after\";i:23378;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23378;s:10:\"size_after\";i:23378;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23378;s:10:\"size_after\";i:23378;s:4:\"time\";d:0.03;}}}'),(9651,226131,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.690426922710626;s:5:\"bytes\";i:52580;s:11:\"size_before\";i:924008;s:10:\"size_after\";i:871428;s:4:\"time\";d:0.42000000000000004;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.78;s:5:\"bytes\";i:1186;s:11:\"size_before\";i:17503;s:10:\"size_after\";i:16317;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.26;s:5:\"bytes\";i:7175;s:11:\"size_before\";i:136357;s:10:\"size_after\";i:129182;s:4:\"time\";d:0.05;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.71;s:5:\"bytes\";i:701;s:11:\"size_before\";i:9093;s:10:\"size_after\";i:8392;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.93;s:5:\"bytes\";i:5063;s:11:\"size_before\";i:85428;s:10:\"size_after\";i:80365;s:4:\"time\";d:0.03;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.49;s:5:\"bytes\";i:2043;s:11:\"size_before\";i:31457;s:10:\"size_after\";i:29414;s:4:\"time\";d:0.03;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.24;s:5:\"bytes\";i:9367;s:11:\"size_before\";i:178864;s:10:\"size_after\";i:169497;s:4:\"time\";d:0.1;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.71;s:5:\"bytes\";i:2367;s:11:\"size_before\";i:35277;s:10:\"size_after\";i:32910;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.52;s:5:\"bytes\";i:3630;s:11:\"size_before\";i:55651;s:10:\"size_after\";i:52021;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.19;s:5:\"bytes\";i:7679;s:11:\"size_before\";i:147880;s:10:\"size_after\";i:140201;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.77;s:5:\"bytes\";i:4050;s:11:\"size_before\";i:59831;s:10:\"size_after\";i:55781;s:4:\"time\";d:0.02;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3;s:5:\"bytes\";i:6770;s:11:\"size_before\";i:127700;s:10:\"size_after\";i:120930;s:4:\"time\";d:0.05;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54;s:5:\"bytes\";i:2549;s:11:\"size_before\";i:38967;s:10:\"size_after\";i:36418;s:4:\"time\";d:0.02;}}}'),(9652,226135,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.1416614114544514;s:5:\"bytes\";i:2740;s:11:\"size_before\";i:87215;s:10:\"size_after\";i:84475;s:4:\"time\";d:0.06999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.12;s:5:\"bytes\";i:804;s:11:\"size_before\";i:13135;s:10:\"size_after\";i:12331;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.14;s:5:\"bytes\";i:620;s:11:\"size_before\";i:8678;s:10:\"size_after\";i:8058;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8;s:5:\"bytes\";i:1316;s:11:\"size_before\";i:22678;s:10:\"size_after\";i:21362;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21362;s:10:\"size_after\";i:21362;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21362;s:10:\"size_after\";i:21362;s:4:\"time\";d:0.01;}}}'),(9653,226132,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.821918906695549;s:5:\"bytes\";i:54452;s:11:\"size_before\";i:935293;s:10:\"size_after\";i:880841;s:4:\"time\";d:0.54;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6;s:5:\"bytes\";i:738;s:11:\"size_before\";i:9705;s:10:\"size_after\";i:8967;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2;s:5:\"bytes\";i:5216;s:11:\"size_before\";i:84079;s:10:\"size_after\";i:78863;s:4:\"time\";d:0.07;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.47;s:5:\"bytes\";i:660;s:11:\"size_before\";i:8841;s:10:\"size_after\";i:8181;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.73;s:5:\"bytes\";i:3380;s:11:\"size_before\";i:50257;s:10:\"size_after\";i:46877;s:4:\"time\";d:0.02;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.27;s:5:\"bytes\";i:8684;s:11:\"size_before\";i:164734;s:10:\"size_after\";i:156050;s:4:\"time\";d:0.12;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.57;s:5:\"bytes\";i:2078;s:11:\"size_before\";i:31627;s:10:\"size_after\";i:29549;s:4:\"time\";d:0.01;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.87;s:5:\"bytes\";i:6399;s:11:\"size_before\";i:131385;s:10:\"size_after\";i:124986;s:4:\"time\";d:0.08;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.39;s:5:\"bytes\";i:2235;s:11:\"size_before\";i:34956;s:10:\"size_after\";i:32721;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.63;s:5:\"bytes\";i:3051;s:11:\"size_before\";i:54154;s:10:\"size_after\";i:51103;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.18;s:5:\"bytes\";i:5708;s:11:\"size_before\";i:92319;s:10:\"size_after\";i:86611;s:4:\"time\";d:0.05;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.31;s:5:\"bytes\";i:2776;s:11:\"size_before\";i:52293;s:10:\"size_after\";i:49517;s:4:\"time\";d:0.02;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.77;s:5:\"bytes\";i:7016;s:11:\"size_before\";i:121684;s:10:\"size_after\";i:114668;s:4:\"time\";d:0.03;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.34;s:5:\"bytes\";i:4905;s:11:\"size_before\";i:77309;s:10:\"size_after\";i:72404;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32;s:5:\"bytes\";i:1606;s:11:\"size_before\";i:21950;s:10:\"size_after\";i:20344;s:4:\"time\";d:0.03;}}}'),(9654,223340,'_et_pb_truncate_post_date',''),(9655,226130,'original-file','New_Stadsig_breathe-updraft-pre-smush-original.jpg'),(9656,226130,'smush-complete','1'),(9657,226130,'smush-info','The file was compressed from 7.92 KB to 7.73 KB saving 2.44 percent using WP-Optimize'),(9658,226130,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:8113;s:12:\"smushed-size\";i:7915;s:15:\"savings-percent\";d:2.44;}'),(9659,226131,'original-file','New_Stadsig_estateOverviewMap-updraft-pre-smush-original.jpg'),(9660,226131,'smush-complete','1'),(9661,226131,'smush-info','The file was compressed from 169.28 KB to 163.05 KB saving 3.68 percent using WP-Optimize'),(9662,226131,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:173339;s:12:\"smushed-size\";i:166960;s:15:\"savings-percent\";d:3.68;}'),(9663,226132,'original-file','New_Stadsig_Website_EstateOverviewHeader-updraft-pre-smush-original.jpg'),(9664,226132,'smush-complete','1'),(9665,226132,'smush-info','The file was compressed from 150.59 KB to 144.50 KB saving 4.05 percent using WP-Optimize'),(9666,226132,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:154205;s:12:\"smushed-size\";i:147964;s:15:\"savings-percent\";d:4.05;}'),(9667,226133,'original-file','New_Stadsig_Website_LifestyleCollage1-updraft-pre-smush-original.jpg'),(9668,226133,'smush-complete','1'),(9669,226133,'smush-info','The file was compressed from 38.44 KB to 36.98 KB saving 3.79 percent using WP-Optimize'),(9670,226133,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:39364;s:12:\"smushed-size\";i:37871;s:15:\"savings-percent\";d:3.79;}'),(9671,226134,'original-file','New_Stadsig_Website_LifestyleCollage2-updraft-pre-smush-original.jpg'),(9672,226134,'smush-complete','1'),(9673,226134,'smush-info','The file was compressed from 34.00 KB to 33.02 KB saving 2.89 percent using WP-Optimize'),(9674,226134,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:34819;s:12:\"smushed-size\";i:33814;s:15:\"savings-percent\";d:2.89;}'),(9675,226135,'original-file','New_Stadsig_Website_LifestyleCollage3-updraft-pre-smush-original.jpg'),(9676,226135,'smush-complete','1'),(9677,226135,'smush-info','The file was compressed from 31.95 KB to 30.29 KB saving 5.21 percent using WP-Optimize'),(9678,226135,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:32717;s:12:\"smushed-size\";i:31014;s:15:\"savings-percent\";d:5.21;}'),(9679,226137,'_wp_attached_file','New_Stadsig_HousePlans_header_Mobile.jpg'),(9680,226137,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:612;s:6:\"height\";i:270;s:4:\"file\";s:40:\"New_Stadsig_HousePlans_header_Mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_HousePlans_header_Mobile-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_HousePlans_header_Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_HousePlans_header_Mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_HousePlans_header_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_HousePlans_header_Mobile-510x270.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_HousePlans_header_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_HousePlans_header_Mobile-480x212.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:53:45\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"9.93\";}'),(9681,226138,'_wp_attached_file','New_Stadsig_strelitzia.jpg'),(9682,226138,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:229;s:6:\"height\";i:149;s:4:\"file\";s:26:\"New_Stadsig_strelitzia.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_strelitzia-150x149.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:51:58\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"70.08\";}'),(9683,226138,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.212527964205817;s:5:\"bytes\";i:233;s:11:\"size_before\";i:4470;s:10:\"size_after\";i:4237;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.21;s:5:\"bytes\";i:233;s:11:\"size_before\";i:4470;s:10:\"size_after\";i:4237;s:4:\"time\";d:0.02;}}}'),(9684,226139,'_wp_attached_file','New_Stadsig_Website_HousePlansHeader.jpg'),(9685,226137,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.097764586942255;s:5:\"bytes\";i:6931;s:11:\"size_before\";i:169141;s:10:\"size_after\";i:162210;s:4:\"time\";d:0.18999999999999997;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29;s:5:\"bytes\";i:606;s:11:\"size_before\";i:11466;s:10:\"size_after\";i:10860;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.46;s:5:\"bytes\";i:391;s:11:\"size_before\";i:7160;s:10:\"size_after\";i:6769;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9;s:5:\"bytes\";i:1244;s:11:\"size_before\";i:25394;s:10:\"size_after\";i:24150;s:4:\"time\";d:0.05;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.73;s:5:\"bytes\";i:1452;s:11:\"size_before\";i:30703;s:10:\"size_after\";i:29251;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9;s:5:\"bytes\";i:1936;s:11:\"size_before\";i:39508;s:10:\"size_after\";i:37572;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:29251;s:10:\"size_after\";i:29251;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.07;s:5:\"bytes\";i:1302;s:11:\"size_before\";i:25659;s:10:\"size_after\";i:24357;s:4:\"time\";d:0.03;}}}'),(9686,226139,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1580;s:6:\"height\";i:425;s:4:\"file\";s:40:\"New_Stadsig_Website_HousePlansHeader.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"New_Stadsig_Website_HousePlansHeader-300x81.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_HousePlansHeader-1024x275.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_Website_HousePlansHeader-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:48:\"New_Stadsig_Website_HousePlansHeader-768x207.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_HousePlansHeader-1536x413.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_Website_HousePlansHeader-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_HousePlansHeader-1080x425.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_Website_HousePlansHeader-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_Website_HousePlansHeader-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_HousePlansHeader-1080x291.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_Website_HousePlansHeader-400x425.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_HousePlansHeader-1280x344.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_Website_HousePlansHeader-980x264.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:48:\"New_Stadsig_Website_HousePlansHeader-480x129.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:51:08\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"43.11\";}'),(9687,226140,'_wp_attached_file','New_Stadsig_Website_LifestyleCollage4.jpg'),(9688,226140,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:41:\"New_Stadsig_Website_LifestyleCollage4.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage4-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage4-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage4-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage4-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:50:27\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"41.87\";}'),(9689,226141,'_wp_attached_file','New_Stadsig_Website_LifestyleCollage5.jpg'),(9690,226140,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.0147272442845328;s:5:\"bytes\";i:2698;s:11:\"size_before\";i:89494;s:10:\"size_after\";i:86796;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62;s:5:\"bytes\";i:900;s:11:\"size_before\";i:13595;s:10:\"size_after\";i:12695;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4;s:5:\"bytes\";i:511;s:11:\"size_before\";i:7985;s:10:\"size_after\";i:7474;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.48;s:5:\"bytes\";i:1287;s:11:\"size_before\";i:23496;s:10:\"size_after\";i:22209;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22209;s:10:\"size_after\";i:22209;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22209;s:10:\"size_after\";i:22209;s:4:\"time\";d:0.02;}}}'),(9691,226141,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:41:\"New_Stadsig_Website_LifestyleCollage5.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage5-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage5-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage5-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage5-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:49:43\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"45.85\";}'),(9692,226142,'_wp_attached_file','New_Stadsig_Website_LifestyleCollage6.jpg'),(9693,226142,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:41:\"New_Stadsig_Website_LifestyleCollage6.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage6-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage6-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage6-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage6-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:49:13\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"41.82\";}'),(9694,226141,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.2516658918332557;s:5:\"bytes\";i:1453;s:11:\"size_before\";i:64530;s:10:\"size_after\";i:63077;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.47;s:5:\"bytes\";i:437;s:11:\"size_before\";i:9787;s:10:\"size_after\";i:9350;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.97;s:5:\"bytes\";i:350;s:11:\"size_before\";i:5861;s:10:\"size_after\";i:5511;s:4:\"time\";d:0.03;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.98;s:5:\"bytes\";i:666;s:11:\"size_before\";i:16738;s:10:\"size_after\";i:16072;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16072;s:10:\"size_after\";i:16072;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16072;s:10:\"size_after\";i:16072;s:4:\"time\";d:0.02;}}}'),(9695,226143,'_wp_attached_file','New_StadsigUnit1_full.jpg'),(9696,226143,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1299;s:6:\"height\";i:485;s:4:\"file\";s:25:\"New_StadsigUnit1_full.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit1_full-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit1_full-1024x382.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit1_full-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:\"New_StadsigUnit1_full-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit1_full-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit1_full-1080x485.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit1_full-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit1_full-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit1_full-1080x403.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit1_full-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit1_full-1280x478.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit1_full-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit1_full-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:48:37\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"44.14\";}'),(9697,226144,'_wp_attached_file','New_StadsigUnit1_mobile.jpg'),(9698,226142,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.4708347659625876;s:5:\"bytes\";i:3735;s:11:\"size_before\";i:107611;s:10:\"size_after\";i:103876;s:4:\"time\";d:0.09;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.39;s:5:\"bytes\";i:1205;s:11:\"size_before\";i:16311;s:10:\"size_after\";i:15106;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.76;s:5:\"bytes\";i:738;s:11:\"size_before\";i:9513;s:10:\"size_after\";i:8775;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3;s:5:\"bytes\";i:1792;s:11:\"size_before\";i:28457;s:10:\"size_after\";i:26665;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26665;s:10:\"size_after\";i:26665;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26665;s:10:\"size_after\";i:26665;s:4:\"time\";d:0.02;}}}'),(9699,226144,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:525;s:6:\"height\";i:372;s:4:\"file\";s:27:\"New_StadsigUnit1_mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit1_mobile-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit1_mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit1_mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit1_mobile-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit1_mobile-510x372.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit1_mobile-400x372.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit1_mobile-480x340.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:47:43\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"38.17\";}'),(9700,226139,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.3516319217355566;s:5:\"bytes\";i:20960;s:11:\"size_before\";i:625367;s:10:\"size_after\";i:604407;s:4:\"time\";d:0.61;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.41;s:5:\"bytes\";i:530;s:11:\"size_before\";i:8268;s:10:\"size_after\";i:7738;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.47;s:5:\"bytes\";i:1964;s:11:\"size_before\";i:56535;s:10:\"size_after\";i:54571;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.61;s:5:\"bytes\";i:290;s:11:\"size_before\";i:6291;s:10:\"size_after\";i:6001;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2;s:5:\"bytes\";i:1482;s:11:\"size_before\";i:35251;s:10:\"size_after\";i:33769;s:4:\"time\";d:0.04;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.77;s:5:\"bytes\";i:2924;s:11:\"size_before\";i:105420;s:10:\"size_after\";i:102496;s:4:\"time\";d:0.06;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.88;s:5:\"bytes\";i:880;s:11:\"size_before\";i:22663;s:10:\"size_after\";i:21783;s:4:\"time\";d:0.02;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.91;s:5:\"bytes\";i:2581;s:11:\"size_before\";i:88807;s:10:\"size_after\";i:86226;s:4:\"time\";d:0.08;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.86;s:5:\"bytes\";i:935;s:11:\"size_before\";i:24202;s:10:\"size_after\";i:23267;s:4:\"time\";d:0.04;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.08;s:5:\"bytes\";i:1107;s:11:\"size_before\";i:35923;s:10:\"size_after\";i:34816;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.39;s:5:\"bytes\";i:2090;s:11:\"size_before\";i:61739;s:10:\"size_after\";i:59649;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.11;s:5:\"bytes\";i:985;s:11:\"size_before\";i:31667;s:10:\"size_after\";i:30682;s:4:\"time\";d:0.03;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.22;s:5:\"bytes\";i:2560;s:11:\"size_before\";i:79568;s:10:\"size_after\";i:77008;s:4:\"time\";d:0.04;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.38;s:5:\"bytes\";i:1763;s:11:\"size_before\";i:52087;s:10:\"size_after\";i:50324;s:4:\"time\";d:0.11;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.13;s:5:\"bytes\";i:869;s:11:\"size_before\";i:16946;s:10:\"size_after\";i:16077;s:4:\"time\";d:0.05;}}}'),(9701,226145,'_wp_attached_file','New_StadsigUnit2_full.jpg'),(9702,226145,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1299;s:6:\"height\";i:485;s:4:\"file\";s:25:\"New_StadsigUnit2_full.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit2_full-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit2_full-1024x382.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit2_full-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:\"New_StadsigUnit2_full-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit2_full-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit2_full-1080x485.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit2_full-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit2_full-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit2_full-1080x403.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit2_full-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit2_full-1280x478.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit2_full-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit2_full-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:47:05\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"43.76\";}'),(9703,226146,'_wp_attached_file','New_StadsigUnit2_mobile.jpg'),(9704,226144,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.014542988471102;s:5:\"bytes\";i:9309;s:11:\"size_before\";i:132710;s:10:\"size_after\";i:123401;s:4:\"time\";d:0.17;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.06;s:5:\"bytes\";i:697;s:11:\"size_before\";i:11495;s:10:\"size_after\";i:10798;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.97;s:5:\"bytes\";i:383;s:11:\"size_before\";i:5497;s:10:\"size_after\";i:5114;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.69;s:5:\"bytes\";i:1192;s:11:\"size_before\";i:17828;s:10:\"size_after\";i:16636;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.89;s:5:\"bytes\";i:1256;s:11:\"size_before\";i:18231;s:10:\"size_after\";i:16975;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.13;s:5:\"bytes\";i:2116;s:11:\"size_before\";i:29690;s:10:\"size_after\";i:27574;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62;s:5:\"bytes\";i:1945;s:11:\"size_before\";i:25520;s:10:\"size_after\";i:23575;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.04;s:5:\"bytes\";i:1720;s:11:\"size_before\";i:24449;s:10:\"size_after\";i:22729;s:4:\"time\";d:0.03;}}}'),(9705,226146,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:573;s:6:\"height\";i:388;s:4:\"file\";s:27:\"New_StadsigUnit2_mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit2_mobile-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit2_mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit2_mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit2_mobile-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit2_mobile-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit2_mobile-400x388.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit2_mobile-480x325.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:46:24\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"43.69\";}'),(9706,226143,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.809779773649952;s:5:\"bytes\";i:30025;s:11:\"size_before\";i:440910;s:10:\"size_after\";i:410885;s:4:\"time\";d:0.33000000000000007;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95;s:5:\"bytes\";i:457;s:11:\"size_before\";i:7675;s:10:\"size_after\";i:7218;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.94;s:5:\"bytes\";i:3511;s:11:\"size_before\";i:50627;s:10:\"size_after\";i:47116;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1;s:5:\"bytes\";i:294;s:11:\"size_before\";i:4819;s:10:\"size_after\";i:4525;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.06;s:5:\"bytes\";i:1919;s:11:\"size_before\";i:31681;s:10:\"size_after\";i:29762;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:7;s:5:\"bytes\";i:1116;s:11:\"size_before\";i:15938;s:10:\"size_after\";i:14822;s:4:\"time\";d:0.01;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.52;s:5:\"bytes\";i:5237;s:11:\"size_before\";i:69622;s:10:\"size_after\";i:64385;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04;s:5:\"bytes\";i:1024;s:11:\"size_before\";i:16954;s:10:\"size_after\";i:15930;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.79;s:5:\"bytes\";i:1742;s:11:\"size_before\";i:25667;s:10:\"size_after\";i:23925;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.06;s:5:\"bytes\";i:3942;s:11:\"size_before\";i:55822;s:10:\"size_after\";i:51880;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.94;s:5:\"bytes\";i:1514;s:11:\"size_before\";i:25500;s:10:\"size_after\";i:23986;s:4:\"time\";d:0.03;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8;s:5:\"bytes\";i:4950;s:11:\"size_before\";i:72827;s:10:\"size_after\";i:67877;s:4:\"time\";d:0.05;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.05;s:5:\"bytes\";i:3413;s:11:\"size_before\";i:48417;s:10:\"size_after\";i:45004;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9;s:5:\"bytes\";i:906;s:11:\"size_before\";i:15361;s:10:\"size_after\";i:14455;s:4:\"time\";d:0.03;}}}'),(9707,226147,'_wp_attached_file','New_StadsigUnit3_full.jpg'),(9708,226147,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1298;s:6:\"height\";i:485;s:4:\"file\";s:25:\"New_StadsigUnit3_full.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit3_full-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit3_full-1024x383.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit3_full-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:\"New_StadsigUnit3_full-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit3_full-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit3_full-1080x485.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit3_full-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit3_full-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit3_full-1080x404.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit3_full-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit3_full-1280x478.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit3_full-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit3_full-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:46:03\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"42.49\";}'),(9709,226146,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.1539791266016985;s:5:\"bytes\";i:8544;s:11:\"size_before\";i:138837;s:10:\"size_after\";i:130293;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.12;s:5:\"bytes\";i:728;s:11:\"size_before\";i:11888;s:10:\"size_after\";i:11160;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.27;s:5:\"bytes\";i:349;s:11:\"size_before\";i:5564;s:10:\"size_after\";i:5215;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.94;s:5:\"bytes\";i:1117;s:11:\"size_before\";i:18808;s:10:\"size_after\";i:17691;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.72;s:5:\"bytes\";i:1107;s:11:\"size_before\";i:19354;s:10:\"size_after\";i:18247;s:4:\"time\";d:0.07;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.69;s:5:\"bytes\";i:1720;s:11:\"size_before\";i:30230;s:10:\"size_after\";i:28510;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.27;s:5:\"bytes\";i:1995;s:11:\"size_before\";i:27456;s:10:\"size_after\";i:25461;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.98;s:5:\"bytes\";i:1528;s:11:\"size_before\";i:25537;s:10:\"size_after\";i:24009;s:4:\"time\";d:0.03;}}}'),(9710,226148,'_wp_attached_file','New_StadsigUnit3_mobile.jpg'),(9711,226148,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:558;s:6:\"height\";i:403;s:4:\"file\";s:27:\"New_StadsigUnit3_mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit3_mobile-300x217.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit3_mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit3_mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit3_mobile-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit3_mobile-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit3_mobile-400x403.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit3_mobile-480x347.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:45:20\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"42.93\";}'),(9712,226145,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.3814683863534825;s:5:\"bytes\";i:28138;s:11:\"size_before\";i:440933;s:10:\"size_after\";i:412795;s:4:\"time\";d:0.4;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9;s:5:\"bytes\";i:453;s:11:\"size_before\";i:7677;s:10:\"size_after\";i:7224;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28;s:5:\"bytes\";i:3276;s:11:\"size_before\";i:52185;s:10:\"size_after\";i:48909;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.35;s:5:\"bytes\";i:289;s:11:\"size_before\";i:4549;s:10:\"size_after\";i:4260;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.02;s:5:\"bytes\";i:1965;s:11:\"size_before\";i:32649;s:10:\"size_after\";i:30684;s:4:\"time\";d:0.04;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.53;s:5:\"bytes\";i:831;s:11:\"size_before\";i:15033;s:10:\"size_after\";i:14202;s:4:\"time\";d:0.03;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2;s:5:\"bytes\";i:4985;s:11:\"size_before\";i:69191;s:10:\"size_after\";i:64206;s:4:\"time\";d:0.06;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.21;s:5:\"bytes\";i:823;s:11:\"size_before\";i:15788;s:10:\"size_after\";i:14965;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.16;s:5:\"bytes\";i:1476;s:11:\"size_before\";i:23960;s:10:\"size_after\";i:22484;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.39;s:5:\"bytes\";i:3637;s:11:\"size_before\";i:56874;s:10:\"size_after\";i:53237;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.53;s:5:\"bytes\";i:1263;s:11:\"size_before\";i:22842;s:10:\"size_after\";i:21579;s:4:\"time\";d:0.02;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.65;s:5:\"bytes\";i:5043;s:11:\"size_before\";i:75808;s:10:\"size_after\";i:70765;s:4:\"time\";d:0.1;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.61;s:5:\"bytes\";i:3230;s:11:\"size_before\";i:48842;s:10:\"size_after\";i:45612;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.58;s:5:\"bytes\";i:867;s:11:\"size_before\";i:15535;s:10:\"size_after\";i:14668;s:4:\"time\";d:0.01;}}}'),(9713,226149,'_wp_attached_file','New_StadsigUnit4_full.jpg'),(9714,226149,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1299;s:6:\"height\";i:485;s:4:\"file\";s:25:\"New_StadsigUnit4_full.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit4_full-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit4_full-1024x382.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit4_full-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:\"New_StadsigUnit4_full-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit4_full-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit4_full-1080x485.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit4_full-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit4_full-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit4_full-1080x403.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit4_full-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit4_full-1280x478.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit4_full-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit4_full-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:44:42\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"44.44\";}'),(9715,226150,'_wp_attached_file','New_StadsigUnit4_mobile.jpg'),(9716,226148,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.453244510239328;s:5:\"bytes\";i:10462;s:11:\"size_before\";i:162120;s:10:\"size_after\";i:151658;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87;s:5:\"bytes\";i:828;s:11:\"size_before\";i:14096;s:10:\"size_after\";i:13268;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.43;s:5:\"bytes\";i:417;s:11:\"size_before\";i:6489;s:10:\"size_after\";i:6072;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.03;s:5:\"bytes\";i:1245;s:11:\"size_before\";i:20642;s:10:\"size_after\";i:19397;s:4:\"time\";d:0.05;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.13;s:5:\"bytes\";i:1348;s:11:\"size_before\";i:22001;s:10:\"size_after\";i:20653;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4;s:5:\"bytes\";i:2245;s:11:\"size_before\";i:35068;s:10:\"size_after\";i:32823;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.36;s:5:\"bytes\";i:2459;s:11:\"size_before\";i:33414;s:10:\"size_after\";i:30955;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.31;s:5:\"bytes\";i:1920;s:11:\"size_before\";i:30410;s:10:\"size_after\";i:28490;s:4:\"time\";d:0.02;}}}'),(9717,226150,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:525;s:6:\"height\";i:372;s:4:\"file\";s:27:\"New_StadsigUnit4_mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit4_mobile-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit4_mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit4_mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit4_mobile-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit4_mobile-510x372.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit4_mobile-400x372.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit4_mobile-480x340.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:44:03\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"37.3\";}'),(9718,226151,'_wp_attached_file','New_StadsigUnit5_full.jpg'),(9719,226151,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1297;s:6:\"height\";i:485;s:4:\"file\";s:25:\"New_StadsigUnit5_full.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit5_full-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit5_full-1024x383.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit5_full-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:\"New_StadsigUnit5_full-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit5_full-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit5_full-1080x485.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit5_full-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit5_full-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit5_full-1080x404.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit5_full-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit5_full-1280x479.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit5_full-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit5_full-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:43:19\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"44.42\";}'),(9720,226147,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.8577903637106505;s:5:\"bytes\";i:34073;s:11:\"size_before\";i:496851;s:10:\"size_after\";i:462778;s:4:\"time\";d:0.4000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.46;s:5:\"bytes\";i:550;s:11:\"size_before\";i:8510;s:10:\"size_after\";i:7960;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.75;s:5:\"bytes\";i:4013;s:11:\"size_before\";i:59436;s:10:\"size_after\";i:55423;s:4:\"time\";d:0.05;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.21;s:5:\"bytes\";i:298;s:11:\"size_before\";i:4796;s:10:\"size_after\";i:4498;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.98;s:5:\"bytes\";i:2632;s:11:\"size_before\";i:37712;s:10:\"size_after\";i:35080;s:4:\"time\";d:0.08;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.69;s:5:\"bytes\";i:1158;s:11:\"size_before\";i:17314;s:10:\"size_after\";i:16156;s:4:\"time\";d:0.01;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32;s:5:\"bytes\";i:5864;s:11:\"size_before\";i:80087;s:10:\"size_after\";i:74223;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.59;s:5:\"bytes\";i:1207;s:11:\"size_before\";i:18329;s:10:\"size_after\";i:17122;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.82;s:5:\"bytes\";i:1877;s:11:\"size_before\";i:27540;s:10:\"size_after\";i:25663;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.88;s:5:\"bytes\";i:4451;s:11:\"size_before\";i:64655;s:10:\"size_after\";i:60204;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8;s:5:\"bytes\";i:1696;s:11:\"size_before\";i:21757;s:10:\"size_after\";i:20061;s:4:\"time\";d:0.02;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.81;s:5:\"bytes\";i:5746;s:11:\"size_before\";i:84371;s:10:\"size_after\";i:78625;s:4:\"time\";d:0.08;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.37;s:5:\"bytes\";i:3497;s:11:\"size_before\";i:54924;s:10:\"size_after\";i:51427;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.22;s:5:\"bytes\";i:1084;s:11:\"size_before\";i:17420;s:10:\"size_after\";i:16336;s:4:\"time\";d:0.01;}}}'),(9721,226152,'_wp_attached_file','New_StadsigUnit5_mobile.jpg'),(9722,226150,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.613577573241894;s:5:\"bytes\";i:8795;s:11:\"size_before\";i:132984;s:10:\"size_after\";i:124189;s:4:\"time\";d:0.14;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.14;s:5:\"bytes\";i:745;s:11:\"size_before\";i:12134;s:10:\"size_after\";i:11389;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.27;s:5:\"bytes\";i:374;s:11:\"size_before\";i:5146;s:10:\"size_after\";i:4772;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.92;s:5:\"bytes\";i:1096;s:11:\"size_before\";i:18501;s:10:\"size_after\";i:17405;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.27;s:5:\"bytes\";i:1188;s:11:\"size_before\";i:18938;s:10:\"size_after\";i:17750;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.71;s:5:\"bytes\";i:1999;s:11:\"size_before\";i:29772;s:10:\"size_after\";i:27773;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.73;s:5:\"bytes\";i:1825;s:11:\"size_before\";i:23605;s:10:\"size_after\";i:21780;s:4:\"time\";d:0.01;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3;s:5:\"bytes\";i:1568;s:11:\"size_before\";i:24888;s:10:\"size_after\";i:23320;s:4:\"time\";d:0.01;}}}'),(9723,226152,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:513;s:6:\"height\";i:389;s:4:\"file\";s:27:\"New_StadsigUnit5_mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit5_mobile-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit5_mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit5_mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit5_mobile-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit5_mobile-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit5_mobile-400x389.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:389;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit5_mobile-480x364.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:42:09\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"42.27\";}'),(9724,226153,'_wp_attached_file','New_StadsigUnit6_full.jpg'),(9725,226153,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1299;s:6:\"height\";i:485;s:4:\"file\";s:25:\"New_StadsigUnit6_full.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit6_full-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit6_full-1024x382.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit6_full-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:\"New_StadsigUnit6_full-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit6_full-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit6_full-1080x485.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit6_full-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit6_full-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit6_full-1080x403.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit6_full-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit6_full-1280x478.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit6_full-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit6_full-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:41:26\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"44.34\";}'),(9726,226149,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.88620399248517;s:5:\"bytes\";i:29763;s:11:\"size_before\";i:432212;s:10:\"size_after\";i:402449;s:4:\"time\";d:0.35;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.27;s:5:\"bytes\";i:478;s:11:\"size_before\";i:7628;s:10:\"size_after\";i:7150;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.43;s:5:\"bytes\";i:3194;s:11:\"size_before\";i:49672;s:10:\"size_after\";i:46478;s:4:\"time\";d:0.05;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45;s:5:\"bytes\";i:372;s:11:\"size_before\";i:4992;s:10:\"size_after\";i:4620;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.63;s:5:\"bytes\";i:2111;s:11:\"size_before\";i:31831;s:10:\"size_after\";i:29720;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.31;s:5:\"bytes\";i:1001;s:11:\"size_before\";i:15863;s:10:\"size_after\";i:14862;s:4:\"time\";d:0.01;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92;s:5:\"bytes\";i:5368;s:11:\"size_before\";i:67792;s:10:\"size_after\";i:62424;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04;s:5:\"bytes\";i:1035;s:11:\"size_before\";i:17143;s:10:\"size_after\";i:16108;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.19;s:5:\"bytes\";i:1582;s:11:\"size_before\";i:25539;s:10:\"size_after\";i:23957;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.93;s:5:\"bytes\";i:3794;s:11:\"size_before\";i:54725;s:10:\"size_after\";i:50931;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.01;s:5:\"bytes\";i:1691;s:11:\"size_before\";i:24137;s:10:\"size_after\";i:22446;s:4:\"time\";d:0.02;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.86;s:5:\"bytes\";i:4819;s:11:\"size_before\";i:70237;s:10:\"size_after\";i:65418;s:4:\"time\";d:0.06;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.01;s:5:\"bytes\";i:3304;s:11:\"size_before\";i:47118;s:10:\"size_after\";i:43814;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.53;s:5:\"bytes\";i:1014;s:11:\"size_before\";i:15535;s:10:\"size_after\";i:14521;s:4:\"time\";d:0.01;}}}'),(9727,226154,'_wp_attached_file','New_StadsigUnit6_mobile.jpg'),(9728,226154,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:558;s:6:\"height\";i:403;s:4:\"file\";s:27:\"New_StadsigUnit6_mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit6_mobile-300x217.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit6_mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit6_mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit6_mobile-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit6_mobile-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit6_mobile-400x403.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit6_mobile-480x347.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:41:03\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"42.91\";}'),(9729,226152,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.441519268357425;s:5:\"bytes\";i:13993;s:11:\"size_before\";i:165764;s:10:\"size_after\";i:151771;s:4:\"time\";d:0.21000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.75;s:5:\"bytes\";i:1197;s:11:\"size_before\";i:15438;s:10:\"size_after\";i:14241;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.29;s:5:\"bytes\";i:463;s:11:\"size_before\";i:6347;s:10:\"size_after\";i:5884;s:4:\"time\";d:0.04;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.07;s:5:\"bytes\";i:1543;s:11:\"size_before\";i:21819;s:10:\"size_after\";i:20276;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.32;s:5:\"bytes\";i:1462;s:11:\"size_before\";i:23120;s:10:\"size_after\";i:21658;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.66;s:5:\"bytes\";i:1993;s:11:\"size_before\";i:35242;s:10:\"size_after\";i:33249;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.57;s:5:\"bytes\";i:5234;s:11:\"size_before\";i:31584;s:10:\"size_after\";i:26350;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.52;s:5:\"bytes\";i:2101;s:11:\"size_before\";i:32214;s:10:\"size_after\";i:30113;s:4:\"time\";d:0.04;}}}'),(9730,226155,'_wp_attached_file','New_StadsigUnit7_full.jpg'),(9731,226155,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1299;s:6:\"height\";i:485;s:4:\"file\";s:25:\"New_StadsigUnit7_full.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit7_full-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit7_full-1024x382.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit7_full-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:\"New_StadsigUnit7_full-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit7_full-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit7_full-1080x485.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit7_full-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit7_full-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit7_full-1080x403.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit7_full-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit7_full-1280x478.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit7_full-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit7_full-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:40:40\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"43.68\";}'),(9732,226151,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.631599013801694;s:5:\"bytes\";i:36030;s:11:\"size_before\";i:472116;s:10:\"size_after\";i:436086;s:4:\"time\";d:0.45999999999999996;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.42;s:5:\"bytes\";i:512;s:11:\"size_before\";i:7976;s:10:\"size_after\";i:7464;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2;s:5:\"bytes\";i:4047;s:11:\"size_before\";i:56236;s:10:\"size_after\";i:52189;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.63;s:5:\"bytes\";i:249;s:11:\"size_before\";i:4425;s:10:\"size_after\";i:4176;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.48;s:5:\"bytes\";i:2257;s:11:\"size_before\";i:34851;s:10:\"size_after\";i:32594;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.83;s:5:\"bytes\";i:1135;s:11:\"size_before\";i:16606;s:10:\"size_after\";i:15471;s:4:\"time\";d:0.03;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.15;s:5:\"bytes\";i:6184;s:11:\"size_before\";i:75877;s:10:\"size_after\";i:69693;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.41;s:5:\"bytes\";i:1276;s:11:\"size_before\";i:17212;s:10:\"size_after\";i:15936;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.74;s:5:\"bytes\";i:1717;s:11:\"size_before\";i:25457;s:10:\"size_after\";i:23740;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.96;s:5:\"bytes\";i:4234;s:11:\"size_before\";i:60822;s:10:\"size_after\";i:56588;s:4:\"time\";d:0.11;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.52;s:5:\"bytes\";i:3326;s:11:\"size_before\";i:21435;s:10:\"size_after\";i:18109;s:4:\"time\";d:0.03;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.13;s:5:\"bytes\";i:5765;s:11:\"size_before\";i:80901;s:10:\"size_after\";i:75136;s:4:\"time\";d:0.07;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.74;s:5:\"bytes\";i:4135;s:11:\"size_before\";i:53399;s:10:\"size_after\";i:49264;s:4:\"time\";d:0.05;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.05;s:5:\"bytes\";i:1193;s:11:\"size_before\";i:16919;s:10:\"size_after\";i:15726;s:4:\"time\";d:0.02;}}}'),(9733,226154,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.038437736368013;s:5:\"bytes\";i:10236;s:11:\"size_before\";i:145430;s:10:\"size_after\";i:135194;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.48;s:5:\"bytes\";i:814;s:11:\"size_before\";i:12557;s:10:\"size_after\";i:11743;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.34;s:5:\"bytes\";i:495;s:11:\"size_before\";i:5933;s:10:\"size_after\";i:5438;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.07;s:5:\"bytes\";i:1184;s:11:\"size_before\";i:19505;s:10:\"size_after\";i:18321;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.52;s:5:\"bytes\";i:1314;s:11:\"size_before\";i:20162;s:10:\"size_after\";i:18848;s:4:\"time\";d:0.04;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.06;s:5:\"bytes\";i:2213;s:11:\"size_before\";i:31344;s:10:\"size_after\";i:29131;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.24;s:5:\"bytes\";i:2386;s:11:\"size_before\";i:28971;s:10:\"size_after\";i:26585;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.79;s:5:\"bytes\";i:1830;s:11:\"size_before\";i:26958;s:10:\"size_after\";i:25128;s:4:\"time\";d:0.02;}}}'),(9734,226156,'_wp_attached_file','New_StadsigUnit7_mobile.jpg'),(9735,226156,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:581;s:6:\"height\";i:419;s:4:\"file\";s:27:\"New_StadsigUnit7_mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit7_mobile-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit7_mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit7_mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit7_mobile-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit7_mobile-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit7_mobile-400x419.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit7_mobile-480x346.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:40:11\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"44.05\";}'),(9736,226157,'_wp_attached_file','New_StadsigUnit8_full.jpg'),(9737,226157,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1299;s:6:\"height\";i:485;s:4:\"file\";s:25:\"New_StadsigUnit8_full.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit8_full-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit8_full-1024x382.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit8_full-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:\"New_StadsigUnit8_full-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit8_full-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit8_full-1080x485.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit8_full-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit8_full-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit8_full-1080x403.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit8_full-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit8_full-1280x478.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit8_full-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit8_full-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:39:33\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"50.44\";}'),(9738,226153,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.366347838387795;s:5:\"bytes\";i:33848;s:11:\"size_before\";i:459495;s:10:\"size_after\";i:425647;s:4:\"time\";d:0.45000000000000007;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:470;s:11:\"size_before\";i:7829;s:10:\"size_after\";i:7359;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.56;s:5:\"bytes\";i:4029;s:11:\"size_before\";i:53315;s:10:\"size_after\";i:49286;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.01;s:5:\"bytes\";i:291;s:11:\"size_before\";i:4842;s:10:\"size_after\";i:4551;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:7;s:5:\"bytes\";i:2349;s:11:\"size_before\";i:33534;s:10:\"size_after\";i:31185;s:4:\"time\";d:0.07;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.18;s:5:\"bytes\";i:1037;s:11:\"size_before\";i:16771;s:10:\"size_after\";i:15734;s:4:\"time\";d:0.01;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.15;s:5:\"bytes\";i:5874;s:11:\"size_before\";i:72032;s:10:\"size_after\";i:66158;s:4:\"time\";d:0.13;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9;s:5:\"bytes\";i:1267;s:11:\"size_before\";i:18359;s:10:\"size_after\";i:17092;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.21;s:5:\"bytes\";i:1990;s:11:\"size_before\";i:27612;s:10:\"size_after\";i:25622;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6;s:5:\"bytes\";i:4419;s:11:\"size_before\";i:58149;s:10:\"size_after\";i:53730;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.24;s:5:\"bytes\";i:1549;s:11:\"size_before\";i:24825;s:10:\"size_after\";i:23276;s:4:\"time\";d:0.01;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.44;s:5:\"bytes\";i:5635;s:11:\"size_before\";i:75770;s:10:\"size_after\";i:70135;s:4:\"time\";d:0.05;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4;s:5:\"bytes\";i:3707;s:11:\"size_before\";i:50078;s:10:\"size_after\";i:46371;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.52;s:5:\"bytes\";i:1231;s:11:\"size_before\";i:16379;s:10:\"size_after\";i:15148;s:4:\"time\";d:0.03;}}}'),(9739,226156,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.482956919568558;s:5:\"bytes\";i:9154;s:11:\"size_before\";i:141201;s:10:\"size_after\";i:132047;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.07;s:5:\"bytes\";i:722;s:11:\"size_before\";i:11899;s:10:\"size_after\";i:11177;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8;s:5:\"bytes\";i:442;s:11:\"size_before\";i:5664;s:10:\"size_after\";i:5222;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.47;s:5:\"bytes\";i:985;s:11:\"size_before\";i:18010;s:10:\"size_after\";i:17025;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.59;s:5:\"bytes\";i:1037;s:11:\"size_before\";i:18542;s:10:\"size_after\";i:17505;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.26;s:5:\"bytes\";i:1898;s:11:\"size_before\";i:30299;s:10:\"size_after\";i:28401;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42;s:5:\"bytes\";i:2279;s:11:\"size_before\";i:30733;s:10:\"size_after\";i:28454;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.87;s:5:\"bytes\";i:1791;s:11:\"size_before\";i:26054;s:10:\"size_after\";i:24263;s:4:\"time\";d:0.03;}}}'),(9740,226158,'_wp_attached_file','New_StadsigUnit8_mobile.jpg'),(9741,226158,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:626;s:6:\"height\";i:372;s:4:\"file\";s:27:\"New_StadsigUnit8_mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit8_mobile-300x178.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit8_mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit8_mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit8_mobile-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit8_mobile-510x372.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit8_mobile-400x372.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit8_mobile-480x285.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:39:00\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"35.82\";}'),(9742,226137,'original-file','New_Stadsig_HousePlans_header_Mobile-updraft-pre-smush-original.jpg'),(9743,226159,'_wp_attached_file','New_StadsigUnit9_full.jpg'),(9744,226159,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1298;s:6:\"height\";i:485;s:4:\"file\";s:25:\"New_StadsigUnit9_full.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit9_full-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit9_full-1024x383.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit9_full-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:\"New_StadsigUnit9_full-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit9_full-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit9_full-1080x485.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit9_full-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit9_full-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit9_full-1080x404.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit9_full-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit9_full-1280x478.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit9_full-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"New_StadsigUnit9_full-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:38:12\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"44.6\";}'),(9745,226155,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.216559752079413;s:5:\"bytes\";i:30948;s:11:\"size_before\";i:428847;s:10:\"size_after\";i:397899;s:4:\"time\";d:0.4;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.48;s:5:\"bytes\";i:503;s:11:\"size_before\";i:7765;s:10:\"size_after\";i:7262;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.05;s:5:\"bytes\";i:3626;s:11:\"size_before\";i:51405;s:10:\"size_after\";i:47779;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.01;s:5:\"bytes\";i:234;s:11:\"size_before\";i:3896;s:10:\"size_after\";i:3662;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.34;s:5:\"bytes\";i:2023;s:11:\"size_before\";i:31929;s:10:\"size_after\";i:29906;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.51;s:5:\"bytes\";i:946;s:11:\"size_before\";i:14531;s:10:\"size_after\";i:13585;s:4:\"time\";d:0.05;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.14;s:5:\"bytes\";i:5656;s:11:\"size_before\";i:69466;s:10:\"size_after\";i:63810;s:4:\"time\";d:0.06;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.44;s:5:\"bytes\";i:967;s:11:\"size_before\";i:15006;s:10:\"size_after\";i:14039;s:4:\"time\";d:0.04;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.16;s:5:\"bytes\";i:1598;s:11:\"size_before\";i:22307;s:10:\"size_after\";i:20709;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.46;s:5:\"bytes\";i:4238;s:11:\"size_before\";i:56840;s:10:\"size_after\";i:52602;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.56;s:5:\"bytes\";i:1340;s:11:\"size_before\";i:17726;s:10:\"size_after\";i:16386;s:4:\"time\";d:0.01;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.98;s:5:\"bytes\";i:5139;s:11:\"size_before\";i:73629;s:10:\"size_after\";i:68490;s:4:\"time\";d:0.04;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45;s:5:\"bytes\";i:3642;s:11:\"size_before\";i:48856;s:10:\"size_after\";i:45214;s:4:\"time\";d:0.04;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.69;s:5:\"bytes\";i:1036;s:11:\"size_before\";i:15491;s:10:\"size_after\";i:14455;s:4:\"time\";d:0.02;}}}'),(9746,226160,'_wp_attached_file','New_StadsigUnit9_mobile.jpg'),(9747,226160,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:568;s:6:\"height\";i:401;s:4:\"file\";s:27:\"New_StadsigUnit9_mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit9_mobile-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit9_mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit9_mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit9_mobile-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit9_mobile-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit9_mobile-400x401.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit9_mobile-480x339.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:37:38\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"43.89\";}'),(9748,226158,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.508370356062069;s:5:\"bytes\";i:9329;s:11:\"size_before\";i:124248;s:10:\"size_after\";i:114919;s:4:\"time\";d:0.18000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.98;s:5:\"bytes\";i:634;s:11:\"size_before\";i:10598;s:10:\"size_after\";i:9964;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.84;s:5:\"bytes\";i:410;s:11:\"size_before\";i:5230;s:10:\"size_after\";i:4820;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.12;s:5:\"bytes\";i:1040;s:11:\"size_before\";i:17003;s:10:\"size_after\";i:15963;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.88;s:5:\"bytes\";i:1484;s:11:\"size_before\";i:18824;s:10:\"size_after\";i:17340;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.64;s:5:\"bytes\";i:2219;s:11:\"size_before\";i:29031;s:10:\"size_after\";i:26812;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.21;s:5:\"bytes\";i:1969;s:11:\"size_before\";i:21377;s:10:\"size_after\";i:19408;s:4:\"time\";d:0.04;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.09;s:5:\"bytes\";i:1573;s:11:\"size_before\";i:22185;s:10:\"size_after\";i:20612;s:4:\"time\";d:0.04;}}}'),(9749,226137,'smush-complete','1'),(9750,226137,'smush-info','The file was compressed from 42.02 KB to 40.31 KB saving 4.08 percent using WP-Optimize'),(9751,226137,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:43029;s:12:\"smushed-size\";i:41275;s:15:\"savings-percent\";d:4.08;}'),(9752,226161,'_wp_attached_file','New_StadsigUnit10_full.jpg'),(9753,226138,'original-file','New_Stadsig_strelitzia-updraft-pre-smush-original.jpg'),(9754,226161,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1299;s:6:\"height\";i:485;s:4:\"file\";s:26:\"New_StadsigUnit10_full.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit10_full-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit10_full-1024x382.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit10_full-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:\"New_StadsigUnit10_full-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit10_full-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit10_full-1080x485.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit10_full-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit10_full-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit10_full-1080x403.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit10_full-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit10_full-1280x478.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit10_full-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit10_full-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:36:57\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"43.28\";}'),(9755,226138,'smush-complete','1'),(9756,226138,'smush-info','The file was compressed from 8.69 KB to 8.23 KB saving 5.22 percent using WP-Optimize'),(9757,226138,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:8894;s:12:\"smushed-size\";i:8430;s:15:\"savings-percent\";d:5.22;}'),(9758,226157,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.722062982859095;s:5:\"bytes\";i:28330;s:11:\"size_before\";i:421448;s:10:\"size_after\";i:393118;s:4:\"time\";d:0.46;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.76;s:5:\"bytes\";i:433;s:11:\"size_before\";i:7519;s:10:\"size_after\";i:7086;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.69;s:5:\"bytes\";i:3285;s:11:\"size_before\";i:49085;s:10:\"size_after\";i:45800;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.02;s:5:\"bytes\";i:229;s:11:\"size_before\";i:4564;s:10:\"size_after\";i:4335;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.71;s:5:\"bytes\";i:2135;s:11:\"size_before\";i:31823;s:10:\"size_after\";i:29688;s:4:\"time\";d:0.04;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95;s:5:\"bytes\";i:942;s:11:\"size_before\";i:15824;s:10:\"size_after\";i:14882;s:4:\"time\";d:0.01;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.44;s:5:\"bytes\";i:4847;s:11:\"size_before\";i:65122;s:10:\"size_after\";i:60275;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.53;s:5:\"bytes\";i:1110;s:11:\"size_before\";i:17003;s:10:\"size_after\";i:15893;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.76;s:5:\"bytes\";i:1387;s:11:\"size_before\";i:24093;s:10:\"size_after\";i:22706;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.35;s:5:\"bytes\";i:3950;s:11:\"size_before\";i:53763;s:10:\"size_after\";i:49813;s:4:\"time\";d:0.12;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29;s:5:\"bytes\";i:1115;s:11:\"size_before\";i:21085;s:10:\"size_after\";i:19970;s:4:\"time\";d:0.04;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7;s:5:\"bytes\";i:4627;s:11:\"size_before\";i:69020;s:10:\"size_after\";i:64393;s:4:\"time\";d:0.03;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.77;s:5:\"bytes\";i:3163;s:11:\"size_before\";i:46712;s:10:\"size_after\";i:43549;s:4:\"time\";d:0.05;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.99;s:5:\"bytes\";i:1107;s:11:\"size_before\";i:15835;s:10:\"size_after\";i:14728;s:4:\"time\";d:0.02;}}}'),(9759,226162,'_wp_attached_file','New_StadsigUnit10_mobile.jpg'),(9760,226160,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.297254207263064;s:5:\"bytes\";i:8887;s:11:\"size_before\";i:141125;s:10:\"size_after\";i:132238;s:4:\"time\";d:0.14;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.84;s:5:\"bytes\";i:691;s:11:\"size_before\";i:11829;s:10:\"size_after\";i:11138;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.61;s:5:\"bytes\";i:440;s:11:\"size_before\";i:5782;s:10:\"size_after\";i:5342;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.03;s:5:\"bytes\";i:1125;s:11:\"size_before\";i:18660;s:10:\"size_after\";i:17535;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.74;s:5:\"bytes\";i:1084;s:11:\"size_before\";i:18891;s:10:\"size_after\";i:17807;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.06;s:5:\"bytes\";i:1824;s:11:\"size_before\";i:30099;s:10:\"size_after\";i:28275;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.08;s:5:\"bytes\";i:2140;s:11:\"size_before\";i:30222;s:10:\"size_after\";i:28082;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.17;s:5:\"bytes\";i:1583;s:11:\"size_before\";i:25642;s:10:\"size_after\";i:24059;s:4:\"time\";d:0.02;}}}'),(9761,226139,'original-file','New_Stadsig_Website_HousePlansHeader-updraft-pre-smush-original.jpg'),(9762,226162,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:576;s:6:\"height\";i:403;s:4:\"file\";s:28:\"New_StadsigUnit10_mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit10_mobile-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit10_mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit10_mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit10_mobile-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit10_mobile-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit10_mobile-400x403.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit10_mobile-480x336.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:36:15\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"42.15\";}'),(9763,226163,'_wp_attached_file','New_StadsigUnit11_full.jpg'),(9764,226163,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1299;s:6:\"height\";i:485;s:4:\"file\";s:26:\"New_StadsigUnit11_full.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit11_full-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit11_full-1024x382.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit11_full-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:\"New_StadsigUnit11_full-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit11_full-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit11_full-1080x485.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit11_full-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit11_full-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit11_full-1080x403.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit11_full-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"New_StadsigUnit11_full-1280x478.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit11_full-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"New_StadsigUnit11_full-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:35:51\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"44.33\";}'),(9765,226159,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.416117196955466;s:5:\"bytes\";i:31189;s:11:\"size_before\";i:420557;s:10:\"size_after\";i:389368;s:4:\"time\";d:0.4;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.58;s:5:\"bytes\";i:494;s:11:\"size_before\";i:7512;s:10:\"size_after\";i:7018;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.25;s:5:\"bytes\";i:3668;s:11:\"size_before\";i:50605;s:10:\"size_after\";i:46937;s:4:\"time\";d:0.05;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29;s:5:\"bytes\";i:203;s:11:\"size_before\";i:3836;s:10:\"size_after\";i:3633;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.56;s:5:\"bytes\";i:2024;s:11:\"size_before\";i:30864;s:10:\"size_after\";i:28840;s:4:\"time\";d:0.03;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.56;s:5:\"bytes\";i:924;s:11:\"size_before\";i:14090;s:10:\"size_after\";i:13166;s:4:\"time\";d:0.02;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6;s:5:\"bytes\";i:5873;s:11:\"size_before\";i:68290;s:10:\"size_after\";i:62417;s:4:\"time\";d:0.05;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.02;s:5:\"bytes\";i:1057;s:11:\"size_before\";i:15052;s:10:\"size_after\";i:13995;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.29;s:5:\"bytes\";i:1618;s:11:\"size_before\";i:22187;s:10:\"size_after\";i:20569;s:4:\"time\";d:0.06;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.34;s:5:\"bytes\";i:4038;s:11:\"size_before\";i:55050;s:10:\"size_after\";i:51012;s:4:\"time\";d:0.06;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42;s:5:\"bytes\";i:1298;s:11:\"size_before\";i:17503;s:10:\"size_after\";i:16205;s:4:\"time\";d:0.02;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.25;s:5:\"bytes\";i:5241;s:11:\"size_before\";i:72257;s:10:\"size_after\";i:67016;s:4:\"time\";d:0.04;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.51;s:5:\"bytes\";i:3591;s:11:\"size_before\";i:47800;s:10:\"size_after\";i:44209;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.48;s:5:\"bytes\";i:1160;s:11:\"size_before\";i:15511;s:10:\"size_after\";i:14351;s:4:\"time\";d:0.01;}}}'),(9766,226164,'_wp_attached_file','New_StadsigUnit11_mobile.jpg'),(9767,226164,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:548;s:6:\"height\";i:389;s:4:\"file\";s:28:\"New_StadsigUnit11_mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit11_mobile-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit11_mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit11_mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit11_mobile-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit11_mobile-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit11_mobile-400x389.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:389;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"New_StadsigUnit11_mobile-480x341.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:34:58\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"45.59\";}'),(9768,226162,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.435593243371791;s:5:\"bytes\";i:12415;s:11:\"size_before\";i:147174;s:10:\"size_after\";i:134759;s:4:\"time\";d:1.3900000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9;s:5:\"bytes\";i:740;s:11:\"size_before\";i:12549;s:10:\"size_after\";i:11809;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.59;s:5:\"bytes\";i:443;s:11:\"size_before\";i:5836;s:10:\"size_after\";i:5393;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.94;s:5:\"bytes\";i:1164;s:11:\"size_before\";i:19603;s:10:\"size_after\";i:18439;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:1205;s:11:\"size_before\";i:20097;s:10:\"size_after\";i:18892;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.51;s:5:\"bytes\";i:2095;s:11:\"size_before\";i:32162;s:10:\"size_after\";i:30067;s:4:\"time\";d:1.22;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.82;s:5:\"bytes\";i:5035;s:11:\"size_before\";i:29931;s:10:\"size_after\";i:24896;s:4:\"time\";d:0.06;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.42;s:5:\"bytes\";i:1733;s:11:\"size_before\";i:26996;s:10:\"size_after\";i:25263;s:4:\"time\";d:0.03;}}}'),(9769,226164,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.610618148167496;s:5:\"bytes\";i:10198;s:11:\"size_before\";i:133997;s:10:\"size_after\";i:123799;s:4:\"time\";d:0.14;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.21;s:5:\"bytes\";i:862;s:11:\"size_before\";i:11958;s:10:\"size_after\";i:11096;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.52;s:5:\"bytes\";i:414;s:11:\"size_before\";i:5506;s:10:\"size_after\";i:5092;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.46;s:5:\"bytes\";i:1172;s:11:\"size_before\";i:18149;s:10:\"size_after\";i:16977;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92;s:5:\"bytes\";i:1501;s:11:\"size_before\";i:18947;s:10:\"size_after\";i:17446;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.46;s:5:\"bytes\";i:2135;s:11:\"size_before\";i:28609;s:10:\"size_after\";i:26474;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67;s:5:\"bytes\";i:2272;s:11:\"size_before\";i:26216;s:10:\"size_after\";i:23944;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.48;s:5:\"bytes\";i:1842;s:11:\"size_before\";i:24612;s:10:\"size_after\";i:22770;s:4:\"time\";d:0.01;}}}'),(9770,226163,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.397049680664669;s:5:\"bytes\";i:32719;s:11:\"size_before\";i:442325;s:10:\"size_after\";i:409606;s:4:\"time\";d:0.35000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.22;s:5:\"bytes\";i:484;s:11:\"size_before\";i:7780;s:10:\"size_after\";i:7296;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32;s:5:\"bytes\";i:3742;s:11:\"size_before\";i:51127;s:10:\"size_after\";i:47385;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.33;s:5:\"bytes\";i:315;s:11:\"size_before\";i:4973;s:10:\"size_after\";i:4658;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.16;s:5:\"bytes\";i:2308;s:11:\"size_before\";i:32219;s:10:\"size_after\";i:29911;s:4:\"time\";d:0.03;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95;s:5:\"bytes\";i:1162;s:11:\"size_before\";i:16727;s:10:\"size_after\";i:15565;s:4:\"time\";d:0.02;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.23;s:5:\"bytes\";i:5743;s:11:\"size_before\";i:69777;s:10:\"size_after\";i:64034;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67;s:5:\"bytes\";i:1380;s:11:\"size_before\";i:17995;s:10:\"size_after\";i:16615;s:4:\"time\";d:0.04;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.43;s:5:\"bytes\";i:1987;s:11:\"size_before\";i:26753;s:10:\"size_after\";i:24766;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62;s:5:\"bytes\";i:4284;s:11:\"size_before\";i:56201;s:10:\"size_after\";i:51917;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.12;s:5:\"bytes\";i:1756;s:11:\"size_before\";i:24652;s:10:\"size_after\";i:22896;s:4:\"time\";d:0.03;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4;s:5:\"bytes\";i:5301;s:11:\"size_before\";i:71628;s:10:\"size_after\";i:66327;s:4:\"time\";d:0.07;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.96;s:5:\"bytes\";i:3286;s:11:\"size_before\";i:47184;s:10:\"size_after\";i:43898;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.34;s:5:\"bytes\";i:971;s:11:\"size_before\";i:15309;s:10:\"size_after\";i:14338;s:4:\"time\";d:0.01;}}}'),(9771,226139,'smush-complete','1'),(9772,226139,'smush-info','The file was compressed from 111.94 KB to 108.83 KB saving 2.78 percent using WP-Optimize'),(9773,226139,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:114630;s:12:\"smushed-size\";i:111445;s:15:\"savings-percent\";d:2.78;}'),(9774,226140,'original-file','New_Stadsig_Website_LifestyleCollage4-updraft-pre-smush-original.jpg'),(9775,226140,'smush-complete','1'),(9776,226140,'smush-info','The file was compressed from 26.70 KB to 25.99 KB saving 2.68 percent using WP-Optimize'),(9777,226140,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:27343;s:12:\"smushed-size\";i:26609;s:15:\"savings-percent\";d:2.68;}'),(9778,226141,'original-file','New_Stadsig_Website_LifestyleCollage5-updraft-pre-smush-original.jpg'),(9779,226141,'smush-complete','1'),(9780,226141,'smush-info','The file was compressed from 19.39 KB to 19.08 KB saving 1.62 percent using WP-Optimize'),(9781,226141,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:19855;s:12:\"smushed-size\";i:19533;s:15:\"savings-percent\";d:1.62;}'),(9782,226142,'original-file','New_Stadsig_Website_LifestyleCollage6-updraft-pre-smush-original.jpg'),(9783,226142,'smush-complete','1'),(9784,226142,'smush-info','The file was compressed from 32.52 KB to 31.37 KB saving 3.52 percent using WP-Optimize'),(9785,226142,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:33298;s:12:\"smushed-size\";i:32127;s:15:\"savings-percent\";d:3.52;}'),(9786,226143,'original-file','New_StadsigUnit1_full-updraft-pre-smush-original.jpg'),(9787,226143,'smush-complete','1'),(9788,226143,'smush-info','The file was compressed from 77.65 KB to 69.31 KB saving 10.74 percent using WP-Optimize'),(9789,226143,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:79509;s:12:\"smushed-size\";i:70969;s:15:\"savings-percent\";d:10.74;}'),(9790,226144,'original-file','New_StadsigUnit1_mobile-updraft-pre-smush-original.jpg'),(9791,226144,'smush-complete','1'),(9792,226144,'smush-info','The file was compressed from 30.74 KB to 27.95 KB saving 9.08 percent using WP-Optimize'),(9793,226144,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:31477;s:12:\"smushed-size\";i:28619;s:15:\"savings-percent\";d:9.08;}'),(9794,226145,'original-file','New_StadsigUnit2_full-updraft-pre-smush-original.jpg'),(9795,226145,'smush-complete','1'),(9796,226145,'smush-info','The file was compressed from 79.47 KB to 71.49 KB saving 10.05 percent using WP-Optimize'),(9797,226145,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:81382;s:12:\"smushed-size\";i:73207;s:15:\"savings-percent\";d:10.05;}'),(9798,226146,'original-file','New_StadsigUnit2_mobile-updraft-pre-smush-original.jpg'),(9799,226146,'smush-complete','1'),(9800,226146,'smush-info','The file was compressed from 36.28 KB to 33.35 KB saving 8.07 percent using WP-Optimize'),(9801,226146,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:37153;s:12:\"smushed-size\";i:34155;s:15:\"savings-percent\";d:8.07;}'),(9802,226147,'original-file','New_StadsigUnit3_full-updraft-pre-smush-original.jpg'),(9803,226147,'smush-complete','1'),(9804,226147,'smush-info','The file was compressed from 89.00 KB to 80.54 KB saving 9.51 percent using WP-Optimize'),(9805,226147,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:91141;s:12:\"smushed-size\";i:82474;s:15:\"savings-percent\";d:9.51;}'),(9806,226148,'original-file','New_StadsigUnit3_mobile-updraft-pre-smush-original.jpg'),(9807,226148,'smush-complete','1'),(9808,226148,'smush-info','The file was compressed from 40.79 KB to 37.61 KB saving 7.8 percent using WP-Optimize'),(9809,226148,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:41765;s:12:\"smushed-size\";i:38509;s:15:\"savings-percent\";d:7.8;}'),(9810,226149,'original-file','New_StadsigUnit4_full-updraft-pre-smush-original.jpg'),(9811,226149,'smush-complete','1'),(9812,226149,'smush-info','The file was compressed from 74.20 KB to 66.41 KB saving 10.49 percent using WP-Optimize'),(9813,226149,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:75978;s:12:\"smushed-size\";i:68005;s:15:\"savings-percent\";d:10.49;}'),(9814,226150,'original-file','New_StadsigUnit4_mobile-updraft-pre-smush-original.jpg'),(9815,226150,'smush-complete','1'),(9816,226150,'smush-info','The file was compressed from 30.72 KB to 28.30 KB saving 7.87 percent using WP-Optimize'),(9817,226150,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:31454;s:12:\"smushed-size\";i:28978;s:15:\"savings-percent\";d:7.87;}'),(9818,226151,'original-file','New_StadsigUnit5_full-updraft-pre-smush-original.jpg'),(9819,226151,'smush-complete','1'),(9820,226151,'smush-info','The file was compressed from 85.07 KB to 76.08 KB saving 10.57 percent using WP-Optimize'),(9821,226151,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:87109;s:12:\"smushed-size\";i:77905;s:15:\"savings-percent\";d:10.57;}'),(9822,226152,'original-file','New_StadsigUnit5_mobile-updraft-pre-smush-original.jpg'),(9823,226152,'smush-complete','1'),(9824,226152,'smush-info','The file was compressed from 38.39 KB to 35.29 KB saving 8.09 percent using WP-Optimize'),(9825,226152,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:39315;s:12:\"smushed-size\";i:36135;s:15:\"savings-percent\";d:8.09;}'),(9826,226153,'original-file','New_StadsigUnit6_full-updraft-pre-smush-original.jpg'),(9827,226153,'smush-complete','1'),(9828,226153,'smush-info','The file was compressed from 80.86 KB to 72.08 KB saving 10.85 percent using WP-Optimize'),(9829,226153,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:82798;s:12:\"smushed-size\";i:73811;s:15:\"savings-percent\";d:10.85;}'),(9830,226154,'original-file','New_StadsigUnit6_mobile-updraft-pre-smush-original.jpg'),(9831,226154,'smush-complete','1'),(9832,226154,'smush-info','The file was compressed from 37.54 KB to 34.01 KB saving 9.41 percent using WP-Optimize'),(9833,226154,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:38443;s:12:\"smushed-size\";i:34827;s:15:\"savings-percent\";d:9.41;}'),(9834,226155,'original-file','New_StadsigUnit7_full-updraft-pre-smush-original.jpg'),(9835,226155,'smush-complete','1'),(9836,226155,'smush-info','The file was compressed from 79.86 KB to 70.90 KB saving 11.22 percent using WP-Optimize'),(9837,226155,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:81778;s:12:\"smushed-size\";i:72605;s:15:\"savings-percent\";d:11.22;}'),(9838,226156,'original-file','New_StadsigUnit7_mobile-updraft-pre-smush-original.jpg'),(9839,226156,'smush-complete','1'),(9840,226156,'smush-info','The file was compressed from 38.59 KB to 35.24 KB saving 8.67 percent using WP-Optimize'),(9841,226156,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:39513;s:12:\"smushed-size\";i:36088;s:15:\"savings-percent\";d:8.67;}'),(9842,226157,'smush-info','The file was compressed from 72.24 KB to 72.24 KB saving 0 percent using WP-Optimize'),(9843,226157,'smush-complete','1'),(9844,226157,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:73970;s:12:\"smushed-size\";i:73970;s:15:\"savings-percent\";d:0;}'),(9845,226158,'original-file','New_StadsigUnit8_mobile-updraft-pre-smush-original.jpg'),(9846,226158,'smush-complete','1'),(9847,226158,'smush-info','The file was compressed from 35.09 KB to 31.99 KB saving 8.84 percent using WP-Optimize'),(9848,226158,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:35933;s:12:\"smushed-size\";i:32757;s:15:\"savings-percent\";d:8.84;}'),(9849,226159,'original-file','New_StadsigUnit9_full-updraft-pre-smush-original.jpg'),(9850,223346,'_et_pb_ab_subjects',''),(9852,223346,'_et_pb_truncate_post_date',''),(9853,226159,'smush-complete','1'),(9854,226159,'smush-info','The file was compressed from 77.60 KB to 68.72 KB saving 11.45 percent using WP-Optimize'),(9855,226159,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:79460;s:12:\"smushed-size\";i:70365;s:15:\"savings-percent\";d:11.45;}'),(9856,226160,'original-file','New_StadsigUnit9_mobile-updraft-pre-smush-original.jpg'),(9857,226160,'smush-complete','1'),(9858,226160,'smush-info','The file was compressed from 36.64 KB to 33.41 KB saving 8.81 percent using WP-Optimize'),(9859,226160,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:37516;s:12:\"smushed-size\";i:34210;s:15:\"savings-percent\";d:8.81;}'),(9860,226161,'original-file','New_StadsigUnit10_full-updraft-pre-smush-original.jpg'),(9862,226161,'smush-complete','1'),(9863,226161,'smush-info','The file was compressed from 84.10 KB to 75.06 KB saving 10.75 percent using WP-Optimize'),(9864,226161,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:86114;s:12:\"smushed-size\";i:76859;s:15:\"savings-percent\";d:10.75;}'),(9865,226162,'original-file','New_StadsigUnit10_mobile-updraft-pre-smush-original.jpg'),(9866,226162,'smush-complete','1'),(9867,226162,'smush-info','The file was compressed from 38.51 KB to 35.22 KB saving 8.53 percent using WP-Optimize'),(9868,226162,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:39430;s:12:\"smushed-size\";i:36066;s:15:\"savings-percent\";d:8.53;}'),(9869,226163,'original-file','New_StadsigUnit11_full-updraft-pre-smush-original.jpg'),(9870,226163,'smush-complete','1'),(9871,226163,'smush-info','The file was compressed from 74.27 KB to 65.82 KB saving 11.38 percent using WP-Optimize'),(9872,226163,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:76055;s:12:\"smushed-size\";i:67400;s:15:\"savings-percent\";d:11.38;}'),(9873,226164,'original-file','New_StadsigUnit11_mobile-updraft-pre-smush-original.jpg'),(9874,226164,'smush-complete','1'),(9875,226164,'smush-info','The file was compressed from 32.53 KB to 29.59 KB saving 9.06 percent using WP-Optimize'),(9876,226164,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:33315;s:12:\"smushed-size\";i:30298;s:15:\"savings-percent\";d:9.06;}'),(9877,226170,'_wp_attached_file','New_Page4_Main_2.jpg'),(9878,226170,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:20:\"New_Page4_Main_2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"New_Page4_Main_2-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:28:\"New_Page4_Main_2-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:28:\"New_Page4_Main_2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"New_Page4_Main_2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"New_Page4_Main_2-1000x675.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"New_Page4_Main_2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"New_Page4_Main_2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"New_Page4_Main_2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:28:\"New_Page4_Main_2-980x735.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:28:\"New_Page4_Main_2-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:1;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:34:13\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"50.23\";}'),(9879,226171,'_wp_attached_file','New_Page4_Main_Mobile.jpg'),(9880,226171,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:640;s:6:\"height\";i:270;s:4:\"file\";s:25:\"New_Page4_Main_Mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"New_Page4_Main_Mobile-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"New_Page4_Main_Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"New_Page4_Main_Mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"New_Page4_Main_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"New_Page4_Main_Mobile-510x270.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"New_Page4_Main_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"New_Page4_Main_Mobile-480x203.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:32:02\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"5.69\";}'),(9881,226172,'_wp_attached_file','New_Stadsig_developer1.jpg'),(9882,226172,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:422;s:6:\"height\";i:197;s:4:\"file\";s:26:\"New_Stadsig_developer1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer1-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer1-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:31:23\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"20.67\";}'),(9883,226173,'_wp_attached_file','New_Stadsig_developer2.jpg'),(9884,226172,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.985660031430068;s:5:\"bytes\";i:1213;s:11:\"size_before\";i:61088;s:10:\"size_after\";i:59875;s:4:\"time\";d:0.07999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.51;s:5:\"bytes\";i:409;s:11:\"size_before\";i:9072;s:10:\"size_after\";i:8663;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.26;s:5:\"bytes\";i:312;s:11:\"size_before\";i:5933;s:10:\"size_after\";i:5621;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.14;s:5:\"bytes\";i:492;s:11:\"size_before\";i:15689;s:10:\"size_after\";i:15197;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15197;s:10:\"size_after\";i:15197;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15197;s:10:\"size_after\";i:15197;s:4:\"time\";d:0.01;}}}'),(9885,226173,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:422;s:6:\"height\";i:197;s:4:\"file\";s:26:\"New_Stadsig_developer2.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer2-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer2-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer2-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer2-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:30:56\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"42.04\";}'),(9886,226171,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.1946020374848;s:5:\"bytes\";i:15205;s:11:\"size_before\";i:211339;s:10:\"size_after\";i:196134;s:4:\"time\";d:0.2;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.78;s:5:\"bytes\";i:973;s:11:\"size_before\";i:14349;s:10:\"size_after\";i:13376;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.87;s:5:\"bytes\";i:641;s:11:\"size_before\";i:9330;s:10:\"size_after\";i:8689;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.55;s:5:\"bytes\";i:2184;s:11:\"size_before\";i:33343;s:10:\"size_after\";i:31159;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.29;s:5:\"bytes\";i:6429;s:11:\"size_before\";i:39468;s:10:\"size_after\";i:33039;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.81;s:5:\"bytes\";i:2865;s:11:\"size_before\";i:49310;s:10:\"size_after\";i:46445;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33039;s:10:\"size_after\";i:33039;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5;s:5:\"bytes\";i:2113;s:11:\"size_before\";i:32500;s:10:\"size_after\";i:30387;s:4:\"time\";d:0.04;}}}'),(9887,226174,'_wp_attached_file','New_Stadsig_developer3.jpg'),(9888,226174,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:422;s:6:\"height\";i:197;s:4:\"file\";s:26:\"New_Stadsig_developer3.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer3-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer3-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer3-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"New_Stadsig_developer3-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:29:44\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"13.79\";}'),(9889,226173,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.378901952530828;s:5:\"bytes\";i:3532;s:11:\"size_before\";i:104531;s:10:\"size_after\";i:100999;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.19;s:5:\"bytes\";i:1113;s:11:\"size_before\";i:15486;s:10:\"size_after\";i:14373;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.92;s:5:\"bytes\";i:602;s:11:\"size_before\";i:8694;s:10:\"size_after\";i:8092;s:4:\"time\";d:0.03;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.49;s:5:\"bytes\";i:1817;s:11:\"size_before\";i:27995;s:10:\"size_after\";i:26178;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26178;s:10:\"size_after\";i:26178;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26178;s:10:\"size_after\";i:26178;s:4:\"time\";d:0.02;}}}'),(9890,226174,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.775657633058491;s:5:\"bytes\";i:2582;s:11:\"size_before\";i:93023;s:10:\"size_after\";i:90441;s:4:\"time\";d:0.08;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.91;s:5:\"bytes\";i:790;s:11:\"size_before\";i:13356;s:10:\"size_after\";i:12566;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:491;s:11:\"size_before\";i:8181;s:10:\"size_after\";i:7690;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.27;s:5:\"bytes\";i:1301;s:11:\"size_before\";i:24696;s:10:\"size_after\";i:23395;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23395;s:10:\"size_after\";i:23395;s:4:\"time\";d:0.01;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23395;s:10:\"size_after\";i:23395;s:4:\"time\";d:0.03;}}}'),(9891,226170,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.544470829323678;s:5:\"bytes\";i:40043;s:11:\"size_before\";i:722215;s:10:\"size_after\";i:682172;s:4:\"time\";d:0.36;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.94;s:5:\"bytes\";i:1291;s:11:\"size_before\";i:21746;s:10:\"size_after\";i:20455;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.56;s:5:\"bytes\";i:582;s:11:\"size_before\";i:8878;s:10:\"size_after\";i:8296;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.37;s:5:\"bytes\";i:5906;s:11:\"size_before\";i:109961;s:10:\"size_after\";i:104055;s:4:\"time\";d:0.08;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.55;s:5:\"bytes\";i:2178;s:11:\"size_before\";i:33241;s:10:\"size_after\";i:31063;s:4:\"time\";d:0.01;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.56;s:5:\"bytes\";i:10334;s:11:\"size_before\";i:185984;s:10:\"size_after\";i:175650;s:4:\"time\";d:0.1;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:2107;s:11:\"size_before\";i:35098;s:10:\"size_after\";i:32991;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.83;s:5:\"bytes\";i:3192;s:11:\"size_before\";i:54773;s:10:\"size_after\";i:51581;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.84;s:5:\"bytes\";i:3417;s:11:\"size_before\";i:58557;s:10:\"size_after\";i:55140;s:4:\"time\";d:0.04;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.92;s:5:\"bytes\";i:8098;s:11:\"size_before\";i:164435;s:10:\"size_after\";i:156337;s:4:\"time\";d:0.04;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.93;s:5:\"bytes\";i:2938;s:11:\"size_before\";i:49542;s:10:\"size_after\";i:46604;s:4:\"time\";d:0.02;}}}'),(9893,226170,'original-file','New_Page4_Main_2-updraft-pre-smush-original.jpg'),(9894,226170,'smush-complete','1'),(9895,226170,'smush-info','The file was compressed from 181.51 KB to 173.83 KB saving 4.23 percent using WP-Optimize'),(9896,226170,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:185864;s:12:\"smushed-size\";i:177997;s:15:\"savings-percent\";d:4.23;}'),(9897,226171,'original-file','New_Page4_Main_Mobile-updraft-pre-smush-original.jpg'),(9898,226171,'smush-complete','1'),(9899,226171,'smush-info','The file was compressed from 59.89 KB to 57.38 KB saving 4.18 percent using WP-Optimize'),(9900,226171,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:61328;s:12:\"smushed-size\";i:58762;s:15:\"savings-percent\";d:4.18;}'),(9901,226172,'original-file','New_Stadsig_developer1-updraft-pre-smush-original.jpg'),(9902,226172,'smush-complete','1'),(9903,226172,'smush-info','The file was compressed from 19.28 KB to 18.70 KB saving 3 percent using WP-Optimize'),(9904,226172,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:19744;s:12:\"smushed-size\";i:19151;s:15:\"savings-percent\";d:3;}'),(9905,226173,'original-file','New_Stadsig_developer2-updraft-pre-smush-original.jpg'),(9906,226173,'smush-complete','1'),(9907,226173,'smush-info','The file was compressed from 31.87 KB to 30.75 KB saving 3.53 percent using WP-Optimize'),(9908,226173,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:32639;s:12:\"smushed-size\";i:31488;s:15:\"savings-percent\";d:3.53;}'),(9909,226174,'original-file','New_Stadsig_developer3-updraft-pre-smush-original.jpg'),(9910,226174,'smush-complete','1'),(9911,226174,'smush-info','The file was compressed from 28.42 KB to 27.64 KB saving 2.77 percent using WP-Optimize'),(9912,226174,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:29107;s:12:\"smushed-size\";i:28302;s:15:\"savings-percent\";d:2.77;}'),(9913,226177,'_wp_attached_file','New_Stadsig_Website_DocumentationHeader.jpg'),(9914,226177,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1580;s:6:\"height\";i:518;s:4:\"file\";s:43:\"New_Stadsig_Website_DocumentationHeader.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"New_Stadsig_Website_DocumentationHeader-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_DocumentationHeader-1024x336.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_Website_DocumentationHeader-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:51:\"New_Stadsig_Website_DocumentationHeader-768x252.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_DocumentationHeader-1536x504.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_Website_DocumentationHeader-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_DocumentationHeader-1080x518.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_Website_DocumentationHeader-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_Website_DocumentationHeader-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_DocumentationHeader-1080x354.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_Website_DocumentationHeader-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:52:\"New_Stadsig_Website_DocumentationHeader-1280x420.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_Website_DocumentationHeader-980x321.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:51:\"New_Stadsig_Website_DocumentationHeader-480x157.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:27:31\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"44.02\";}'),(9915,226178,'_wp_attached_file','New_Stadsig_Website_DocumentationIcon.jpg'),(9916,226178,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:177;s:6:\"height\";i:142;s:4:\"file\";s:41:\"New_Stadsig_Website_DocumentationIcon.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_DocumentationIcon-150x142.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:26:21\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"65.37\";}'),(9917,226178,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.454512765192377;s:5:\"bytes\";i:359;s:11:\"size_before\";i:5562;s:10:\"size_after\";i:5203;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45;s:5:\"bytes\";i:359;s:11:\"size_before\";i:5562;s:10:\"size_after\";i:5203;s:4:\"time\";d:0.01;}}}'),(9918,226179,'_wp_attached_file','New_Stadsig_Website_LifestyleCollage7.jpg'),(9919,226179,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:41:\"New_Stadsig_Website_LifestyleCollage7.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage7-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage7-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage7-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage7-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:25:43\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"44.62\";}'),(9920,226180,'_wp_attached_file','New_Stadsig_Website_LifestyleCollage8.jpg'),(9921,226180,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:41:\"New_Stadsig_Website_LifestyleCollage8.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage8-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage8-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage8-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage8-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:25:14\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"15.17\";}'),(9922,226181,'_wp_attached_file','New_Stadsig_Website_LifestyleCollage9.jpg'),(9923,226179,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.184062558721073;s:5:\"bytes\";i:1511;s:11:\"size_before\";i:69183;s:10:\"size_after\";i:67672;s:4:\"time\";d:0.09;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.09;s:5:\"bytes\";i:542;s:11:\"size_before\";i:10656;s:10:\"size_after\";i:10114;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62;s:5:\"bytes\";i:247;s:11:\"size_before\";i:5341;s:10:\"size_after\";i:5094;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.96;s:5:\"bytes\";i:722;s:11:\"size_before\";i:18210;s:10:\"size_after\";i:17488;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17488;s:10:\"size_after\";i:17488;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17488;s:10:\"size_after\";i:17488;s:4:\"time\";d:0.01;}}}'),(9924,226181,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:421;s:6:\"height\";i:197;s:4:\"file\";s:41:\"New_Stadsig_Website_LifestyleCollage9.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage9-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage9-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage9-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"New_Stadsig_Website_LifestyleCollage9-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:24:41\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"41.72\";}'),(9925,226180,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.742127051117953;s:5:\"bytes\";i:2378;s:11:\"size_before\";i:86721;s:10:\"size_after\";i:84343;s:4:\"time\";d:0.12000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.97;s:5:\"bytes\";i:760;s:11:\"size_before\";i:12738;s:10:\"size_after\";i:11978;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.73;s:5:\"bytes\";i:494;s:11:\"size_before\";i:7345;s:10:\"size_after\";i:6851;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9;s:5:\"bytes\";i:1124;s:11:\"size_before\";i:22962;s:10:\"size_after\";i:21838;s:4:\"time\";d:0.05;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21838;s:10:\"size_after\";i:21838;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21838;s:10:\"size_after\";i:21838;s:4:\"time\";d:0.02;}}}'),(9926,226181,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.75089032965026;s:5:\"bytes\";i:2410;s:11:\"size_before\";i:87608;s:10:\"size_after\";i:85198;s:4:\"time\";d:0.08;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.52;s:5:\"bytes\";i:731;s:11:\"size_before\";i:13234;s:10:\"size_after\";i:12503;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.96;s:5:\"bytes\";i:467;s:11:\"size_before\";i:7840;s:10:\"size_after\";i:7373;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.27;s:5:\"bytes\";i:1212;s:11:\"size_before\";i:22986;s:10:\"size_after\";i:21774;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21774;s:10:\"size_after\";i:21774;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21774;s:10:\"size_after\";i:21774;s:4:\"time\";d:0.02;}}}'),(9927,226177,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.7041603472621722;s:5:\"bytes\";i:16546;s:11:\"size_before\";i:611872;s:10:\"size_after\";i:595326;s:4:\"time\";d:0.56;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.22;s:5:\"bytes\";i:433;s:11:\"size_before\";i:8292;s:10:\"size_after\";i:7859;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.68;s:5:\"bytes\";i:1443;s:11:\"size_before\";i:53920;s:10:\"size_after\";i:52477;s:4:\"time\";d:0.06;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.76;s:5:\"bytes\";i:379;s:11:\"size_before\";i:6583;s:10:\"size_after\";i:6204;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.13;s:5:\"bytes\";i:1087;s:11:\"size_before\";i:34741;s:10:\"size_after\";i:33654;s:4:\"time\";d:0.03;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.05;s:5:\"bytes\";i:2058;s:11:\"size_before\";i:100531;s:10:\"size_after\";i:98473;s:4:\"time\";d:0.04;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.89;s:5:\"bytes\";i:840;s:11:\"size_before\";i:21591;s:10:\"size_after\";i:20751;s:4:\"time\";d:0.03;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.13;s:5:\"bytes\";i:1854;s:11:\"size_before\";i:86978;s:10:\"size_after\";i:85124;s:4:\"time\";d:0.06;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.68;s:5:\"bytes\";i:879;s:11:\"size_before\";i:23875;s:10:\"size_after\";i:22996;s:4:\"time\";d:0.04;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.13;s:5:\"bytes\";i:1129;s:11:\"size_before\";i:36050;s:10:\"size_after\";i:34921;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.61;s:5:\"bytes\";i:1550;s:11:\"size_before\";i:59347;s:10:\"size_after\";i:57797;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.71;s:5:\"bytes\";i:950;s:11:\"size_before\";i:35113;s:10:\"size_after\";i:34163;s:4:\"time\";d:0.13;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.33;s:5:\"bytes\";i:1794;s:11:\"size_before\";i:76910;s:10:\"size_after\";i:75116;s:4:\"time\";d:0.03;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.76;s:5:\"bytes\";i:1412;s:11:\"size_before\";i:51234;s:10:\"size_after\";i:49822;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.42;s:5:\"bytes\";i:738;s:11:\"size_before\";i:16707;s:10:\"size_after\";i:15969;s:4:\"time\";d:0.02;}}}'),(9928,225551,'_et_pb_truncate_post_date',''),(9929,226177,'original-file','New_Stadsig_Website_DocumentationHeader-updraft-pre-smush-original.jpg'),(9930,226177,'smush-complete','1'),(9931,226177,'smush-info','The file was compressed from 105.18 KB to 101.49 KB saving 3.51 percent using WP-Optimize'),(9932,226177,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:107703;s:12:\"smushed-size\";i:103928;s:15:\"savings-percent\";d:3.51;}'),(9933,226178,'original-file','New_Stadsig_Website_DocumentationIcon-updraft-pre-smush-original.jpg'),(9934,226178,'smush-complete','1'),(9935,226178,'smush-info','The file was compressed from 9.32 KB to 8.96 KB saving 3.85 percent using WP-Optimize'),(9936,226178,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:9548;s:12:\"smushed-size\";i:9180;s:15:\"savings-percent\";d:3.85;}'),(9937,226179,'original-file','New_Stadsig_Website_LifestyleCollage7-updraft-pre-smush-original.jpg'),(9938,226179,'smush-complete','1'),(9939,226179,'smush-info','The file was compressed from 21.04 KB to 20.73 KB saving 1.47 percent using WP-Optimize'),(9940,226179,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:21540;s:12:\"smushed-size\";i:21224;s:15:\"savings-percent\";d:1.47;}'),(9941,226180,'original-file','New_Stadsig_Website_LifestyleCollage8-updraft-pre-smush-original.jpg'),(9942,226180,'smush-complete','1'),(9943,226180,'smush-info','The file was compressed from 26.01 KB to 25.20 KB saving 3.1 percent using WP-Optimize'),(9944,226180,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:26632;s:12:\"smushed-size\";i:25806;s:15:\"savings-percent\";d:3.1;}'),(9945,226181,'original-file','New_Stadsig_Website_LifestyleCollage9-updraft-pre-smush-original.jpg'),(9946,226181,'smush-complete','1'),(9947,226181,'smush-info','The file was compressed from 26.38 KB to 25.74 KB saving 2.46 percent using WP-Optimize'),(9948,226181,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:27018;s:12:\"smushed-size\";i:26353;s:15:\"savings-percent\";d:2.46;}'),(9949,226185,'_wp_attached_file','New_Page5_Main_1_Mobile.jpg'),(9950,226185,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:615;s:6:\"height\";i:270;s:4:\"file\";s:27:\"New_Page5_Main_1_Mobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"New_Page5_Main_1_Mobile-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"New_Page5_Main_1_Mobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"New_Page5_Main_1_Mobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"New_Page5_Main_1_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"New_Page5_Main_1_Mobile-510x270.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"New_Page5_Main_1_Mobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"New_Page5_Main_1_Mobile-480x211.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:23:59\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"42.15\";}'),(9951,226186,'_wp_attached_file','New_Stadsig_aromas.jpg'),(9952,226186,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:200;s:6:\"height\";i:113;s:4:\"file\";s:22:\"New_Stadsig_aromas.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"New_Stadsig_aromas-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:23:25\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"72.41\";}'),(9953,226186,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.348326359832635;s:5:\"bytes\";i:281;s:11:\"size_before\";i:3824;s:10:\"size_after\";i:3543;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.35;s:5:\"bytes\";i:281;s:11:\"size_before\";i:3824;s:10:\"size_after\";i:3543;s:4:\"time\";d:0.01;}}}'),(9954,226187,'_wp_attached_file','New_Stadsig_Website_News1.jpg'),(9955,226187,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:622;s:6:\"height\";i:346;s:4:\"file\";s:29:\"New_Stadsig_Website_News1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News1-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News1-510x346.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News1-400x346.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News1-480x267.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:22:55\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"32.06\";}'),(9956,226188,'_wp_attached_file','New_Stadsig_Website_News2.jpg'),(9957,226188,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:622;s:6:\"height\";i:346;s:4:\"file\";s:29:\"New_Stadsig_Website_News2.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News2-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News2-510x346.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News2-400x346.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_Website_News2-480x267.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:22:21\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"35.66\";}'),(9958,226185,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.2907065649221177;s:5:\"bytes\";i:4390;s:11:\"size_before\";i:133406;s:10:\"size_after\";i:129016;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.93;s:5:\"bytes\";i:370;s:11:\"size_before\";i:9414;s:10:\"size_after\";i:9044;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.09;s:5:\"bytes\";i:439;s:11:\"size_before\";i:7214;s:10:\"size_after\";i:6775;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.87;s:5:\"bytes\";i:802;s:11:\"size_before\";i:20718;s:10:\"size_after\";i:19916;s:4:\"time\";d:0.01;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.92;s:5:\"bytes\";i:968;s:11:\"size_before\";i:24709;s:10:\"size_after\";i:23741;s:4:\"time\";d:0.04;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.77;s:5:\"bytes\";i:1059;s:11:\"size_before\";i:28082;s:10:\"size_after\";i:27023;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23741;s:10:\"size_after\";i:23741;s:4:\"time\";d:0.04;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.85;s:5:\"bytes\";i:752;s:11:\"size_before\";i:19528;s:10:\"size_after\";i:18776;s:4:\"time\";d:0.04;}}}'),(9959,226189,'_wp_attached_file','New_Stadsig_Website_NewsHeader.jpg'),(9960,226189,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1580;s:6:\"height\";i:425;s:4:\"file\";s:34:\"New_Stadsig_Website_NewsHeader.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"New_Stadsig_Website_NewsHeader-300x81.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_Website_NewsHeader-1024x275.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_NewsHeader-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:\"New_Stadsig_Website_NewsHeader-768x207.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_Website_NewsHeader-1536x413.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_NewsHeader-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_Website_NewsHeader-1080x425.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_NewsHeader-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_NewsHeader-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_Website_NewsHeader-1080x291.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_NewsHeader-400x425.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_Website_NewsHeader-1280x344.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_NewsHeader-980x264.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:42:\"New_Stadsig_Website_NewsHeader-480x129.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:8:{s:7:\"Retries\";i:5;s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:28:42\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"37.77\";}'),(9961,226187,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.286619860267027;s:5:\"bytes\";i:19321;s:11:\"size_before\";i:233159;s:10:\"size_after\";i:213838;s:4:\"time\";d:0.17;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87;s:5:\"bytes\";i:983;s:11:\"size_before\";i:16744;s:10:\"size_after\";i:15761;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.67;s:5:\"bytes\";i:562;s:11:\"size_before\";i:8431;s:10:\"size_after\";i:7869;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.71;s:5:\"bytes\";i:1787;s:11:\"size_before\";i:31290;s:10:\"size_after\";i:29503;s:4:\"time\";d:0.05;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.68;s:5:\"bytes\";i:1982;s:11:\"size_before\";i:34888;s:10:\"size_after\";i:32906;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.89;s:5:\"bytes\";i:9635;s:11:\"size_before\";i:57032;s:10:\"size_after\";i:47397;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.73;s:5:\"bytes\";i:2162;s:11:\"size_before\";i:45679;s:10:\"size_after\";i:43517;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.65;s:5:\"bytes\";i:2210;s:11:\"size_before\";i:39095;s:10:\"size_after\";i:36885;s:4:\"time\";d:0.02;}}}'),(9962,226188,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.109803329812384;s:5:\"bytes\";i:11308;s:11:\"size_before\";i:159048;s:10:\"size_after\";i:147740;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.15;s:5:\"bytes\";i:648;s:11:\"size_before\";i:12586;s:10:\"size_after\";i:11938;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.66;s:5:\"bytes\";i:354;s:11:\"size_before\";i:6252;s:10:\"size_after\";i:5898;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.36;s:5:\"bytes\";i:950;s:11:\"size_before\";i:21812;s:10:\"size_after\";i:20862;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.15;s:5:\"bytes\";i:973;s:11:\"size_before\";i:23469;s:10:\"size_after\";i:22496;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.35;s:5:\"bytes\";i:6118;s:11:\"size_before\";i:37415;s:10:\"size_after\";i:31297;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.54;s:5:\"bytes\";i:1063;s:11:\"size_before\";i:30063;s:10:\"size_after\";i:29000;s:4:\"time\";d:0.04;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.38;s:5:\"bytes\";i:1202;s:11:\"size_before\";i:27451;s:10:\"size_after\";i:26249;s:4:\"time\";d:0.02;}}}'),(9963,226189,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.482137148558616;s:5:\"bytes\";i:49560;s:11:\"size_before\";i:904027;s:10:\"size_after\";i:854467;s:4:\"time\";d:0.4699999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.88;s:5:\"bytes\";i:804;s:11:\"size_before\";i:10207;s:10:\"size_after\";i:9403;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.88;s:5:\"bytes\";i:4838;s:11:\"size_before\";i:82221;s:10:\"size_after\";i:77383;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4;s:5:\"bytes\";i:604;s:11:\"size_before\";i:8164;s:10:\"size_after\";i:7560;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.55;s:5:\"bytes\";i:3261;s:11:\"size_before\";i:49754;s:10:\"size_after\";i:46493;s:4:\"time\";d:0.02;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.92;s:5:\"bytes\";i:7842;s:11:\"size_before\";i:159358;s:10:\"size_after\";i:151516;s:4:\"time\";d:0.05;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.18;s:5:\"bytes\";i:1817;s:11:\"size_before\";i:29378;s:10:\"size_after\";i:27561;s:4:\"time\";d:0.03;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.44;s:5:\"bytes\";i:5683;s:11:\"size_before\";i:127878;s:10:\"size_after\";i:122195;s:4:\"time\";d:0.06;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1;s:5:\"bytes\";i:1986;s:11:\"size_before\";i:32558;s:10:\"size_after\";i:30572;s:4:\"time\";d:0.04;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2;s:5:\"bytes\";i:2625;s:11:\"size_before\";i:50449;s:10:\"size_after\";i:47824;s:4:\"time\";d:0.04;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.86;s:5:\"bytes\";i:5276;s:11:\"size_before\";i:90000;s:10:\"size_after\";i:84724;s:4:\"time\";d:0.03;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54;s:5:\"bytes\";i:2156;s:11:\"size_before\";i:47519;s:10:\"size_after\";i:45363;s:4:\"time\";d:0.04;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.48;s:5:\"bytes\";i:6476;s:11:\"size_before\";i:118251;s:10:\"size_after\";i:111775;s:4:\"time\";d:0.03;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04;s:5:\"bytes\";i:4601;s:11:\"size_before\";i:76130;s:10:\"size_after\";i:71529;s:4:\"time\";d:0.05;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.18;s:5:\"bytes\";i:1591;s:11:\"size_before\";i:22160;s:10:\"size_after\";i:20569;s:4:\"time\";d:0.01;}}}'),(9965,226185,'original-file','New_Page5_Main_1_Mobile-updraft-pre-smush-original.jpg'),(9966,226185,'smush-complete','1'),(9967,226185,'smush-info','The file was compressed from 29.26 KB to 28.66 KB saving 2.06 percent using WP-Optimize'),(9968,226185,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:29960;s:12:\"smushed-size\";i:29343;s:15:\"savings-percent\";d:2.06;}'),(9969,226186,'original-file','New_Stadsig_aromas-updraft-pre-smush-original.jpg'),(9970,226186,'smush-complete','1'),(9971,226186,'smush-info','The file was compressed from 7.58 KB to 7.19 KB saving 5.14 percent using WP-Optimize'),(9972,226186,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:7758;s:12:\"smushed-size\";i:7359;s:15:\"savings-percent\";d:5.14;}'),(9973,226187,'original-file','New_Stadsig_Website_News1-updraft-pre-smush-original.jpg'),(9974,226192,'_wp_attached_file','New_Stadsig_galleryContactparalax.jpg'),(9975,226192,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1580;s:6:\"height\";i:956;s:4:\"file\";s:37:\"New_Stadsig_galleryContactparalax.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"New_Stadsig_galleryContactparalax-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"New_Stadsig_galleryContactparalax-1024x620.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"New_Stadsig_galleryContactparalax-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:\"New_Stadsig_galleryContactparalax-768x465.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"New_Stadsig_galleryContactparalax-1536x929.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:929;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"New_Stadsig_galleryContactparalax-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"New_Stadsig_galleryContactparalax-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"New_Stadsig_galleryContactparalax-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"New_Stadsig_galleryContactparalax-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"New_Stadsig_galleryContactparalax-1080x653.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"New_Stadsig_galleryContactparalax-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:46:\"New_Stadsig_galleryContactparalax-1280x774.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:774;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:45:\"New_Stadsig_galleryContactparalax-980x593.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:593;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:45:\"New_Stadsig_galleryContactparalax-480x290.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:13:25\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"59.69\";}'),(9976,226187,'smush-complete','1'),(9977,226187,'smush-info','The file was compressed from 58.59 KB to 56.38 KB saving 3.77 percent using WP-Optimize'),(9978,226187,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:59998;s:12:\"smushed-size\";i:57737;s:15:\"savings-percent\";d:3.77;}'),(9979,226193,'_wp_attached_file','New_Stadsig_savour.jpg'),(9980,226188,'original-file','New_Stadsig_Website_News2-updraft-pre-smush-original.jpg'),(9981,226193,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:200;s:6:\"height\";i:113;s:4:\"file\";s:22:\"New_Stadsig_savour.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"New_Stadsig_savour-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:12:13\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"78.78\";}'),(9982,226193,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.684684684684685;s:5:\"bytes\";i:241;s:11:\"size_before\";i:2775;s:10:\"size_after\";i:2534;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.68;s:5:\"bytes\";i:241;s:11:\"size_before\";i:2775;s:10:\"size_after\";i:2534;s:4:\"time\";d:0.01;}}}'),(9983,226188,'smush-complete','1'),(9984,226188,'smush-info','The file was compressed from 41.85 KB to 40.13 KB saving 4.12 percent using WP-Optimize'),(9985,226188,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:42853;s:12:\"smushed-size\";i:41088;s:15:\"savings-percent\";d:4.12;}'),(9986,226189,'original-file','New_Stadsig_Website_NewsHeader-updraft-pre-smush-original.jpg'),(9987,223355,'_et_pb_ab_subjects',''),(9989,223355,'_et_pb_truncate_post_date',''),(9990,226192,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.580777015894933;s:5:\"bytes\";i:46710;s:11:\"size_before\";i:1019696;s:10:\"size_after\";i:972986;s:4:\"time\";d:1.5600000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.93;s:5:\"bytes\";i:1428;s:11:\"size_before\";i:18010;s:10:\"size_after\";i:16582;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.57;s:5:\"bytes\";i:4742;s:11:\"size_before\";i:103871;s:10:\"size_after\";i:99129;s:4:\"time\";d:0.07;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.91;s:5:\"bytes\";i:651;s:11:\"size_before\";i:8227;s:10:\"size_after\";i:7576;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.26;s:5:\"bytes\";i:3645;s:11:\"size_before\";i:69313;s:10:\"size_after\";i:65668;s:4:\"time\";d:0.04;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.52;s:5:\"bytes\";i:6523;s:11:\"size_before\";i:185253;s:10:\"size_after\";i:178730;s:4:\"time\";d:0.09;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.04;s:5:\"bytes\";i:1934;s:11:\"size_before\";i:27472;s:10:\"size_after\";i:25538;s:4:\"time\";d:0.01;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.09;s:5:\"bytes\";i:4657;s:11:\"size_before\";i:113727;s:10:\"size_after\";i:109070;s:4:\"time\";d:0.1;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54;s:5:\"bytes\";i:1879;s:11:\"size_before\";i:28744;s:10:\"size_after\";i:26865;s:4:\"time\";d:0.01;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.94;s:5:\"bytes\";i:2473;s:11:\"size_before\";i:41601;s:10:\"size_after\";i:39128;s:4:\"time\";i:1;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.26;s:5:\"bytes\";i:4772;s:11:\"size_before\";i:111900;s:10:\"size_after\";i:107128;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.51;s:5:\"bytes\";i:1584;s:11:\"size_before\";i:35131;s:10:\"size_after\";i:33547;s:4:\"time\";d:0.03;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9;s:5:\"bytes\";i:5567;s:11:\"size_before\";i:142685;s:10:\"size_after\";i:137118;s:4:\"time\";d:0.04;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62;s:5:\"bytes\";i:4546;s:11:\"size_before\";i:98485;s:10:\"size_after\";i:93939;s:4:\"time\";d:0.05;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.55;s:5:\"bytes\";i:2309;s:11:\"size_before\";i:35277;s:10:\"size_after\";i:32968;s:4:\"time\";d:0.03;}}}'),(9991,226189,'smush-complete','1'),(9992,226189,'smush-info','The file was compressed from 152.43 KB to 146.72 KB saving 3.75 percent using WP-Optimize'),(9993,226189,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:156093;s:12:\"smushed-size\";i:150241;s:15:\"savings-percent\";d:3.75;}'),(9994,226192,'smush-info','The file was compressed from 188.40 KB to 188.40 KB saving 0 percent using WP-Optimize'),(9995,226192,'smush-complete','1'),(9996,226192,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:192921;s:12:\"smushed-size\";i:192921;s:15:\"savings-percent\";d:0;}'),(9997,226193,'original-file','New_Stadsig_savour-updraft-pre-smush-original.jpg'),(9998,226193,'smush-complete','1'),(9999,226193,'smush-info','The file was compressed from 6.38 KB to 5.91 KB saving 7.26 percent using WP-Optimize'),(10000,226193,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:6530;s:12:\"smushed-size\";i:6056;s:15:\"savings-percent\";d:7.26;}'),(10001,226197,'_wp_attached_file','New_Stadsig_contactHeader.jpg'),(10002,226197,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1580;s:6:\"height\";i:426;s:4:\"file\";s:29:\"New_Stadsig_contactHeader.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"New_Stadsig_contactHeader-300x81.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"New_Stadsig_contactHeader-1024x276.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_contactHeader-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:\"New_Stadsig_contactHeader-768x207.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:38:\"New_Stadsig_contactHeader-1536x414.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_contactHeader-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"New_Stadsig_contactHeader-1080x426.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_contactHeader-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_contactHeader-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"New_Stadsig_contactHeader-1080x291.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_contactHeader-400x426.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:38:\"New_Stadsig_contactHeader-1280x345.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_contactHeader-980x264.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"New_Stadsig_contactHeader-480x129.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:11:53\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"49.24\";}'),(10003,226198,'_wp_attached_file','New_Stadsig_contactHeaderMobile.jpg'),(10004,226198,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:619;s:6:\"height\";i:270;s:4:\"file\";s:35:\"New_Stadsig_contactHeaderMobile.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_contactHeaderMobile-300x131.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_contactHeaderMobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_contactHeaderMobile-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_contactHeaderMobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_contactHeaderMobile-510x270.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_contactHeaderMobile-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"New_Stadsig_contactHeaderMobile-480x209.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:11:26\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"36.86\";}'),(10005,226198,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.6604019451006975;s:5:\"bytes\";i:8798;s:11:\"size_before\";i:188782;s:10:\"size_after\";i:179984;s:4:\"time\";d:0.16999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.91;s:5:\"bytes\";i:780;s:11:\"size_before\";i:13204;s:10:\"size_after\";i:12424;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.56;s:5:\"bytes\";i:510;s:11:\"size_before\";i:7776;s:10:\"size_after\";i:7266;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6;s:5:\"bytes\";i:1600;s:11:\"size_before\";i:28555;s:10:\"size_after\";i:26955;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79;s:5:\"bytes\";i:1990;s:11:\"size_before\";i:34362;s:10:\"size_after\";i:32372;s:4:\"time\";d:0.04;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.09;s:5:\"bytes\";i:2179;s:11:\"size_before\";i:42824;s:10:\"size_after\";i:40645;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32372;s:10:\"size_after\";i:32372;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.86;s:5:\"bytes\";i:1739;s:11:\"size_before\";i:29689;s:10:\"size_after\";i:27950;s:4:\"time\";d:0.02;}}}'),(10006,226197,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.263753935538964;s:5:\"bytes\";i:16358;s:11:\"size_before\";i:501202;s:10:\"size_after\";i:484844;s:4:\"time\";d:0.32000000000000006;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2;s:5:\"bytes\";i:266;s:11:\"size_before\";i:6336;s:10:\"size_after\";i:6070;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.43;s:5:\"bytes\";i:1599;s:11:\"size_before\";i:46554;s:10:\"size_after\";i:44955;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.11;s:5:\"bytes\";i:212;s:11:\"size_before\";i:5152;s:10:\"size_after\";i:4940;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.16;s:5:\"bytes\";i:918;s:11:\"size_before\";i:29064;s:10:\"size_after\";i:28146;s:4:\"time\";d:0.02;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.51;s:5:\"bytes\";i:3016;s:11:\"size_before\";i:85859;s:10:\"size_after\";i:82843;s:4:\"time\";d:0.05;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.52;s:5:\"bytes\";i:639;s:11:\"size_before\";i:18152;s:10:\"size_after\";i:17513;s:4:\"time\";d:0.01;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.88;s:5:\"bytes\";i:1898;s:11:\"size_before\";i:65983;s:10:\"size_after\";i:64085;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.69;s:5:\"bytes\";i:714;s:11:\"size_before\";i:19361;s:10:\"size_after\";i:18647;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.59;s:5:\"bytes\";i:1026;s:11:\"size_before\";i:28583;s:10:\"size_after\";i:27557;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.23;s:5:\"bytes\";i:1646;s:11:\"size_before\";i:50913;s:10:\"size_after\";i:49267;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.93;s:5:\"bytes\";i:712;s:11:\"size_before\";i:24309;s:10:\"size_after\";i:23597;s:4:\"time\";d:0.01;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.97;s:5:\"bytes\";i:1915;s:11:\"size_before\";i:64399;s:10:\"size_after\";i:62484;s:4:\"time\";d:0.02;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.07;s:5:\"bytes\";i:1326;s:11:\"size_before\";i:43123;s:10:\"size_after\";i:41797;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.51;s:5:\"bytes\";i:471;s:11:\"size_before\";i:13414;s:10:\"size_after\";i:12943;s:4:\"time\";d:0.03;}}}'),(10007,223369,'_et_pb_truncate_post_date',''),(10008,226197,'original-file','New_Stadsig_contactHeader-updraft-pre-smush-original.jpg'),(10009,226197,'smush-complete','1'),(10010,226197,'smush-info','The file was compressed from 90.91 KB to 86.39 KB saving 4.97 percent using WP-Optimize'),(10011,226197,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:93088;s:12:\"smushed-size\";i:88461;s:15:\"savings-percent\";d:4.97;}'),(10012,226198,'original-file','New_Stadsig_contactHeaderMobile-updraft-pre-smush-original.jpg'),(10013,226198,'smush-complete','1'),(10014,226198,'smush-info','The file was compressed from 46.02 KB to 43.89 KB saving 4.63 percent using WP-Optimize'),(10015,226198,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:47126;s:12:\"smushed-size\";i:44946;s:15:\"savings-percent\";d:4.63;}'),(10016,226122,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.28258798015312325;s:5:\"bytes\";i:344;s:11:\"size_before\";i:121732;s:10:\"size_after\";i:121388;s:4:\"time\";d:0.14;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.62;s:5:\"bytes\";i:61;s:11:\"size_before\";i:9840;s:10:\"size_after\";i:9779;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.69;s:5:\"bytes\";i:39;s:11:\"size_before\";i:5644;s:10:\"size_after\";i:5605;s:4:\"time\";d:0.01;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.34;s:5:\"bytes\";i:61;s:11:\"size_before\";i:17746;s:10:\"size_after\";i:17685;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.3;s:5:\"bytes\";i:61;s:11:\"size_before\";i:20472;s:10:\"size_after\";i:20411;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.22;s:5:\"bytes\";i:61;s:11:\"size_before\";i:27478;s:10:\"size_after\";i:27417;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20411;s:10:\"size_after\";i:20411;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.3;s:5:\"bytes\";i:61;s:11:\"size_before\";i:20141;s:10:\"size_after\";i:20080;s:4:\"time\";d:0.02;}}}'),(10017,226161,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.18595709720738524;s:5:\"bytes\";i:799;s:11:\"size_before\";i:429669;s:10:\"size_after\";i:428870;s:4:\"time\";d:0.38;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.68;s:5:\"bytes\";i:128;s:11:\"size_before\";i:7598;s:10:\"size_after\";i:7470;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.12;s:5:\"bytes\";i:61;s:11:\"size_before\";i:50801;s:10:\"size_after\";i:50740;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3991;s:10:\"size_after\";i:3991;s:4:\"time\";d:0.04;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.19;s:5:\"bytes\";i:61;s:11:\"size_before\";i:31711;s:10:\"size_after\";i:31650;s:4:\"time\";d:0.06;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.41;s:5:\"bytes\";i:61;s:11:\"size_before\";i:14823;s:10:\"size_after\";i:14762;s:4:\"time\";d:0.01;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.09;s:5:\"bytes\";i:61;s:11:\"size_before\";i:68898;s:10:\"size_after\";i:68837;s:4:\"time\";d:0.04;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.38;s:5:\"bytes\";i:61;s:11:\"size_before\";i:15940;s:10:\"size_after\";i:15879;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.26;s:5:\"bytes\";i:61;s:11:\"size_before\";i:23678;s:10:\"size_after\";i:23617;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.11;s:5:\"bytes\";i:61;s:11:\"size_before\";i:55518;s:10:\"size_after\";i:55457;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.3;s:5:\"bytes\";i:61;s:11:\"size_before\";i:20073;s:10:\"size_after\";i:20012;s:4:\"time\";d:0.02;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.08;s:5:\"bytes\";i:61;s:11:\"size_before\";i:73346;s:10:\"size_after\";i:73285;s:4:\"time\";d:0.04;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.13;s:5:\"bytes\";i:61;s:11:\"size_before\";i:47819;s:10:\"size_after\";i:47758;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.39;s:5:\"bytes\";i:61;s:11:\"size_before\";i:15473;s:10:\"size_after\";i:15412;s:4:\"time\";d:0.01;}}}'),(10018,226202,'_wp_attached_file','New_HouseImage2.jpg'),(10019,226202,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:850;s:6:\"height\";i:398;s:4:\"file\";s:19:\"New_HouseImage2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"New_HouseImage2-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"New_HouseImage2-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:\"New_HouseImage2-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"New_HouseImage2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"New_HouseImage2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"New_HouseImage2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"New_HouseImage2-400x398.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:27:\"New_HouseImage2-480x225.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:10:49\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"39.87\";}'),(10020,226203,'_wp_attached_file','New_HouseImage3.jpg'),(10021,226203,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:850;s:6:\"height\";i:398;s:4:\"file\";s:19:\"New_HouseImage3.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"New_HouseImage3-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"New_HouseImage3-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:\"New_HouseImage3-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"New_HouseImage3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"New_HouseImage3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"New_HouseImage3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"New_HouseImage3-400x398.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:27:\"New_HouseImage3-480x225.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:09:42\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"46.32\";}'),(10022,226204,'_wp_attached_file','News_HouseImage1.jpg'),(10023,226204,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:850;s:6:\"height\";i:398;s:4:\"file\";s:20:\"News_HouseImage1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"News_HouseImage1-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"News_HouseImage1-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:28:\"News_HouseImage1-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"News_HouseImage1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"News_HouseImage1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"News_HouseImage1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"News_HouseImage1-400x398.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:28:\"News_HouseImage1-480x225.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:08:51\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"44.08\";}'),(10024,226203,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.1675636076751856;s:5:\"bytes\";i:5621;s:11:\"size_before\";i:177455;s:10:\"size_after\";i:171834;s:4:\"time\";d:0.18000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.63;s:5:\"bytes\";i:464;s:11:\"size_before\";i:10019;s:10:\"size_after\";i:9555;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79;s:5:\"bytes\";i:363;s:11:\"size_before\";i:6265;s:10:\"size_after\";i:5902;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.67;s:5:\"bytes\";i:1087;s:11:\"size_before\";i:40653;s:10:\"size_after\";i:39566;s:4:\"time\";d:0.04;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.64;s:5:\"bytes\";i:716;s:11:\"size_before\";i:19693;s:10:\"size_after\";i:18977;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.41;s:5:\"bytes\";i:715;s:11:\"size_before\";i:20986;s:10:\"size_after\";i:20271;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.78;s:5:\"bytes\";i:869;s:11:\"size_before\";i:31278;s:10:\"size_after\";i:30409;s:4:\"time\";d:0.04;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.55;s:5:\"bytes\";i:718;s:11:\"size_before\";i:28135;s:10:\"size_after\";i:27417;s:4:\"time\";d:0.03;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.37;s:5:\"bytes\";i:689;s:11:\"size_before\";i:20426;s:10:\"size_after\";i:19737;s:4:\"time\";d:0.01;}}}'),(10025,226202,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.437586238616503;s:5:\"bytes\";i:14778;s:11:\"size_before\";i:271775;s:10:\"size_after\";i:256997;s:4:\"time\";d:0.19999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.05;s:5:\"bytes\";i:1013;s:11:\"size_before\";i:14361;s:10:\"size_after\";i:13348;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.12;s:5:\"bytes\";i:575;s:11:\"size_before\";i:8071;s:10:\"size_after\";i:7496;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.98;s:5:\"bytes\";i:3347;s:11:\"size_before\";i:67233;s:10:\"size_after\";i:63886;s:4:\"time\";d:0.04;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.59;s:5:\"bytes\";i:1606;s:11:\"size_before\";i:28730;s:10:\"size_after\";i:27124;s:4:\"time\";d:0.03;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.62;s:5:\"bytes\";i:1776;s:11:\"size_before\";i:31589;s:10:\"size_after\";i:29813;s:4:\"time\";d:0.03;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.07;s:5:\"bytes\";i:2412;s:11:\"size_before\";i:47535;s:10:\"size_after\";i:45123;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.09;s:5:\"bytes\";i:2154;s:11:\"size_before\";i:42323;s:10:\"size_after\";i:40169;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.93;s:5:\"bytes\";i:1895;s:11:\"size_before\";i:31933;s:10:\"size_after\";i:30038;s:4:\"time\";d:0.03;}}}'),(10026,226204,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.564736303452504;s:5:\"bytes\";i:7210;s:11:\"size_before\";i:202259;s:10:\"size_after\";i:195049;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.58;s:5:\"bytes\";i:657;s:11:\"size_before\";i:11777;s:10:\"size_after\";i:11120;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.09;s:5:\"bytes\";i:409;s:11:\"size_before\";i:6720;s:10:\"size_after\";i:6311;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.19;s:5:\"bytes\";i:1587;s:11:\"size_before\";i:49717;s:10:\"size_after\";i:48130;s:4:\"time\";d:0.02;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.05;s:5:\"bytes\";i:881;s:11:\"size_before\";i:21779;s:10:\"size_after\";i:20898;s:4:\"time\";d:0.02;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.65;s:5:\"bytes\";i:852;s:11:\"size_before\";i:23352;s:10:\"size_after\";i:22500;s:4:\"time\";d:0.02;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.99;s:5:\"bytes\";i:1047;s:11:\"size_before\";i:35056;s:10:\"size_after\";i:34009;s:4:\"time\";d:0.02;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.64;s:5:\"bytes\";i:777;s:11:\"size_before\";i:29403;s:10:\"size_after\";i:28626;s:4:\"time\";d:0.02;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.09;s:5:\"bytes\";i:1000;s:11:\"size_before\";i:24455;s:10:\"size_after\";i:23455;s:4:\"time\";d:0.02;}}}'),(10028,226202,'original-file','New_HouseImage2-updraft-pre-smush-original.jpg'),(10029,226202,'smush-complete','1'),(10030,226202,'smush-info','The file was compressed from 76.12 KB to 73.47 KB saving 3.48 percent using WP-Optimize'),(10031,226202,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:77950;s:12:\"smushed-size\";i:75237;s:15:\"savings-percent\";d:3.48;}'),(10032,226203,'original-file','New_HouseImage3-updraft-pre-smush-original.jpg'),(10033,226203,'smush-complete','1'),(10034,226203,'smush-info','The file was compressed from 45.08 KB to 43.61 KB saving 3.26 percent using WP-Optimize'),(10035,226203,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:46159;s:12:\"smushed-size\";i:44655;s:15:\"savings-percent\";d:3.26;}'),(10036,226204,'original-file','News_HouseImage1-updraft-pre-smush-original.jpg'),(10037,226207,'_wp_attached_file','New_Footer_Copyrite.png'),(10038,226207,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:200;s:6:\"height\";i:79;s:4:\"file\";s:23:\"New_Footer_Copyrite.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"New_Footer_Copyrite-150x79.png\";s:5:\"width\";i:150;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:07:55\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"76.06\";}'),(10039,226207,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.92885375494071;s:5:\"bytes\";i:984;s:11:\"size_before\";i:3795;s:10:\"size_after\";i:2811;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.93;s:5:\"bytes\";i:984;s:11:\"size_before\";i:3795;s:10:\"size_after\";i:2811;s:4:\"time\";d:0.02;}}}'),(10040,226204,'smush-complete','1'),(10041,226204,'smush-info','The file was compressed from 54.80 KB to 53.48 KB saving 2.42 percent using WP-Optimize'),(10042,226204,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:56117;s:12:\"smushed-size\";i:54760;s:15:\"savings-percent\";d:2.42;}'),(10043,226207,'original-file','New_Footer_Copyrite-updraft-pre-smush-original.png'),(10044,226207,'smush-complete','1'),(10045,226207,'smush-info','The file was compressed from 6.89 KB to 4.85 KB saving 29.62 percent using WP-Optimize'),(10046,226207,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:7057;s:12:\"smushed-size\";i:4967;s:15:\"savings-percent\";d:29.62;}'),(10047,226209,'_wp_attached_file','New_Stadsig_copyright.png'),(10048,226209,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:92;s:6:\"height\";i:36;s:4:\"file\";s:25:\"New_Stadsig_copyright.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 16:07:26\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"26.29\";}'),(10049,226209,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:74.35470441298918;s:5:\"bytes\";i:1786;s:11:\"size_before\";i:2402;s:10:\"size_after\";i:616;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.35;s:5:\"bytes\";i:1786;s:11:\"size_before\";i:2402;s:10:\"size_after\";i:616;s:4:\"time\";d:0.01;}}}'),(10051,226209,'original-file','New_Stadsig_copyright-updraft-pre-smush-original.png'),(10052,226209,'smush-complete','1'),(10053,226209,'smush-info','The file was compressed from 616 bytes to 544 bytes saving 11.69 percent using WP-Optimize'),(10054,226209,'smush-stats','a:4:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:616;s:12:\"smushed-size\";i:544;s:15:\"savings-percent\";d:11.69;}'),(10063,223333,'_wpassetcleanup_no_load','{\"styles\":[\"custom_style_css\",\"et_monarch-css\"],\"scripts\":[\"divi-custom-js\",\"exit-intent\",\"modernizr_js\",\"snap_svg_js\",\"et_monarch-custom-js\",\"et_monarch-idle\"]}'),(10069,226209,'_shortpixel_status','2.2600'),(10070,226207,'_shortpixel_status','2.7600'),(10071,226204,'_shortpixel_status','2.4400'),(10072,226203,'_shortpixel_status','2.4600'),(10073,226202,'_shortpixel_status','2.3900'),(10074,226198,'_shortpixel_status','2.3600'),(10075,226197,'_shortpixel_status','2.4900'),(10076,226193,'_shortpixel_status','2.7800'),(10077,226192,'_shortpixel_status','2.5900'),(10078,226189,'_shortpixel_status','2.3700'),(10079,226188,'_shortpixel_status','2.3500'),(10080,226187,'_shortpixel_status','2.3200'),(10081,226186,'_shortpixel_status','2.7200'),(10082,226185,'_shortpixel_status','2.4200'),(10083,226181,'_shortpixel_status','2.4100'),(10084,226180,'_shortpixel_status','2.1500'),(10085,226179,'_shortpixel_status','2.4400'),(10086,226178,'_shortpixel_status','2.6500'),(10087,226177,'_shortpixel_status','2.4400'),(10088,226174,'_shortpixel_status','2.1300'),(10089,226173,'_shortpixel_status','2.4200'),(10090,226172,'_shortpixel_status','2.2000'),(10091,226171,'_shortpixel_status','2.0500'),(10092,226170,'_shortpixel_status','2.5000'),(10093,226164,'_shortpixel_status','2.4500'),(10094,226163,'_shortpixel_status','2.4400'),(10095,226162,'_shortpixel_status','2.4200'),(10096,226161,'_shortpixel_status','2.4300'),(10097,226160,'_shortpixel_status','2.4300'),(10098,226159,'_shortpixel_status','2.4400'),(10099,226158,'_shortpixel_status','2.3500'),(10100,226157,'_shortpixel_status','2.5000'),(10101,226156,'_shortpixel_status','2.4400'),(10102,226155,'_shortpixel_status','2.4300'),(10103,226154,'_shortpixel_status','2.4200'),(10104,226153,'_shortpixel_status','2.4400'),(10105,226152,'_shortpixel_status','2.4200'),(10106,226151,'_shortpixel_status','2.4400'),(10107,226150,'_shortpixel_status','2.3700'),(10108,226149,'_shortpixel_status','2.4400'),(10109,226148,'_shortpixel_status','2.4200'),(10110,226147,'_shortpixel_status','2.4200'),(10111,226146,'_shortpixel_status','2.4300'),(10112,226145,'_shortpixel_status','2.4300'),(10113,226144,'_shortpixel_status','2.3800'),(10114,226143,'_shortpixel_status','2.4400'),(10115,226142,'_shortpixel_status','2.4100'),(10116,226141,'_shortpixel_status','2.4500'),(10117,226140,'_shortpixel_status','2.4100'),(10118,226139,'_shortpixel_status','2.4300'),(10119,226138,'_shortpixel_status','2.7000'),(10120,226137,'_shortpixel_status','2.0900'),(10121,226134,'_shortpixel_status','2.4000'),(10122,226133,'_shortpixel_status','2.3800'),(10123,226132,'_shortpixel_status','2.3700'),(10124,226131,'_shortpixel_status','2.5300'),(10125,226130,'_shortpixel_status','2.7000'),(10126,226126,'_shortpixel_status','2.6000'),(10127,226125,'_shortpixel_status','2.2600'),(10128,226124,'_shortpixel_status','2.4100'),(10129,226123,'_shortpixel_status','2.2500'),(10130,226122,'_shortpixel_status','2.3900'),(10131,226120,'_shortpixel_status','2.3900'),(10132,226119,'_shortpixel_status','2.4000'),(10133,226118,'_shortpixel_status','2.3900'),(10134,226117,'_shortpixel_status','2.3900'),(10135,226116,'_shortpixel_status','2.4800'),(10136,226115,'_shortpixel_status','2.4300'),(10137,226114,'_shortpixel_status','2.4100'),(10138,226113,'_shortpixel_status','2.3700'),(10139,226112,'_shortpixel_status','2.4000'),(10140,226111,'_shortpixel_status','2.4100'),(10141,226110,'_shortpixel_status','2.4200'),(10142,226109,'_shortpixel_status','2.4500'),(10143,226108,'_shortpixel_status','2.3600'),(10144,226107,'_shortpixel_status','2.4200'),(10145,226106,'_shortpixel_status','2.4300'),(10146,226105,'_shortpixel_status','2.4600'),(10147,226104,'_shortpixel_status','2.4700'),(10148,226103,'_shortpixel_status','2.3800'),(10149,226102,'_shortpixel_status','2.3800'),(10150,226101,'_shortpixel_status','2.4300'),(10151,226100,'_shortpixel_status','2.3700'),(10152,226099,'_shortpixel_status','2.4400'),(10153,226098,'_shortpixel_status','2.4600'),(10154,226097,'_shortpixel_status','2.4000'),(10155,226094,'_shortpixel_status','2.3600'),(10156,226079,'_shortpixel_status','2.1100'),(10157,226076,'_shortpixel_status','2.5000'),(10158,226075,'_shortpixel_status','2.4400'),(10159,226074,'_shortpixel_status','2.4900'),(10160,226069,'_shortpixel_status','2.5100'),(10161,225765,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-16 18:09:07\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"49.72\";}'),(10162,225789,'_shortpixel_status','2.7100'),(10163,225765,'_shortpixel_status','2.4900'),(10165,225743,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 08:16:14\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"51.49\";}'),(10166,226223,'_wp_attached_file','Video.jpg'),(10167,226223,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1200;s:6:\"height\";i:650;s:4:\"file\";s:9:\"Video.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Video-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"Video-1024x555.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:555;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Video-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"Video-768x416.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"Video-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"Video-1080x650.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"Video-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:17:\"Video-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:18:\"Video-1080x585.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"Video-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:17:\"Video-980x531.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:17:\"Video-480x260.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:260;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 08:07:58\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"71.6\";}'),(10183,226223,'_shortpixel_status','2.7100'),(10184,225696,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:4:\"99.8\";s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 09:52:04\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}}'),(10186,225695,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 08:24:57\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"99.85\";}'),(10187,225743,'_shortpixel_status','2.5100'),(10188,225694,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/a186b9646956414a4db3def1fbc3b1bb-lossy.pdf) cURL error 28: Operation timed out after 20000 milliseconds with 66408 out of 323938 bytes received Retry limit reached. Skipping file ID 225694.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10189,225693,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 08:39:24\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:1:\"0\";}'),(10190,225695,'_shortpixel_status','2.9900'),(10191,225692,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/64e13b064a86ce837cd5c2f034194e25-lossy.pdf) cURL error 28: Operation timed out after 20001 milliseconds with 86728 out of 151594 bytes received Retry limit reached. Skipping file ID 225692.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10192,225693,'_shortpixel_status','2.0000'),(10193,226127,'_shortpixel_status','2.2800'),(10197,225691,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 10:04:04\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:1:\"0\";}'),(10198,225696,'_shortpixel_status','2.9900'),(10199,225578,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:2:{s:7:\"Retries\";i:1;s:7:\"ErrCode\";i:503;}s:21:\"ShortPixelImprovement\";s:95:\"Error: <i>cURL error 28: Operation timed out after 15001 milliseconds with 0 bytes received</i>\";}'),(10200,225691,'_shortpixel_status','2.0000'),(10201,225577,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/bc6a4665b2c4a8593c06b0b170e685d7-lossy.pdf) cURL error 28: Operation timed out after 20000 milliseconds with 76544 out of 653567 bytes received Retry limit reached. Skipping file ID 225577.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10202,225657,'_shortpixel_status','2.4200'),(10203,225576,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/e69eb891ddd69cbbb5b5e60d5710fe5b-lossy.pdf) cURL error 28: Operation timed out after 20000 milliseconds with 70720 out of 555219 bytes received Retry limit reached. Skipping file ID 225576.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10204,225575,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/dc53dd9a7389ce65b5604d15da36216e-lossy.pdf) cURL error 28: Operation timed out after 20001 milliseconds with 14328 out of 521108 bytes received Retry limit reached. Skipping file ID 225575.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10205,225574,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:2:{s:7:\"Retries\";i:5;s:7:\"ErrCode\";i:503;}s:21:\"ShortPixelImprovement\";s:95:\"Error: <i>cURL error 28: Operation timed out after 15001 milliseconds with 0 bytes received</i>\";}'),(10206,226064,'_shortpixel_status','2.5700'),(10207,225573,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/b18f5368c8c19fac5c4b4437a7958143-lossy.pdf) cURL error 28: Operation timed out after 20001 milliseconds with 85280 out of 572163 bytes received Retry limit reached. Skipping file ID 225573.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10208,225572,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:2:{s:7:\"Retries\";i:2;s:7:\"ErrCode\";i:503;}s:21:\"ShortPixelImprovement\";s:95:\"Error: <i>cURL error 28: Operation timed out after 15001 milliseconds with 0 bytes received</i>\";}'),(10209,225571,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/5a228ad66fa015fafec4d43de087b64d-lossy.pdf) cURL error 28: Operation timed out after 20001 milliseconds with 89624 out of 519390 bytes received Retry limit reached. Skipping file ID 225571.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10210,225570,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:2:{s:7:\"Retries\";i:1;s:7:\"ErrCode\";i:503;}s:21:\"ShortPixelImprovement\";s:95:\"Error: <i>cURL error 28: Operation timed out after 15001 milliseconds with 0 bytes received</i>\";}'),(10211,225569,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/fb7cccd9b6b0784055445e66afa0020e-lossy.pdf) cURL error 28: Operation timed out after 20000 milliseconds with 44688 out of 543217 bytes received Retry limit reached. Skipping file ID 225569.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10212,225527,'_shortpixel_status','2.6700'),(10213,225487,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 11:51:18\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"99.54\";}'),(10214,225486,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 11:51:40\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"99.65\";}'),(10215,225485,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 11:52:05\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"99.75\";}'),(10216,225487,'_shortpixel_status','2.9900'),(10217,225484,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 11:52:23\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:1:\"0\";}'),(10218,225486,'_shortpixel_status','2.9900'),(10219,225480,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:246:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/e1ec3ed3d12e903119ab53abd7677eaf-lossy.pdf) cURL error 28: Operation timed out after 10000 milliseconds with 0 out of 0 bytes received Retry limit reached. Skipping file ID 225480.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10220,225485,'_shortpixel_status','2.9900'),(10221,225438,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 12:00:22\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"50.45\";}'),(10222,225484,'_shortpixel_status','2.0000'),(10223,225437,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 12:00:48\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"99.7\";}'),(10224,225435,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 12:01:04\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:1:\"0\";}'),(10225,225438,'_shortpixel_status','2.5000'),(10226,225062,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 12:02:31\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"99.46\";}'),(10227,225437,'_shortpixel_status','2.9900'),(10228,225061,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/8c6413fc0b2f43403ff7a86803af184c-lossy.pdf) cURL error 28: Operation timed out after 20001 milliseconds with 80936 out of 236125 bytes received Retry limit reached. Skipping file ID 225061.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10229,225435,'_shortpixel_status','2.0000'),(10230,225029,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 12:10:10\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"99.54\";}'),(10231,225062,'_shortpixel_status','2.9900'),(10232,225028,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 12:10:25\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:1:\"0\";}'),(10233,224985,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/09cc5e49eaa7725f201c2ee07c69d5c8-lossy.pdf) cURL error 28: Operation timed out after 20000 milliseconds with 86728 out of 499262 bytes received Retry limit reached. Skipping file ID 224985.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10234,225029,'_shortpixel_status','2.9900'),(10235,224981,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:2:{s:7:\"Retries\";i:1;s:7:\"ErrCode\";i:503;}s:21:\"ShortPixelImprovement\";s:95:\"Error: <i>cURL error 28: Operation timed out after 15002 milliseconds with 0 bytes received</i>\";}'),(10236,225028,'_shortpixel_status','2.0000'),(10237,224980,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/11d9a0ac542a7871ac30e01286cc12dc-lossy.pdf) cURL error 28: Operation timed out after 20000 milliseconds with 75144 out of 653460 bytes received Retry limit reached. Skipping file ID 224980.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10238,224979,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:246:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/59fb979ab8590e10453b2305a04b90d6-lossy.pdf) cURL error 28: Operation timed out after 10001 milliseconds with 0 out of 0 bytes received Retry limit reached. Skipping file ID 224979.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10239,224978,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/1ac5c852c1001e024c25cdcfb3f3a77a-lossy.pdf) cURL error 28: Operation timed out after 20001 milliseconds with 49032 out of 520999 bytes received Retry limit reached. Skipping file ID 224978.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10240,224977,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:2:{s:7:\"Retries\";i:1;s:7:\"ErrCode\";i:503;}s:21:\"ShortPixelImprovement\";s:95:\"Error: <i>cURL error 28: Operation timed out after 15001 milliseconds with 0 bytes received</i>\";}'),(10241,224976,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-01-17 12:44:05\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"99.88\";}'),(10242,224975,'_wp_attachment_metadata','a:2:{s:10:\"ShortPixel\";a:2:{s:7:\"Retries\";i:2;s:7:\"ErrCode\";i:-7;}s:21:\"ShortPixelImprovement\";s:209:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/b031573c646ff0b565b6000913a66f57-lossy.pdf) cURL error 28: Operation timed out after 20001 milliseconds with 82384 out of 609347 bytes received</i>\";}'),(10243,224974,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/16fa42212d4f3cfac8caef91d0515573-lossy.pdf) cURL error 28: Operation timed out after 20000 milliseconds with 24464 out of 519281 bytes received Retry limit reached. Skipping file ID 224974.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10244,224976,'_shortpixel_status','2.9900'),(10245,224973,'_wp_attachment_metadata','a:2:{s:21:\"ShortPixelImprovement\";s:255:\"Error: <i>Error downloading file (http://api.shortpixel.com/f/3a748eae12fd319a877f0cc8179522d4-lossy.pdf) cURL error 28: Operation timed out after 20000 milliseconds with 37448 out of 637912 bytes received Retry limit reached. Skipping file ID 224973.</i>\";s:10:\"ShortPixel\";a:1:{s:7:\"ErrCode\";i:-7;}}'),(10246,226135,'_shortpixel_status','2.4200'),(10247,224928,'_shortpixel_status','2.5500'),(10248,224842,'_shortpixel_status','2.1600'),(10249,224835,'_shortpixel_status','2.7500'),(10250,224832,'_shortpixel_status','2.7200'),(10251,224829,'_shortpixel_status','2.7500'),(10252,224824,'_shortpixel_status','2.7500'),(10253,224820,'_shortpixel_status','2.7700'),(10254,224814,'_shortpixel_status','2.7500'),(10255,224537,'_shortpixel_status','2.6200'),(10256,224276,'_shortpixel_status','2.5100'),(10257,224195,'_shortpixel_status','2.5800'),(10259,223392,'_shortpixel_status','2.5800'),(10260,224288,'_shortpixel_status','2.4100'),(10261,223296,'_shortpixel_status','2.5900'),(10262,215154,'_shortpixel_status','2.4600'),(10263,215152,'_shortpixel_status','2.4300'),(10264,215151,'_shortpixel_status','2.4900'),(10265,215072,'_shortpixel_status','2.4000'),(10266,215071,'_shortpixel_status','2.1800'),(10267,215061,'_shortpixel_status','2.7200'),(10268,215060,'_shortpixel_status','2.6800'),(10269,215059,'_shortpixel_status','2.6500'),(10270,215058,'_shortpixel_status','2.6500'),(10271,215056,'_shortpixel_status','2.6400'),(10272,215020,'_shortpixel_status','2.7700'),(10273,1355,'_shortpixel_status','2.7300'),(10274,50,'_shortpixel_status','2.7800'),(10275,49,'_shortpixel_status','2.7900'),(10276,47,'_shortpixel_status','2.4800'),(10277,43,'_shortpixel_status','2.0000'),(10278,224113,'_shortpixel_status','2.6500'),(10281,226235,'_edit_lock','1579357967:1'),(10282,226235,'_edit_last','1'),(10283,226235,'_wp_page_template','default'),(10284,226235,'post_do_preventscroll','0'),(10285,226235,'do_at_pages_selected',''),(10286,226235,'do_at_pagesexception_selected',''),(10287,226235,'category_at_categories_selected',''),(10288,226235,'category_at_exceptioncategories_selected',''),(10289,226235,'tag_at_tags_selected',''),(10290,226235,'tag_at_exceptiontags_selected',''),(10291,226235,'do_displaylocations_archive','0'),(10292,226235,'css_selector_at_pages_selected',''),(10293,226235,'post_enableurltrigger','0'),(10294,226235,'do_enableajax','0'),(10295,226235,'overlay_automatictrigger','0'),(10296,226235,'overlay_automatictrigger_onceperload','0'),(10297,226235,'overlay_automatictrigger_disablemobile','0'),(10298,226235,'overlay_automatictrigger_disabletablet','0'),(10299,226235,'overlay_automatictrigger_disabledesktop','0'),(10300,226235,'post_do_hideclosebtn','0'),(10301,226235,'post_do_customizeclosebtn','0'),(10302,226235,'do_enable_scheduling','0'),(10303,226235,'meta-mhmm-header','disabled'),(10304,226235,'meta-mhmm-style','default'),(10305,226235,'_et_pb_page_layout','et_right_sidebar'),(10306,226235,'_et_pb_side_nav','off'),(10307,226235,'_et_pb_use_builder','on'),(10308,226235,'_et_pb_first_image',''),(10309,226235,'_et_pb_truncate_post',''),(10310,226235,'_et_pb_truncate_post_date',''),(10311,226235,'_et_pb_old_content',''),(10312,226235,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";s:15:\"et-gf-open-sans\";s:80:\"Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";}s:6:\"subset\";a:8:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:5:\"greek\";i:4;s:9:\"greek-ext\";i:5;s:10:\"vietnamese\";i:6;s:8:\"cyrillic\";i:7;s:12:\"cyrillic-ext\";}}'),(10313,226235,'_et_pb_built_for_post_type','page'),(10314,226235,'_et_pb_ab_subjects',''),(10315,226235,'_et_pb_enable_shortcode_tracking',''),(10316,226235,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"226235\" /]'),(10317,226235,'_et_pb_custom_css',''),(10318,226235,'_et_pb_gutter_width','3'),(10320,226235,'_et_builder_version','VB|Divi|4.2'),(10321,226235,'_et_pb_show_page_creation','off'),(10322,226240,'_edit_lock','1579358721:1'),(10323,226240,'_edit_last','1'),(10324,226240,'_wp_page_template','page-template-blank.php'),(10325,226240,'post_do_preventscroll','0'),(10326,226240,'do_at_pages_selected',''),(10327,226240,'do_at_pagesexception_selected',''),(10328,226240,'category_at_categories_selected',''),(10329,226240,'category_at_exceptioncategories_selected',''),(10330,226240,'tag_at_tags_selected',''),(10331,226240,'tag_at_exceptiontags_selected',''),(10332,226240,'do_displaylocations_archive','0'),(10333,226240,'css_selector_at_pages_selected',''),(10334,226240,'post_enableurltrigger','0'),(10335,226240,'do_enableajax','0'),(10336,226240,'overlay_automatictrigger','0'),(10337,226240,'overlay_automatictrigger_onceperload','0'),(10338,226240,'overlay_automatictrigger_disablemobile','0'),(10339,226240,'overlay_automatictrigger_disabletablet','0'),(10340,226240,'overlay_automatictrigger_disabledesktop','0'),(10341,226240,'post_do_hideclosebtn','0'),(10342,226240,'post_do_customizeclosebtn','0'),(10343,226240,'do_enable_scheduling','0'),(10344,226240,'meta-mhmm-header','disabled'),(10345,226240,'meta-mhmm-style','default'),(10346,226240,'_et_pb_page_layout','et_right_sidebar'),(10347,226240,'_et_pb_side_nav','off'),(10348,226240,'_et_pb_use_builder','on'),(10349,226240,'_et_pb_first_image',''),(10350,226240,'_et_pb_truncate_post',''),(10351,226240,'_et_pb_truncate_post_date',''),(10352,226240,'_et_pb_old_content',''),(10353,226240,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(10354,215035,'_et_pb_excluded_global_options','[]'),(10355,226240,'_et_pb_built_for_post_type','page'),(10356,226240,'_et_pb_ab_subjects',''),(10357,226240,'_et_pb_enable_shortcode_tracking',''),(10358,226240,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"226240\" /]'),(10359,226240,'_et_pb_custom_css','.et_pb_menu_0 nav>ul>li>a {\n  padding:10px 20px !important;\n}\n.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {\n    padding-right: 0px !important;\n    padding-left: 0px !important;\n}\n.et_pb_menu_0.et_pb_menu ul li a {\n    font-size: 1.15vw !important;\n    letter-spacing: 2px !important;\n    font-weight: 400 !important;\n}\n.et-menu a:hover {\n  	color: #a6bf96;\n}\n.et_pb_menu_0 nav>ul>li.current-menu-item>a {\n  color:#a6bf96;\n}'),(10360,226240,'_et_pb_gutter_width','3'),(10362,226240,'_et_builder_version','VB|Divi|4.2'),(10363,226240,'_et_pb_show_page_creation','off'),(10374,226254,'_et_pb_built_for_post_type','page'),(10376,226256,'_et_pb_use_builder','on'),(10377,226256,'_et_pb_show_page_creation','off'),(10378,226256,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(10379,226256,'_et_pb_built_for_post_type','page'),(10380,226256,'_et_pb_ab_subjects',''),(10381,226256,'_et_pb_enable_shortcode_tracking',''),(10382,226256,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"226256\" /]'),(10383,226256,'_et_pb_custom_css',''),(10384,226256,'_et_pb_gutter_width','3'),(10385,226256,'_thumbnail_id',''),(10386,226256,'_et_pb_first_image',''),(10387,226256,'_et_pb_truncate_post',''),(10388,226256,'_et_pb_truncate_post_date',''),(10389,226256,'_et_builder_version','VB|Divi|4.2'),(10390,226260,'_et_autogenerated_title','0'),(10391,226260,'_et_default','1'),(10392,226260,'_et_enabled','1'),(10393,226260,'_et_header_layout_id','226256'),(10394,226260,'_et_header_layout_enabled','1'),(10395,226260,'_et_body_layout_id','0'),(10396,226260,'_et_body_layout_enabled','1'),(10397,226260,'_et_footer_layout_id','0'),(10398,226260,'_et_footer_layout_enabled','1'),(10400,226262,'_et_autogenerated_title','0'),(10401,226262,'_et_default','1'),(10402,226262,'_et_enabled','1'),(10403,226262,'_et_header_layout_id','226301'),(10404,226262,'_et_header_layout_enabled','1'),(10405,226262,'_et_body_layout_id','0'),(10406,226262,'_et_body_layout_enabled','1'),(10407,226262,'_et_footer_layout_id','0'),(10408,226262,'_et_footer_layout_enabled','1'),(10410,226263,'_et_autogenerated_title','1'),(10411,226263,'_et_default','0'),(10412,226263,'_et_enabled','1'),(10413,226263,'_et_header_layout_id','226301'),(10414,226263,'_et_header_layout_enabled','1'),(10415,226263,'_et_body_layout_id','0'),(10416,226263,'_et_body_layout_enabled','1'),(10417,226263,'_et_footer_layout_id','0'),(10418,226263,'_et_footer_layout_enabled','1'),(10424,226260,'_et_theme_builder_marked_as_unused','2020-01-18 08:57:53'),(10429,226292,'_edit_lock','1579360276:1'),(10430,226292,'_edit_last','1'),(10431,226292,'_wp_page_template','default'),(10432,226292,'post_do_preventscroll','0'),(10433,226292,'do_at_pages_selected',''),(10434,226292,'do_at_pagesexception_selected',''),(10435,226292,'category_at_categories_selected',''),(10436,226292,'category_at_exceptioncategories_selected',''),(10437,226292,'tag_at_tags_selected',''),(10438,226292,'tag_at_exceptiontags_selected',''),(10439,226292,'do_displaylocations_archive','0'),(10440,226292,'css_selector_at_pages_selected',''),(10441,226292,'post_enableurltrigger','0'),(10442,226292,'do_enableajax','0'),(10443,226292,'overlay_automatictrigger','0'),(10444,226292,'overlay_automatictrigger_onceperload','0'),(10445,226292,'overlay_automatictrigger_disablemobile','0'),(10446,226292,'overlay_automatictrigger_disabletablet','0'),(10447,226292,'overlay_automatictrigger_disabledesktop','0'),(10448,226292,'post_do_hideclosebtn','0'),(10449,226292,'post_do_customizeclosebtn','0'),(10450,226292,'do_enable_scheduling','0'),(10451,226292,'meta-mhmm-header','default'),(10452,226292,'meta-mhmm-style','default'),(10453,226292,'_et_pb_page_layout','et_right_sidebar'),(10454,226292,'_et_pb_side_nav','off'),(10455,226292,'_et_pb_use_builder','on'),(10456,226292,'_et_pb_first_image',''),(10457,226292,'_et_pb_truncate_post',''),(10458,226292,'_et_pb_truncate_post_date',''),(10459,226292,'_et_pb_old_content',''),(10460,226292,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(10461,226295,'_et_pb_built_for_post_type','page'),(10462,226295,'_edit_lock','1579359318:1'),(10463,226295,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(10464,226298,'_et_autogenerated_title','0'),(10465,226298,'_et_default','1'),(10466,226298,'_et_enabled','1'),(10467,226298,'_et_header_layout_id','226301'),(10468,226298,'_et_header_layout_enabled','1'),(10469,226298,'_et_body_layout_id','0'),(10470,226298,'_et_body_layout_enabled','1'),(10471,226298,'_et_footer_layout_id','0'),(10472,226298,'_et_footer_layout_enabled','1'),(10474,226299,'_et_autogenerated_title','1'),(10475,226299,'_et_default','0'),(10476,226299,'_et_enabled','1'),(10477,226299,'_et_header_layout_id','0'),(10478,226299,'_et_header_layout_enabled','1'),(10479,226299,'_et_body_layout_id','0'),(10480,226299,'_et_body_layout_enabled','1'),(10481,226299,'_et_footer_layout_id','0'),(10482,226299,'_et_footer_layout_enabled','1'),(10485,226300,'_et_autogenerated_title','1'),(10486,226300,'_et_default','0'),(10487,226300,'_et_enabled','1'),(10488,226300,'_et_header_layout_id','226301'),(10489,226300,'_et_header_layout_enabled','1'),(10490,226300,'_et_body_layout_id','0'),(10491,226300,'_et_body_layout_enabled','1'),(10492,226300,'_et_footer_layout_id','0'),(10493,226300,'_et_footer_layout_enabled','1'),(10496,226301,'_et_pb_use_builder','on'),(10497,226301,'_et_pb_show_page_creation','off'),(10503,226301,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(10504,226301,'_et_pb_built_for_post_type','page'),(10505,226301,'_et_pb_ab_subjects',''),(10506,226301,'_et_pb_enable_shortcode_tracking',''),(10507,226301,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"226301\" /]'),(10508,226301,'_et_pb_custom_css',''),(10509,226301,'_et_pb_gutter_width','3'),(10510,226301,'_thumbnail_id',''),(10511,226301,'_et_pb_first_image',''),(10512,226301,'_et_pb_truncate_post',''),(10513,226301,'_et_pb_truncate_post_date',''),(10514,226301,'_et_builder_version','VB|Divi|4.2'),(10516,226299,'_et_use_on','singular:post_type:page:id:226235'),(10518,226300,'_et_use_on','singular:post_type:page:all'),(10520,226261,'_et_template','226262'),(10521,226263,'_et_use_on','singular:post_type:page:id:226235'),(10522,226261,'_et_template','226263'),(10523,226304,'_et_autogenerated_title','1'),(10524,226304,'_et_default','0'),(10525,226304,'_et_enabled','1'),(10526,226304,'_et_header_layout_id','0'),(10527,226304,'_et_header_layout_enabled','1'),(10528,226304,'_et_body_layout_id','0'),(10529,226304,'_et_body_layout_enabled','1'),(10530,226304,'_et_footer_layout_id','0'),(10531,226304,'_et_footer_layout_enabled','1'),(10532,226304,'_et_use_on','singular:post_type:page:all'),(10533,226261,'_et_template','226304'),(10537,226300,'_et_theme_builder_marked_as_unused','2020-01-18 15:14:16'),(10538,226298,'_et_theme_builder_marked_as_unused','2020-01-18 15:14:17'),(10539,226299,'_et_theme_builder_marked_as_unused','2020-01-18 15:14:17'),(10540,226256,'_et_theme_builder_marked_as_unused','2020-01-18 15:14:17'),(10541,226254,'_edit_lock','1579361067:1'),(10542,226254,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:13:\"et-gf-tajawal\";s:39:\"Tajawal:200,300,regular,500,700,800,900\";}s:6:\"subset\";a:2:{i:0;s:6:\"arabic\";i:1;s:5:\"latin\";}}'),(10543,226347,'_wp_attached_file','Stadsig_Home.jpg'),(10544,226347,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1600;s:6:\"height\";i:600;s:4:\"file\";s:16:\"Stadsig_Home.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Stadsig_Home-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Stadsig_Home-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Stadsig_Home-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:24:\"Stadsig_Home-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Stadsig_Home-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_Home-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Stadsig_Home-1080x600.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_Home-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_Home-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Stadsig_Home-1080x405.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Stadsig_Home-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:25:\"Stadsig_Home-1280x480.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:24:\"Stadsig_Home-980x368.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"Stadsig_Home-480x180.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:180;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-03-05 10:04:02\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"81.37\";}'),(10546,226347,'_shortpixel_status','2.8100'),(10547,226350,'_wp_attached_file','Stadsig_Area.jpg'),(10548,226350,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1600;s:6:\"height\";i:600;s:4:\"file\";s:16:\"Stadsig_Area.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Stadsig_Area-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Stadsig_Area-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Stadsig_Area-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:24:\"Stadsig_Area-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Stadsig_Area-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_Area-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Stadsig_Area-1080x600.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_Area-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_Area-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Stadsig_Area-1080x405.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Stadsig_Area-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:25:\"Stadsig_Area-1280x480.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:24:\"Stadsig_Area-980x368.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"Stadsig_Area-480x180.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:180;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-03-05 10:07:00\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"76.48\";}'),(10550,226350,'_shortpixel_status','2.7600'),(10551,226353,'_wp_attached_file','Stadsig_EstateOverview.jpg'),(10552,226353,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1600;s:6:\"height\";i:600;s:4:\"file\";s:26:\"Stadsig_EstateOverview.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Stadsig_EstateOverview-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Stadsig_EstateOverview-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Stadsig_EstateOverview-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:\"Stadsig_EstateOverview-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"Stadsig_EstateOverview-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Stadsig_EstateOverview-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"Stadsig_EstateOverview-1080x600.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Stadsig_EstateOverview-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Stadsig_EstateOverview-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"Stadsig_EstateOverview-1080x405.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Stadsig_EstateOverview-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"Stadsig_EstateOverview-1280x480.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"Stadsig_EstateOverview-980x368.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"Stadsig_EstateOverview-480x180.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:180;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-03-05 10:09:50\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:4:\"79.6\";}'),(10554,226353,'_shortpixel_status','2.7900'),(10555,226357,'_wp_attached_file','Stadsig_HousePlans.jpg'),(10556,226357,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"Stadsig_HousePlans.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Stadsig_HousePlans-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Stadsig_HousePlans-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Stadsig_HousePlans-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:\"Stadsig_HousePlans-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"Stadsig_HousePlans-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Stadsig_HousePlans-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Stadsig_HousePlans-1080x600.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Stadsig_HousePlans-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Stadsig_HousePlans-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Stadsig_HousePlans-1080x405.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Stadsig_HousePlans-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:31:\"Stadsig_HousePlans-1280x480.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:30:\"Stadsig_HousePlans-980x368.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"Stadsig_HousePlans-480x180.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:180;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-03-05 10:11:50\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"81.66\";}'),(10558,226357,'_shortpixel_status','2.8100'),(10559,226360,'_wp_attached_file','Stadsig_Developer.jpg'),(10560,226360,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"Stadsig_Developer.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Stadsig_Developer-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Stadsig_Developer-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Stadsig_Developer-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:\"Stadsig_Developer-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"Stadsig_Developer-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Stadsig_Developer-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"Stadsig_Developer-1080x600.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Stadsig_Developer-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"Stadsig_Developer-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:30:\"Stadsig_Developer-1080x405.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"Stadsig_Developer-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:30:\"Stadsig_Developer-1280x480.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:29:\"Stadsig_Developer-980x368.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"Stadsig_Developer-480x180.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:180;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-03-05 10:14:09\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"78.12\";}'),(10562,226360,'_shortpixel_status','2.7800'),(10563,226364,'_wp_attached_file','Stadsig_Documentation.jpg'),(10564,226364,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1600;s:6:\"height\";i:600;s:4:\"file\";s:25:\"Stadsig_Documentation.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Stadsig_Documentation-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Stadsig_Documentation-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Stadsig_Documentation-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:\"Stadsig_Documentation-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"Stadsig_Documentation-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Stadsig_Documentation-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Stadsig_Documentation-1080x600.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Stadsig_Documentation-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Stadsig_Documentation-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Stadsig_Documentation-1080x405.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Stadsig_Documentation-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"Stadsig_Documentation-1280x480.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"Stadsig_Documentation-980x368.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"Stadsig_Documentation-480x180.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:180;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:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-03-05 10:15:56\";s:9:\"thumbsOpt\";i:0;s:13:\"thumbsOptList\";a:0:{}s:12:\"excludeSizes\";a:16:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";i:4;s:9:\"1536x1536\";i:5;s:9:\"2048x2048\";i:6;s:21:\"et-pb-post-main-image\";i:7;s:31:\"et-pb-post-main-image-fullwidth\";i:8;s:21:\"et-pb-portfolio-image\";i:9;s:28:\"et-pb-portfolio-module-image\";i:10;s:28:\"et-pb-portfolio-image-single\";i:11;s:35:\"et-pb-gallery-module-image-portrait\";i:12;s:37:\"et-pb-post-main-image-fullwidth-large\";i:13;s:32:\"et-pb-image--responsive--desktop\";i:14;s:31:\"et-pb-image--responsive--tablet\";i:15;s:30:\"et-pb-image--responsive--phone\";}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"83.16\";}'),(10566,226364,'_shortpixel_status','2.8300'),(10567,226367,'_wp_attached_file','Stadsig_News.jpg'),(10568,226367,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:600;s:4:\"file\";s:16:\"Stadsig_News.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Stadsig_News-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Stadsig_News-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Stadsig_News-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:24:\"Stadsig_News-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Stadsig_News-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_News-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Stadsig_News-1080x600.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_News-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Stadsig_News-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Stadsig_News-1080x405.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Stadsig_News-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:25:\"Stadsig_News-1280x480.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:24:\"Stadsig_News-980x368.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"Stadsig_News-480x180.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:180;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:{}}s:10:\"ShortPixel\";a:1:{s:17:\"WaitingProcessing\";b:1;}}'),(10570,226371,'_wp_attached_file','Stadsig_Contact.jpg'),(10571,226371,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:600;s:4:\"file\";s:19:\"Stadsig_Contact.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Stadsig_Contact-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Stadsig_Contact-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Stadsig_Contact-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:\"Stadsig_Contact-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"Stadsig_Contact-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Stadsig_Contact-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Stadsig_Contact-1080x600.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Stadsig_Contact-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Stadsig_Contact-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Stadsig_Contact-1080x405.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Stadsig_Contact-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:28:\"Stadsig_Contact-1280x480.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:27:\"Stadsig_Contact-980x368.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:27:\"Stadsig_Contact-480x180.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:180;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:{}}s:10:\"ShortPixel\";a:1:{s:17:\"WaitingProcessing\";b:1;}}');
/*!40000 ALTER TABLE `sts_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_posts`
--

DROP TABLE IF EXISTS `sts_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_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=226373 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_posts`
--

LOCK TABLES `sts_posts` WRITE;
/*!40000 ALTER TABLE `sts_posts` DISABLE KEYS */;
INSERT INTO `sts_posts` VALUES (5,1,'2018-07-16 10:58:40','2018-07-16 10:58:40','','Divi','','publish','closed','closed','','divi','','','2018-07-16 11:58:32','2018-07-16 11:58:32','',0,'https://www.stadsig.co.za/2018/07/16/divi/',0,'custom_css','',0),(9,1,'2018-07-16 11:03:59','2018-07-16 11:03:59','{\"form_align\":\"left\",\"form_width\":\"100%\",\"fieldset_bg_color\":\"\",\"fieldset\":\"0px\",\"fieldset_color\":\"000000\",\"fieldset_padding\":\"0 0 15px 0\",\"font\":\"\\\"Tajawal\\\",Helvetica,Arial,Lucida,sans-serif\",\"direction\":\"ltr\",\"title_size\":\"20px\",\"title_color\":\"444444\",\"title_margin_top\":\"10px\",\"title_margin_bottom\":\"10px\",\"form_desc_size\":\"14px\",\"form_desc_color\":\"666666\",\"form_desc_margin_top\":\"10px\",\"form_desc_margin_bottom\":\"25px\",\"label_color\":\"444444\",\"weight\":\"bold\",\"font_size\":\"14px\",\"position\":\"none\",\"align\":\"left\",\"width\":\"150px\",\"label_padding\":\"0 0 3px 0\",\"required_color\":\"B94A48\",\"required_weight\":\"bold\",\"description_color\":\"666666\",\"description_weight\":\"normal\",\"description_style\":\"normal\",\"description_font_size\":\"12px\",\"description_align\":\"left\",\"description_margin\":\"0\",\"bg_color\":\"ffffff\",\"text_color\":\"232323\",\"border_color\":\"cccccc\",\"field_border_width\":\"1px\",\"field_border_style\":\"solid\",\"bg_color_active\":\"ffffff\",\"border_color_active\":\"66afe9\",\"bg_color_error\":\"ffffff\",\"text_color_error\":\"444444\",\"border_color_error\":\"B94A48\",\"border_width_error\":\"1px\",\"border_style_error\":\"solid\",\"bg_color_disabled\":\"ffffff\",\"text_color_disabled\":\"A1A1A1\",\"border_color_disabled\":\"E5E5E5\",\"field_font_size\":\"14px\",\"field_height\":\"32px\",\"field_width\":\"100%\",\"field_pad\":\"6px 10px\",\"field_margin\":\"20px\",\"border_radius\":\"4px\",\"field_weight\":\"normal\",\"radio_align\":\"block\",\"check_align\":\"block\",\"check_label_color\":\"444444\",\"check_weight\":\"normal\",\"check_font_size\":\"13px\",\"submit_font_size\":\"16px\",\"submit_width\":\"auto\",\"submit_height\":\"auto\",\"submit_weight\":\"200\",\"submit_border_radius\":\"0px\",\"submit_bg_color\":\"a7bf95\",\"submit_text_color\":\"ffffff\",\"submit_border_color\":\"\",\"submit_border_width\":\"0\",\"submit_shadow_color\":\"eeeeee\",\"submit_bg_img\":\"\",\"submit_margin\":\"10px\",\"submit_padding\":\"6px 28px\",\"submit_hover_bg_color\":\"efefef\",\"submit_hover_color\":\"444444\",\"submit_hover_border_color\":\"cccccc\",\"submit_active_bg_color\":\"efefef\",\"submit_active_color\":\"444444\",\"submit_active_border_color\":\"cccccc\",\"success_bg_color\":\"DFF0D8\",\"success_border_color\":\"D6E9C6\",\"success_text_color\":\"468847\",\"success_font_size\":\"14px\",\"error_bg\":\"F2DEDE\",\"error_border\":\"EBCCD1\",\"error_text\":\"B94A48\",\"error_font_size\":\"14px\",\"section_color\":\"444444\",\"section_weight\":\"bold\",\"section_font_size\":\"18px\",\"section_bg_color\":\"\",\"section_pad\":\"15px 0 3px 0\",\"section_mar_top\":\"15px\",\"section_mar_bottom\":\"12px\",\"section_border_color\":\"e8e8e8\",\"section_border_width\":\"2px\",\"section_border_style\":\"solid\",\"section_border_loc\":\"-top\",\"collapse_icon\":\"6\",\"collapse_pos\":\"after\",\"repeat_icon\":\"1\",\"theme_selector\":\"ui-lightness\",\"theme_css\":\"ui-lightness\",\"theme_name\":\"UI Lightness\",\"date_head_bg_color\":\"008ec2\",\"date_head_color\":\"ffffff\",\"date_band_color\":\"005c90\",\"toggle_on_color\":\"008ec2\",\"toggle_off_color\":\"cccccc\",\"toggle_font_size\":\"14px\",\"slider_color\":\"008ec2\",\"slider_bar_color\":\"cccccc\",\"slider_font_size\":\"14px\",\"progress_bg_color\":\"dddddd\",\"progress_color\":\"ffffff\",\"progress_active_bg_color\":\"008ec2\",\"progress_active_color\":\"ffffff\",\"progress_border_color\":\"dfdfdf\",\"progress_border_size\":\"2px\",\"progress_size\":\"30px\",\"custom_css\":\".frm_style_formidable-style.with_frm_style .form-field {\\r\\n    margin-bottom: 10px;\\r\\n}\\r\\n\\r\\n.splash .frm_form_field.frm_three_fourths {\\r\\n\\tmargin-left:0% !important;\\r\\n}\\r\\n.splash .frm_style_formidable-style.with_frm_style .frm_submit button {\\r\\n\\theight:56px !important;\\r\\n}\\r\\n.frm_form_field.frm9, .frm_form_field.frm_three_fourths {\\r\\n    width: 80%;\\r\\n}\\r\\n@media (max-width: 981px) {\\r\\n\\t.frm_form_field.frm9, .frm_form_field.frm_three_fourths {\\r\\n    width: 100% !important;\\r\\n}\\r\\n}\\r\\n.frm_inline_form .frm_form_field.form-field {\\r\\n    margin-right: 4%;\\r\\n    display: inline-block;\\r\\n}\\r\\n@media (min-width: 981px) {\\r\\n\\t.frm_form_field.frm9, .frm_form_field.frm_three_fourths {\\r\\n    max-width: 400px !important;\\r\\n}\\r\\n}\\r\\n.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message, .frm_style_formidable-style.with_frm_style input[type=submit], .frm_style_formidable-style.with_frm_style .frm_submit input[type=button], .frm_style_formidable-style.with_frm_style .frm_submit button, .frm_form_submit_style, .frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit] {\\r\\n    text-transform:lowercase !important;\\r\\n}\\r\\n.frm_style_formidable-style.with_frm_style input[type=text], .frm_style_formidable-style.with_frm_style input[type=password], .frm_style_formidable-style.with_frm_style input[type=email], .frm_style_formidable-style.with_frm_style input[type=number], .frm_style_formidable-style.with_frm_style input[type=url], .frm_style_formidable-style.with_frm_style input[type=tel], .frm_style_formidable-style.with_frm_style input[type=phone], .frm_style_formidable-style.with_frm_style input[type=search], .frm_style_formidable-style.with_frm_style select, .frm_style_formidable-style.with_frm_style textarea, .frm_form_fields_style, .frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container, .frm_form_fields_active_style, .frm_form_fields_error_style, .frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices, .frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single {\\r\\n    -moz-border-radius: 0px;\\r\\n    -webkit-border-radius: 0px;\\r\\n    border-radius: 0px;\\r\\n}\",\"center_form\":\"\",\"line_height\":\"normal\",\"auto_width\":\"\",\"remove_box_shadow\":\"\",\"remove_box_shadow_active\":\"\",\"submit_style\":\"\",\"important_style\":\"\"}','Formidable Style','','publish','closed','closed','','formidable-style','','','2019-07-08 12:27:15','2019-07-08 10:27:15','',0,'https://www.stadsig.co.za/frm_styles/formidable-style/',1,'frm_styles','',0),(28,1,'2018-07-04 10:09:01','2018-07-04 08:09:01','<style type=\"text/css\">\r\n.tg  {border-collapse:collapse;border-spacing:0;margin:0px !important;}\r\n.tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:black;}\r\n.tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:black;}\r\n.tg .tg-yw4l{vertical-align:top}\r\n.tg .tg-yw4l{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;}\r\n@media screen and (max-width: 767px) {.tg {width: auto !important;}.tg col {width: auto !important;}.tg-wrap {overflow-x: auto;-webkit-overflow-scrolling: touch;}}</style>\r\n<div class=\"tg-wrap\">\r\n<table class=\"tg\" style=\"margin: 0px !important;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"tg-yw4l\" style=\"width: 22%;\">[68]</td>\r\n<td class=\"tg-yw4l\" style=\"width: 22%;\">[69]</td>\r\n<td class=\"tg-yw4l\" style=\"width: 14%;\">[70]</td>\r\n<td class=\"tg-yw4l\" style=\"width: 22%;\">[71]</td>\r\n<td class=\"tg-yw4l\" style=\"width: 22%;\">[created-at]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>','Requests Received','','publish','closed','closed','','requests-received','','','2018-08-02 08:50:42','2018-08-02 06:50:42','',0,'https://www.stadsig.co.za/frm_display/requests-received/',0,'frm_display','',0),(29,1,'2018-07-02 08:43:04','2018-07-02 08:43:04','{\"custom_css\":\".frm_style_formidable-style.with_frm_style .form-field {\\r\\n    margin-bottom: 10px;\\r\\n}\\r\\n\\r\\n.splash .frm_form_field.frm_three_fourths {\\r\\n\\tmargin-left:0% !important;\\r\\n}\\r\\n.splash .frm_style_formidable-style.with_frm_style .frm_submit button {\\r\\n\\theight:56px !important;\\r\\n}\\r\\n.frm_form_field.frm9, .frm_form_field.frm_three_fourths {\\r\\n    width: 80%;\\r\\n}\\r\\n@media (max-width: 981px) {\\r\\n\\t.frm_form_field.frm9, .frm_form_field.frm_three_fourths {\\r\\n    width: 100% !important;\\r\\n}\\r\\n}\\r\\n.frm_inline_form .frm_form_field.form-field {\\r\\n    margin-right: 4%;\\r\\n    display: inline-block;\\r\\n}\\r\\n@media (min-width: 981px) {\\r\\n\\t.frm_form_field.frm9, .frm_form_field.frm_three_fourths {\\r\\n    max-width: 400px !important;\\r\\n}\\r\\n}\",\"form_align\":\"left\",\"form_width\":\"100%\",\"fieldset_bg_color\":\"\",\"fieldset\":\"0px\",\"fieldset_color\":\"000000\",\"fieldset_padding\":\"0 0 15px 0\",\"font\":\"\\\"Lucida Grande\\\",\\\"Lucida Sans Unicode\\\",Tahoma,sans-serif\",\"direction\":\"ltr\",\"title_size\":\"20px\",\"title_color\":\"444444\",\"title_margin_top\":\"10px\",\"title_margin_bottom\":\"10px\",\"form_desc_size\":\"14px\",\"form_desc_color\":\"666666\",\"form_desc_margin_top\":\"10px\",\"form_desc_margin_bottom\":\"25px\",\"label_color\":\"444444\",\"weight\":\"bold\",\"font_size\":\"14px\",\"position\":\"none\",\"align\":\"left\",\"width\":\"150px\",\"label_padding\":\"0 0 3px 0\",\"required_color\":\"B94A48\",\"required_weight\":\"bold\",\"description_color\":\"666666\",\"description_weight\":\"normal\",\"description_style\":\"normal\",\"description_font_size\":\"12px\",\"description_align\":\"left\",\"description_margin\":\"0\",\"bg_color\":\"ffffff\",\"text_color\":\"555555\",\"border_color\":\"cccccc\",\"field_border_width\":\"1px\",\"field_border_style\":\"solid\",\"bg_color_active\":\"ffffff\",\"border_color_active\":\"66afe9\",\"bg_color_error\":\"ffffff\",\"text_color_error\":\"444444\",\"border_color_error\":\"B94A48\",\"border_width_error\":\"1px\",\"border_style_error\":\"solid\",\"bg_color_disabled\":\"ffffff\",\"text_color_disabled\":\"A1A1A1\",\"border_color_disabled\":\"E5E5E5\",\"field_font_size\":\"14px\",\"field_height\":\"32px\",\"field_width\":\"100%\",\"field_pad\":\"6px 10px\",\"field_margin\":\"20px\",\"border_radius\":\"4px\",\"field_weight\":\"normal\",\"radio_align\":\"block\",\"check_align\":\"block\",\"check_label_color\":\"444444\",\"check_weight\":\"normal\",\"check_font_size\":\"13px\",\"submit_font_size\":\"16px\",\"submit_width\":\"auto\",\"submit_height\":\"auto\",\"submit_weight\":\"normal\",\"submit_border_radius\":\"0px\",\"submit_bg_color\":\"a7bf95\",\"submit_text_color\":\"ffffff\",\"submit_border_color\":\"cccccc\",\"submit_border_width\":\"0\",\"submit_shadow_color\":\"eeeeee\",\"submit_bg_img\":\"\",\"submit_margin\":\"10px\",\"submit_padding\":\"6px 28px\",\"submit_hover_bg_color\":\"efefef\",\"submit_hover_color\":\"444444\",\"submit_hover_border_color\":\"cccccc\",\"submit_active_bg_color\":\"efefef\",\"submit_active_color\":\"444444\",\"submit_active_border_color\":\"cccccc\",\"success_bg_color\":\"DFF0D8\",\"success_border_color\":\"D6E9C6\",\"success_text_color\":\"468847\",\"success_font_size\":\"14px\",\"error_bg\":\"F2DEDE\",\"error_border\":\"EBCCD1\",\"error_text\":\"B94A48\",\"error_font_size\":\"14px\",\"section_color\":\"444444\",\"section_weight\":\"bold\",\"section_font_size\":\"18px\",\"section_pad\":\"15px 0 3px 0\",\"section_bg_color\":\"\",\"section_mar_top\":\"15px\",\"section_mar_bottom\":\"12px\",\"section_border_color\":\"e8e8e8\",\"section_border_width\":\"2px\",\"section_border_style\":\"solid\",\"section_border_loc\":\"-top\",\"collapse_icon\":\"6\",\"collapse_pos\":\"after\",\"repeat_icon\":\"1\",\"theme_selector\":\"ui-lightness\",\"theme_css\":\"ui-lightness\",\"theme_name\":\"UI Lightness\",\"toggle_font_size\":\"14px\",\"toggle_on_color\":\"008ec2\",\"toggle_off_color\":\"cccccc\",\"slider_font_size\":\"14px\",\"slider_color\":\"008ec2\",\"slider_bar_color\":\"cccccc\",\"progress_bg_color\":\"dddddd\",\"progress_color\":\"ffffff\",\"progress_active_bg_color\":\"008ec2\",\"progress_active_color\":\"ffffff\",\"progress_border_color\":\"dfdfdf\",\"progress_border_size\":\"2px\",\"progress_size\":\"30px\",\"center_form\":\"\",\"line_height\":\"normal\",\"auto_width\":\"\",\"remove_box_shadow\":\"\",\"remove_box_shadow_active\":\"\",\"submit_style\":\"\",\"important_style\":\"\"}','Formidable Style1','','publish','closed','closed','','formidable-style-2','','','2018-07-02 08:43:04','2018-07-02 08:43:04','',0,'https://www.stadsig.co.za/frm_styles/formidable-style-2/',0,'frm_styles','',0),(30,1,'2015-04-06 17:18:12','2015-04-06 15:18:12','{\"email_to\":\"info@stadsig.co.za\",\"cc\":\"consulting@randalstewart.com\",\"bcc\":\"\",\"reply_to\":\"\",\"from\":\"[sitename] <info@stadsig.co.za>\",\"email_subject\":\"Website Information Request\",\"email_message\":\"[default-message]\",\"event\":[\"create\"],\"conditions\":{\"send_stop\":\"send\",\"any_all\":\"any\"}}','Email Notification','email','publish','closed','closed','','6_email_30','','','2018-08-01 18:35:43','2018-08-01 16:35:43','',0,'https://www.stadsig.co.za/frm_form_actions/7_email_185/',6,'frm_form_actions','',0),(33,1,'2018-07-16 11:55:19','2018-07-16 11:55:19','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|desktop\" disabled_on=\"off|off|off\" _builder_version=\"3.9\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" custom_margin=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"18px|0px|0|0px|false|false\" custom_padding_tablet=\"43px|||\" custom_padding_phone=\"29px|||\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"9px|0px|17px|0px|false|false\" custom_padding_tablet=\"9px|||\" custom_margin=\"|||\" custom_padding_last_edited=\"on|tablet\" module_class=\"element\" _builder_version=\"3.9\" border_color_all=\"#a7bf95\" border_style_all=\"none\" module_alignment=\"center\" custom_margin_tablet=\"||-53px|\" custom_margin_last_edited=\"on|tablet\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/2018/07/Stadsig_Website_landing_coming.jpg\" align=\"center\" _builder_version=\"3.9\" max_width=\"30%\" max_width_tablet=\"52%\" max_width_phone=\"63%\" max_width_last_edited=\"on|phone\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|28px|0px|false|false\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" module_class=\"element\" _builder_version=\"3.9\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/2018/07/Stadsig_Website_landing_logo.png\" align=\"center\" _builder_version=\"3.9\" background_color=\"#ffffff\" max_width=\"50%\" max_width_tablet=\"30%\" max_width_phone=\"38%\" max_width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"15px|||\" custom_padding_tablet=\"14px|||\" custom_padding_phone=\"||10px|\" custom_padding_last_edited=\"on|tablet\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|off|off\" _builder_version=\"3.9\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/2018/07/Image_nologo.jpg\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"0|0px|34px|0px|false|false\" custom_padding_tablet=\"||0px|\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"1px||0px|\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"on|tablet\" module_class=\"element\" _builder_version=\"3.9\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" module_alignment=\"center\" custom_margin_tablet=\"|||\" custom_margin_last_edited=\"on|tablet\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/2018/07/Stadsig_Website_landing_thanks-1.png\" align=\"center\" _builder_version=\"3.9\" custom_padding_last_edited=\"on|tablet\" custom_padding=\"7%||7%||true\" custom_padding_phone=\"10%||10%||true\" custom_padding_tablet=\"9%||9%||true\" max_width_last_edited=\"on|desktop\" max_width_phone=\"80%\" max_width_tablet=\"80%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" _builder_version=\"3.9\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" custom_margin=\"0px|0px|22px|0px\" custom_padding=\"0|3%|0|3%|false|true\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"27px|0px|0|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"off|desktop\" module_class=\"element\" _builder_version=\"3.9\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" module_alignment=\"center\" custom_margin_tablet=\"52px||-145px|\" custom_margin_last_edited=\"off|desktop\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/2018/07/Stadsig_Website_landing_private_estate.jpg\" align=\"center\" disabled_on=\"on|off|off\" _builder_version=\"3.9\" max_width=\"63%\" max_width_tablet=\"90%\" max_width_phone=\"97%\" max_width_last_edited=\"on|phone\" module_alignment=\"center\"][/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/2018/07/Stadsig_Website_landing_private_estate2.jpg\" align=\"center\" disabled_on=\"off|on|on\" _builder_version=\"3.9\" max_width=\"63%\" max_width_tablet=\"90%\" max_width_phone=\"55%\" max_width_last_edited=\"on|phone\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|desktop\" disabled_on=\"off|off|off\" _builder_version=\"3.9\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" custom_padding_tablet=\"|62px||62px||true\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"811px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"8px|0px|27px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"off|desktop\" module_class=\"element\" _builder_version=\"3.9\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" module_alignment=\"center\" custom_margin_tablet=\"52px||-145px|\" custom_margin_last_edited=\"off|desktop\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.9\" text_font=\"Tajawal-light||||||||\" text_text_color=\"#575759\" text_font_size=\"22px\" text_font_size_tablet=\"18px\" text_font_size_last_edited=\"on|phone\" text_line_height=\"1.3em\" text_line_height_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Prime elevated location bordering farms with spectacular mountain &amp; town views.\r\nSecure walled family-oriented estate with controlled access.\r\nLandscaped grounds with local fynbos &amp; mature olive trees.\r\nCape Vernacular architectural designed freestanding plot &amp; plan homes.\r\n3 Bedrooms, 2.5 Bathrooms, patio with braai, entertainment area and private garden.\r\nQuality interior finishes with a range of optional extras.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" custom_width_px=\"811px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"8px|0px|27px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"off|desktop\" module_class=\"element\" _builder_version=\"3.9\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" module_alignment=\"center\" custom_margin_tablet=\"52px||-145px|\" custom_margin_last_edited=\"off|desktop\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/2018/07/Stadsig_Website_landing_advantage.png\" align=\"center\" _builder_version=\"3.9\" max_width_tablet=\"90%\" max_width_phone=\"75%\" max_width_last_edited=\"on|phone\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Thank You','','publish','closed','closed','','thank-you','','','2018-07-16 11:55:19','2018-07-16 11:55:19','',0,'https://www.stadsig.co.za/?page_id=33',0,'page','',0),(36,1,'2018-07-16 11:56:25','2018-07-16 11:56:25','[et_pb_section bb_built=\"1\" _builder_version=\"3.9\" max_width_last_edited=\"on|phone\" module_alignment=\"center\"][et_pb_row _builder_version=\"3.0.48\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/2018/07/Stadsig_Website_landing_logo.png\" align=\"center\" _builder_version=\"3.9\" max_width=\"56%\" module_alignment=\"center\" /][et_pb_text _builder_version=\"3.11.1\"]\r\n<h2 style=\"text-align: center;\">POTENTIAL INTEREST RECEIVED VIA WEBSITE</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|10%||10%||true\" custom_padding_tablet=\"|7%||7%||true\" custom_padding_phone=\"|2%||2%||true\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_button button_url=\"https://www.stadsig.co.za/wp-admin/admin-ajax.php?frm_action=0&amp;action=frm_entries_csv&amp;form=6\" url_new_window=\"on\" button_text=\"Download CSV\" button_alignment=\"left\" _builder_version=\"3.11.1\" custom_button=\"on\" button_text_color=\"#002868\" /][et_pb_text _builder_version=\"3.11.1\"]\r\n\r\n[display-frm-data id=28 filter=limited]\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','RegEntries','','publish','closed','closed','','regentries','','','2018-08-02 12:12:45','2018-08-02 10:12:45','',0,'https://www.stadsig.co.za/?page_id=36',0,'page','',0),(39,1,'2018-07-16 12:01:48','2018-07-16 12:01:48','body {\r\n	font-weight:200 !important;\r\n}\r\n\r\nh1 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n\r\nh2 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n\r\nh3 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n\r\nh4 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n\r\nh5 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n\r\nh6 {\r\n		font-weight:200 !important;\r\n		color:#232323 !important;\r\n}\r\n.et_pb_map {\r\n	max-height:550px !important;\r\n	height:550px !important;\r\n}\r\n\r\n#footer-bottom {\r\n	display:none;\r\n}\r\n\r\nsup {\r\n	vertical-align: sub; \r\n	font-size: smaller;\r\n}\r\n\r\n.et_pb_image_1 {\r\n    background-color: rgba(0,0,0,0);\r\n    max-width: 100%;\r\n	width:100% !important;\r\n    text-align: center;\r\n}','Divi-child','','publish','closed','closed','','divi-child','','','2020-01-13 15:06:49','2020-01-13 13:06:49','',0,'https://www.stadsig.co.za/2018/07/16/divi-child/',0,'custom_css','',0),(43,1,'2018-07-16 12:13:56','2018-07-16 12:13:56','','favicon','','inherit','open','closed','','favicon','','','2018-07-16 12:13:56','2018-07-16 12:13:56','',0,'https://www.stadsig.co.za/wp-content/uploads/2018/07/favicon.png',0,'attachment','image/png',0),(47,1,'2018-07-16 16:25:36','2018-07-16 14:25:36','','Stadsig_Website_favicon','','inherit','open','closed','','stadsig_website_favicon','','','2018-07-16 16:25:36','2018-07-16 14:25:36','',0,'https://www.stadsig.co.za/wp-content/uploads/2018/07/Stadsig_Website_favicon.png',0,'attachment','image/png',0),(49,1,'2018-07-16 16:54:41','2018-07-16 14:54:41','','Stadsig_Website_favicon1','','inherit','open','closed','','stadsig_website_favicon1','','','2018-07-16 16:54:41','2018-07-16 14:54:41','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_favicon1.png',0,'attachment','image/png',0),(50,1,'2018-07-16 16:54:51','2018-07-16 14:54:51','https://www.stadsig.co.za/wp-content/uploads/cropped-Stadsig_Website_favicon1.png','cropped-Stadsig_Website_favicon1.png','','inherit','open','closed','','cropped-stadsig_website_favicon1-png','','','2018-07-16 16:54:51','2018-07-16 14:54:51','',0,'https://www.stadsig.co.za/wp-content/uploads/cropped-Stadsig_Website_favicon1.png',0,'attachment','image/png',0),(58,1,'2018-07-18 11:17:51','2018-07-18 09:17:51','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.26.4\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" hover_enabled=\"0\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_Home.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Phone\" module_class=\"section\" _builder_version=\"3.26.4\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/HomeCover_Mobile_650.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"86px||64px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.26\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" admin_label=\"elevate your senses-Desktop\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#232323\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||-3px|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">elevate your senses</h1>[/et_pb_text][et_pb_text disabled_on=\"off|off|on\" admin_label=\"elevate your senses-Tablet-Phone\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#232323\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"35px||||false|false\"]<h1 style=\"text-align: center;\">elevate your senses</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"Explore Story Section - Desktop\" _builder_version=\"3.26\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25.3\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.29.3\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" custom_padding=\"|29%||29%||true\"]<p style=\"text-align: center;\">Listen to the breeze rustle the olives trees, watch the clouds drift over the Bainskloof Pass and feel the warmth of the sun shining down on Wellington’s premier lifestyle estate. The majestic Hawequa Mountains tower above, silent sentinels that hold your gaze and allow you to immerse yourself in the tranquility of Stadsig’s Cape Vernacular homes. Appreciate the stillness of this mountainous corner of the Cape Winelands, in the knowledge that Wellington town centre is just minutes from your stoep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|on\" admin_label=\"Explore Story Section - Tablet Phone\" _builder_version=\"3.26\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25.3\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.29.3\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" custom_padding=\"11px|14.4%||14.4%||true\"]<p style=\"text-align: center;\">Listen to the breeze rustle the olives trees, watch the clouds drift over the Bainskloof Pass and feel the warmth of the sun shining down on Wellington’s premier lifestyle estate. The majestic Hawequa Mountains tower above, silent sentinels that hold your gaze and allow you to immerse yourself in the tranquility of Stadsig’s Cape Vernacular homes. Appreciate the stillness of this mountainous corner of the Cape Winelands, in the knowledge that Wellington town centre is just minutes from your stoep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"Senses - Desktop Section\" _builder_version=\"3.26\" custom_padding=\"21px||0||false|false\"][et_pb_row admin_label=\"senses - blurb container - desktop\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb image=\"https://stadsig.co.za/wp-content/uploads/feather-2_450.png\" _builder_version=\"4.1\" header_level=\"h2\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" max_width=\"9%\" module_alignment=\"center\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|on\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.26\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"4px||6px||false|false\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/feather-2_450.png\" _builder_version=\"4.1\" custom_padding=\"|33vw||33vw|false|true\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Bainskloof - All devices Caption\" _builder_version=\"3.22.3\" custom_padding=\"1px||14px||false|false\"][et_pb_row admin_label=\"Article Title\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||23px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"tailored house plans\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_text_color=\"#575759\" header_font_size=\"25px\" header_2_font_size=\"30px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h2>tailored house plans</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"-17px|auto||auto|false|false\" custom_padding=\"|13%||13%|false|true\"][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/News_HouseImage1.jpg\" _builder_version=\"4.1\" width=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_HouseImage2.jpg\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_HouseImage3.jpg\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26\" custom_padding=\"10px||12px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.26\"][et_pb_text _builder_version=\"3.27.4\" text_font_size=\"20px\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"\" text_font_size_last_edited=\"on|desktop\" text_text_align=\"center\"]<p><a href=\"https://www.stadsig.co.za/house-plans/\">choose from 15 house types</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','publish','closed','closed','','home','','','2020-03-05 11:58:55','2020-03-05 09:58:55','',0,'https://www.stadsig.co.za/?page_id=58',0,'page','',0),(1345,1,'2018-07-18 15:38:54','2018-07-18 13:38:54','','home','','publish','closed','closed','','home','','','2019-08-01 15:44:26','2019-08-01 13:44:26','',0,'https://www.stadsig.co.za/?p=1345',1,'nav_menu_item','',0),(1355,1,'2018-07-18 15:52:21','2018-07-18 13:52:21','','Stadsig_Logo','','inherit','open','closed','','stadsig_logo','','','2018-07-18 15:52:21','2018-07-18 13:52:21','',58,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_Logo.png',0,'attachment','image/png',0),(1460,1,'2018-07-18 16:28:44','2018-07-18 14:28:44','[et_pb_section bb_built=\"1\" template_type=\"section\"][et_pb_row _builder_version=\"3.10.1\" module_alignment=\"center\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\"][et_pb_column type=\"1_4\"][et_pb_image _builder_version=\"3.10.1\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Logo.png\" align=\"center\" show_bottom_space=\"off\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_mhmm_inline_menu _builder_version=\"3.10.1\" menu=\"main\" menu_item_alignment=\"center\" submenu_transition=\"fade\" menu_item_color=\"#575759\" menu_item_background_color=\"rgba(255,255,255,0)\" menu_item_hover_color=\"#a6bf96\" menu_item_hover_background_color=\"rgba(255,255,255,0)\" menu_item_active_color=\"#a6bf96\" menu_item_active_background_color=\"rgba(255,255,255,0)\" submenu_item_color=\"#333333\" submenu_item_background_color=\"rgba(255,255,255,0)\" submenu_item_hover_color=\"#777777\" submenu_item_hover_background_color=\"rgba(255,255,255,0)\" submenu_item_active_color=\"#333333\" submenu_item_active_background_color=\"rgba(255,255,255,0)\" custom_padding=\"|30px||30px\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\" advanced_media_query_direction=\"above\" /][/et_pb_column][/et_pb_row][/et_pb_section]','MenuMain','','publish','closed','closed','','menumain','','','2018-07-18 16:36:05','2018-07-18 14:36:05','',0,'https://www.stadsig.co.za/et_pb_layout/menumain/',0,'et_pb_layout','',0),(1463,1,'2018-07-18 16:47:04','2018-07-18 14:47:04','[et_pb_section bb_built=\"1\" _builder_version=\"3.10.1\" custom_padding=\"10px|0px|10px|0px\" template_type=\"section\" background_color=\"rgba(255,255,255,0.8)\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"9px|5%|16px|5%|false|false\" make_equal=\"on\" _builder_version=\"3.10.1\" module_alignment=\"center\" background_color=\"rgba(255,255,255,0)\"][et_pb_column type=\"4_4\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.14\" max_width=\"80%\" background_color=\"rgba(0,0,0,0)\" /][et_pb_mhmm_inline_menu menu=\"main\" menu_item_alignment=\"center\" submenu_transition=\"fade\" _builder_version=\"3.15\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\" custom_padding=\"10px|20px|10px|20px||true\" menu_item_color=\"#575759\" menu_item_hover_color=\"#a6bf96\" menu_item_active_color=\"#a6bf96\" custom_margin=\"13%|||\" menu_item_background_color=\"rgba(255,255,255,0)\" menu_item_hover_background_color=\"rgba(255,255,255,0)\" menu_item_active_background_color=\"rgba(255,255,255,0)\" submenu_item_color=\"#333333\" submenu_item_background_color=\"rgba(255,255,255,0)\" submenu_item_hover_color=\"#777777\" submenu_item_hover_background_color=\"rgba(255,255,255,0)\" submenu_item_active_color=\"#333333\" submenu_item_active_background_color=\"rgba(255,255,255,0)\" advanced_media_query_direction=\"above\" /][/et_pb_column][/et_pb_row][/et_pb_section]','MainMenu','','publish','closed','closed','','mainmenu','','','2018-09-22 15:49:37','2018-09-22 13:49:37','',0,'https://www.stadsig.co.za/et_pb_layout/mainmenu/',0,'et_pb_layout','',0),(214969,1,'2018-08-19 09:34:26','2018-08-19 07:34:26','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"54px|0px|2px|0px|false|false\" next_background_color=\"#000000\"][et_pb_row _builder_version=\"3.0.48\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|7px|0px|false|false\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.10.1\" header_font_size=\"38px\" header_2_text_align=\"center\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" header_2_line_height=\"1.1em\"]\r\n<h2>advantage are the new developers for\r\nstadsig private country estate</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"21px|0px|0px|0px|false|false\" prev_background_color=\"#000000\"][et_pb_row gutter_width=\"1\" _builder_version=\"3.10.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" use_custom_width=\"on\" width_unit=\"off\" use_custom_gutter=\"on\" make_equal=\"on\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_news1.jpg\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.10.1\" max_width=\"80%\" module_alignment=\"center\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.10.1\" header_2_text_align=\"center\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" header_2_line_height=\"1.1em\" text_font=\"Tajawal|300|||||||\" text_font_size=\"16px\" text_letter_spacing=\"2px\"]\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','advantage are the new developers','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ltricies nec, pellentesque eu, pretium quis,','publish','closed','closed','','advantage-are-the-new-developers','','','2018-09-12 05:13:53','2018-09-12 03:13:53','',0,'https://www.stadsig.co.za/?p=214969',0,'post','',0),(214983,1,'2018-07-19 09:45:06','2018-07-19 07:45:06','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"54px|0px|2px|0px|false|false\" next_background_color=\"#000000\"][et_pb_row _builder_version=\"3.0.48\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|7px|0px|false|false\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.10.1\" header_font_size=\"38px\" header_2_text_align=\"center\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" header_2_line_height=\"1.1em\"]\r\n<h2>new landscape design will elevate the property value</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"21px|0px|0px|0px|false|false\" prev_background_color=\"#000000\"][et_pb_row gutter_width=\"1\" _builder_version=\"3.10.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" use_custom_width=\"on\" width_unit=\"off\" use_custom_gutter=\"on\" make_equal=\"on\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_news2.jpg\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.10.1\" max_width=\"80%\" module_alignment=\"center\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.10.1\" header_2_text_align=\"center\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" header_2_line_height=\"1.1em\"]\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','new landscape design will elevate the property value','Lorem ipsum dolor sit amet, consectetuer adipiscing elit.&nbsp;Aenean commodo ligula eget dolor. Aenean massa. Cum&nbsp;sociis&nbsp; atoque penatibus et magnis dis parturient montes,&nbsp;nascetur ridiculus mus. Donec quam felis, ultricies nec,&nbsp;pellentesque eu, pretium quis, sem. ','publish','closed','closed','','new-landscape-design-will-elevate-the-property-value','','','2018-07-19 14:32:19','2018-07-19 12:32:19','',0,'https://www.stadsig.co.za/?p=214983',0,'post','',0),(214985,1,'2018-06-19 09:48:20','2018-06-19 07:48:20','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"54px|0px|2px|0px|false|false\" next_background_color=\"#000000\"][et_pb_row _builder_version=\"3.0.48\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|7px|0px|false|false\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.10.1\" header_font_size=\"38px\" header_2_text_align=\"center\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" header_2_line_height=\"1.1em\"]\r\n<h2>phase one sold out</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"21px|0px|0px|0px|false|false\" prev_background_color=\"#000000\"][et_pb_row gutter_width=\"1\" _builder_version=\"3.10.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" use_custom_width=\"on\" width_unit=\"off\" use_custom_gutter=\"on\" make_equal=\"on\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_news3.jpg\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.10.1\" max_width=\"80%\" module_alignment=\"center\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.10.1\" header_2_text_align=\"center\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" header_2_line_height=\"1.1em\"]\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis  atoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','phase one sold out','Lorem ipsum dolor sit amet, consectetuer adipiscing elit.&nbsp;Aenean commodo ligula eget dolor. Aenean massa. Cum&nbsp;sociis&nbsp; atoque penatibus et magnis dis parturient montes,&nbsp;nascetur ridiculus mus. Donec quam felis, ultricies nec,&nbsp;pellentesque eu, pretium quis, sem','publish','closed','closed','','phase-one-sold-out','','','2018-09-12 05:15:14','2018-09-12 03:15:14','',0,'https://www.stadsig.co.za/?p=214985',0,'post','',0),(215008,1,'2018-07-19 11:28:09','2018-07-19 09:28:09','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|off|off\" _builder_version=\"3.9\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/2018/07/Image_nologo.jpg\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"0|0px|34px|0px|false|false\" custom_padding_tablet=\"||0px|\" template_type=\"section\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"off|desktop\" disabled_on=\"off|off|off\" module_class=\"element\" _builder_version=\"3.9\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" module_alignment=\"center\" custom_margin_tablet=\"52px||-145px|\" custom_margin_last_edited=\"off|desktop\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.9\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\" text_orientation=\"center\" background_layout=\"dark\" custom_margin_tablet=\"-77px||-67px|\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"32px||32px||true\" custom_padding_tablet=\"30px||30px||true\" custom_padding_last_edited=\"on|tablet\"]<p style=\"text-align: center;\">contact us</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"on|tablet\" module_class=\"element\" _builder_version=\"3.9\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" module_alignment=\"center\" custom_margin_tablet=\"|||\" custom_margin_last_edited=\"on|tablet\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.9\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"]\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','Footer_Home','','publish','closed','closed','','footer_home','','','2018-07-19 11:28:09','2018-07-19 09:28:09','',0,'https://www.stadsig.co.za/et_pb_layout/footer_home/',0,'et_pb_layout','',0),(215020,1,'2018-07-19 11:57:05','2018-07-19 09:57:05','','Footer_Copyrite','','inherit','open','closed','','footer_copyrite','','','2018-07-19 11:57:05','2018-07-19 09:57:05','',0,'https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png',0,'attachment','image/png',0),(215035,1,'2018-07-19 12:42:19','2018-07-19 10:42:19','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" template_type=\"section\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_mhmm_inline_menu menu=\"main\" menu_item_alignment=\"center\" parent_icon=\"off\" submenu_transition=\"fade\" menu_item_color=\"#575759\" menu_item_hover_color=\"#a6bf96\" menu_item_active_color=\"#a6bf96\" advanced_media_query=\"on\" advanced_media_query_direction=\"below\" advanced_media_query_width=\"1115px\" _builder_version=\"3.15\" menu_item_font=\"Tajawal|200|||||||\" menu_item_font_size=\"22px\" menu_item_letter_spacing=\"2\" custom_margin=\"10px|||\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\" custom_css_menu_item_anchor=\"text-decoration:none;\"][/et_pb_mhmm_inline_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"85%\" max_width=\"85%\" module_alignment=\"center\" custom_padding=\"0|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"85%\" column_structure=\"1_3,2_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" module_class=\"logomobile\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" module_alignment=\"center\" custom_padding=\"15%|||\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"11%|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_mhmm_menu menu=\"main\" menu_style=\"full\" menu_button_color=\"#a6bf96\" menu_button_hover_color=\"#575759\" menu_close_button_color=\"#575759\" menu_close_button_hover_color=\"#a6bf96\" menu_button_style=\"square\" menu_button_alignment=\"right\" menu_item_color=\"#ffffff\" menu_item_background_color=\"rgba(166,191,150,0.81)\" advanced_media_query=\"on\" advanced_media_query_direction=\"above\" advanced_media_query_width=\"1115px\" module_class=\"mobiletop\" _builder_version=\"3.10.1\" menu_item_font=\"Tajawal||||||||\" menu_item_text_align=\"center\" menu_item_font_size=\"12px\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\"][/et_pb_mhmm_menu][et_pb_stop_stacking _builder_version=\"3.10.1\"][/et_pb_stop_stacking][et_pb_code]<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Large screens (1405px and above) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1405px ) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 200;<!-- [et_pb_line_break_holder] --> font-size: 22px;<!-- [et_pb_line_break_holder] --> letter-spacing: 2px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 20px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 20px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Laptops & Desktops (1115-1405px) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1115px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 300;<!-- [et_pb_line_break_holder] --> font-size: 20px;<!-- [et_pb_line_break_holder] --> letter-spacing: 1px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 10px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 10px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/*Tablets (0 - 1100px) */<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 1114px) and (min-width:786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 55%;<!-- [et_pb_line_break_holder] --> width: 31%;<!-- [et_pb_line_break_holder] --> top: 14%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96cf !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full .menu-button-close {<!-- [et_pb_line_break_holder] --> right: 7.5%;<!-- [et_pb_line_break_holder] --> top: 10.5%;<!-- [et_pb_line_break_holder] --> padding:14px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 20%;<!-- [et_pb_line_break_holder] --> width: 60%;<!-- [et_pb_line_break_holder] --> top: 10%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96e6 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mhmm-menu-active .et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> opacity: 1;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> overflow-y: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-button-close:before, .et_pb_mhmm_menu_0 .menu-button-close:after, .et_pb_mhmm_menu_0 .menu-button-close div {<!-- [et_pb_line_break_holder] --> background-color: #57575900 !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','MainMenu_2','','publish','closed','closed','','mainmenu_2','','','2020-01-18 09:54:02','2020-01-18 07:54:02','',0,'https://www.stadsig.co.za/et_pb_layout/mainmenu_2/',0,'et_pb_layout','',0),(215056,1,'2018-07-19 14:25:58','2018-07-19 12:25:58','','Stadsig_breathe','','inherit','open','closed','','stadsig_breathe','','','2018-09-14 20:54:15','2018-09-14 18:54:15','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_breathe.png',0,'attachment','image/png',0),(215058,1,'2018-07-19 14:26:31','2018-07-19 12:26:31','','Stadsig_aromas','','inherit','open','closed','','stadsig_aromas','','','2018-09-14 20:55:17','2018-09-14 18:55:17','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_aromas.png',0,'attachment','image/png',0),(215059,1,'2018-07-19 14:27:01','2018-07-19 12:27:01','','Stadsig_sentinels','','inherit','open','closed','','stadsig_sentinels','','','2018-09-14 20:55:48','2018-09-14 18:55:48','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_sentinels.png',0,'attachment','image/png',0),(215060,1,'2018-07-19 14:27:28','2018-07-19 12:27:28','','Stadsig_savour','','inherit','open','closed','','stadsig_savour','','','2018-09-14 20:56:16','2018-09-14 18:56:16','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_savour.png',0,'attachment','image/png',0),(215061,1,'2018-07-19 14:28:02','2018-07-19 12:28:02','','Stadsig_nature','','inherit','open','closed','','stadsig_nature','','','2018-09-14 20:56:47','2018-09-14 18:56:47','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_nature.png',0,'attachment','image/png',0),(215071,1,'2018-07-19 14:35:49','2018-07-19 12:35:49','','Stadsig_SS','','inherit','open','closed','','stadsig_ss','','','2018-09-14 21:01:26','2018-09-14 19:01:26','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png',0,'attachment','image/png',0),(215072,1,'2018-07-19 14:36:27','2018-07-19 12:36:27','','Stadsig_copyright','','inherit','open','closed','','stadsig_copyright','','','2018-07-19 14:36:27','2018-07-19 12:36:27','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_copyright.png',0,'attachment','image/png',0),(215151,1,'2018-07-20 12:57:12','2018-07-20 10:57:12','','Stadsig_PamGoldingLogo','','inherit','open','closed','','stadsig_pamgoldinglogo-2','','','2018-09-14 20:59:37','2018-09-14 18:59:37','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png',0,'attachment','image/png',0),(215152,1,'2018-07-20 12:57:37','2018-07-20 10:57:37','','Stadsig_AtvantageLogo','','inherit','open','closed','','stadsig_atvantagelogo-2','','','2018-09-14 21:00:20','2018-09-14 19:00:20','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png',0,'attachment','image/png',0),(215154,1,'2018-07-20 12:58:04','2018-07-20 10:58:04','','Stadsig_DMLogo','','inherit','open','closed','','stadsig_dmlogo-2','','','2018-07-20 12:58:04','2018-07-20 10:58:04','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png',0,'attachment','image/png',0),(223296,1,'2018-07-25 11:25:27','2018-07-25 09:25:27','','Stadsig_DMLogo_Atvatage','','inherit','open','closed','','stadsig_dmlogo_atvatage','','','2018-07-25 11:25:27','2018-07-25 09:25:27','',58,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png',0,'attachment','image/png',0),(223310,1,'2018-07-25 13:43:01','2018-07-25 11:43:01','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" collapsed=\"off\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Bottom Footer - Desktop','','publish','closed','closed','','bottom-footer-desktop','','','2020-01-15 14:57:39','2020-01-15 12:57:39','',0,'https://www.stadsig.co.za/et_pb_layout/bottom-footer-desktop/',0,'et_pb_layout','',0),(223311,1,'2018-07-25 13:43:32','2018-07-25 11:43:32','[et_pb_section bb_built=\"1\" admin_label=\"Bottom Footer - Tablet\" disabled_on=\"on|off|on\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" disabled=\"off\" module_class=\"bottom-tablet\" prev_background_color=\"#000000\" collapsed=\"on\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" template_type=\"section\"][et_pb_row admin_label=\"Bottom Footer - Phone\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"15px|0px|11px|0px|false|false\" _builder_version=\"3.10.1\" width=\"80%\" max_width=\"1080px\"][et_pb_column type=\"4_4\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text _builder_version=\"3.15\" text_orientation=\"left\"]\n\n</p>\n<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Bottom Footer - Tablet','','publish','closed','closed','','bottom-footer-tablet','','','2019-10-10 12:06:54','2019-10-10 10:06:54','',0,'https://www.stadsig.co.za/et_pb_layout/bottom-footer-tablet/',0,'et_pb_layout','',0),(223312,1,'2018-07-25 13:43:59','2018-07-25 11:43:59','[et_pb_section bb_built=\"1\" admin_label=\"Bottom Footer - Phone\" disabled_on=\"off|on|on\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" collapsed=\"on\" prev_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" template_type=\"section\"][et_pb_row admin_label=\"Bottom Footer - Phone\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"15px|0px|11px|0px|false|false\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.15\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" text_orientation=\"left\"]\n\n<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Bottom Footer - Phone','','publish','closed','closed','','bottom-footer-phone','','','2019-10-10 12:06:54','2019-10-10 10:06:54','',0,'https://www.stadsig.co.za/et_pb_layout/bottom-footer-phone/',0,'et_pb_layout','',0),(223313,1,'2018-07-25 13:44:38','2018-07-25 11:44:38','[et_pb_section bb_built=\"1\" admin_label=\"Footer - Desktop\" disabled_on=\"on|off|off\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" collapsed=\"off\" prev_background_color=\"#000000\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" template_type=\"section\"][et_pb_row admin_label=\"Footer - Desktop\" column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"40px|0px|0|0px|false|false\" make_equal=\"on\" disabled_on=\"on|off|off\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.25.3\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" text_text_color=\"#232323\" text_orientation=\"left\"]\n\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>\n\n[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Pam Golding\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width=\"80%\" /][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Atvantage\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\" /][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Dennis Moss\" src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Footer - Desktop','','publish','closed','closed','','footer-desktop','','','2019-10-10 12:06:52','2019-10-10 10:06:52','',0,'https://www.stadsig.co.za/et_pb_layout/footer-desktop/',0,'et_pb_layout','',0),(223314,1,'2018-07-25 13:45:06','2018-07-25 11:45:06','[et_pb_section bb_built=\"1\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" disabled_on=\"on|on|on\" collapsed=\"on\" prev_background_color=\"#000000\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" template_type=\"section\"][et_pb_row admin_label=\"Footer - Tablet\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.15\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]\n\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>\n\n[/et_pb_text][et_pb_image admin_label=\"Pam Golding\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n<p> </p>\n\n[/et_pb_image][et_pb_image admin_label=\"Pam Golding\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" disabled_on=\"off||\"]\n\n<p> </p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Footer - Tablet\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\" disabled_on=\"on|on|on\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Atvantage\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]\n\n<p> </p>\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Dennis Moss\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n<p> </p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Footer - Tablet','','publish','closed','closed','','footer-tablet','','','2019-10-10 12:06:52','2019-10-10 10:06:52','',0,'https://www.stadsig.co.za/et_pb_layout/footer-tablet/',0,'et_pb_layout','',0),(223315,1,'2018-07-25 13:45:39','2018-07-25 11:45:39','[et_pb_section bb_built=\"1\" admin_label=\"Footer - Phone\" disabled_on=\"off|on|on\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" locked=\"off\" disabled=\"off\" collapsed=\"off\" prev_background_color=\"#000000\" next_background_color=\"#a6bf96\" module_class=\"footer-phone\" inner_width=\"auto\" inner_max_width=\"1080px\" template_type=\"section\"][et_pb_row admin_label=\"Footer - Phobe\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.10.1\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" width=\"74%\" max_width=\"74%\"][et_pb_column type=\"4_4\" custom_padding__hover=\"|||\" custom_padding=\"22px|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.15\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" text_orientation=\"left\"]\n\n</p>\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>\n<p>\n\n[/et_pb_text][et_pb_image admin_label=\"Pam Golding\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" _builder_version=\"3.15\" align_last_edited=\"on|desktop\" align_tablet=\"center\"]\n\n</p>\n<p> </p>\n<p>\n\n[/et_pb_image][et_pb_image admin_label=\"Atvantage\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" align=\"center\" _builder_version=\"3.15\" module_alignment=\"center\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align_last_edited=\"on|desktop\" align_tablet=\"center\"]\n\n</p>\n<p> </p>\n<p>\n\n[/et_pb_image][et_pb_image admin_label=\"Dennis Moss\" src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" align=\"center\" _builder_version=\"3.15\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align_last_edited=\"on|desktop\" align_tablet=\"center\"]\n\n</p>\n<p> </p>\n<p>\n\n[/et_pb_image][et_pb_code _builder_version=\"3.15\"]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Footer - Phone','','publish','closed','closed','','footer-phone','','','2019-10-10 12:06:52','2019-10-10 10:06:52','',0,'https://www.stadsig.co.za/et_pb_layout/footer-phone/',0,'et_pb_layout','',0),(223327,1,'2018-07-25 13:52:00','2018-07-25 11:52:00','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" template_type=\"section\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Desktop/Tablet','','publish','closed','closed','','contact-desktop-tablet','','','2020-01-14 10:27:46','2020-01-14 08:27:46','',0,'https://www.stadsig.co.za/et_pb_layout/contact-desktop-tablet/',0,'et_pb_layout','',0),(223328,1,'2018-07-25 13:52:28','2018-07-25 11:52:28','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" template_type=\"section\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" hover_enabled=\"0\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Phone','','publish','closed','closed','','contact-phone','','','2020-01-14 12:07:06','2020-01-14 10:07:06','',0,'https://www.stadsig.co.za/et_pb_layout/contact-phone/',0,'et_pb_layout','',0),(223333,1,'2018-07-25 13:58:55','2018-07-25 11:58:55','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_Area.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.15\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaLifestyle_header_Mobile.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||87px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22.3\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_sentinels.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"elevate your senses\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">silence of the sentinels</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.22.3\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||59px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"|8%||8%\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">When it’s time to relax, the Winelands region offers a lifetime’s worth of historic wineries, gourmet restaurants and outdoor activities between its vineyard-clad mountains. Driving north from Stadsig, you cross the nearby Bainskloof Pass to mountain-ringed Tulbagh or head straight up Route 44 to Riebeek-Kasteel and the open skies of the Swartland. Wellington also offers numerous activities in the immediate surroundings, including hiking and mountain biking trails, horse riding, and even game drives at Bontebok Ridge Reserve. If you’re feeling adventurous, hike the kloofs of rugged Limietberg Nature Reserve to swim in rock pools and discover Khoisan cave paintings. Then again, Stadsig’s scenic location at the foot of Groenberg mountain makes sitting on the stoep a tempting option, perhaps sipping a wine from the picturesque Bovlei Valley on the estate’s doorstep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.22.3\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_map-1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaThumb1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaThumb2.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaThumb3.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','the area','','publish','closed','closed','','the-area','','','2020-03-05 12:06:06','2020-03-05 10:06:06','',0,'https://www.stadsig.co.za/?page_id=223333',0,'page','',0),(223340,1,'2018-07-25 14:09:02','2018-07-25 12:09:02','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_EstateOverview.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage2.jpg\" background_size=\"contain\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0||122px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22.3\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_breathe.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"room to breathe\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">room to breathe</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.22.3\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"|8%||8%\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">The town centre’s shops and schools are just a few minutes’ drive away, but out here, where the road rises towards the famous Bainskloof Pass, Stadsig’s white garden walls, trellises and indigenous flowers enjoy a rejuvenating environment of birdsong and fresh country air. Reached through garden gates, the open-plan interiors bring contemporary aesthetics and conveniences to Stadsig’s bucolic setting. Features include tiled or carpeted floors, Bosch built-in appliances, Hansgrohe brassware, fireplaces, and easy access to stoeps overlooking landscaped gardens of fynbos and olive trees. The two- and three-bedroom homes are available in cool or warm finishes, with numerous layouts and add-ons also on offer. Important practical details, such as the electrified perimeter security wall and fencing, guard house and access control, have all been taken care of, allowing you to concentrate on expressing your taste and planning your family’s future.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"23px||3px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0||29px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|0px||0px\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on||\" _builder_version=\"3.27.4\" text_font=\"Tajawal|500|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"right\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|2%||\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_RegionalLocalLocation.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">regional &amp; local location</span></a><span style=\"color: #ffffff;\">_____</span><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_SDP_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">master site development plan</span></a><span style=\"color: #ffffff;\">_____</span><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_UnitTypeAllocation_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">unit allocation plan</span></a><span style=\"color: #ffffff;\">_____</span><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_SubdivisionPhasing_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">sub-division &amp; phasing plan</span></a></p>[/et_pb_text][et_pb_text disabled_on=\"|on|on\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"right\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|2%||\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_RegionalLocalLocation.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline;\">regional &amp; local location</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_MasterSDP.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline;\">master SDP</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnitAllocationPlan.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline;\">unit allocation plan</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SubDPhasing_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline;\">sub-division &amp; phasing plan</span></a></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_estateOverviewMap.jpg\" custom_margin=\"||36px|\" custom_padding=\"0px||0||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0|0px|false|false\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider color=\"rgba(46,163,242,0)\" _builder_version=\"3.15\" custom_margin=\"|||\" custom_padding=\"22%||22%||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" custom_padding=\"54px|0px|54px|0px|false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage2.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage3.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','estate overview','','publish','closed','closed','','estate-overview','','','2020-03-05 12:08:46','2020-03-05 10:08:46','',0,'https://www.stadsig.co.za/?page_id=223340',0,'page','',0),(223346,1,'2018-07-25 14:16:46','2018-07-25 12:16:46','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - DesktopTablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_HousePlans.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" disabled_on=\"off|on|on\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_HousePlans_header_Mobile.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"35px||114px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22.3\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_strelitzia.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\" max_width=\"9%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"your taste manifested\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">harmonious cape homes</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"on|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||0||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"60%\" max_width=\"60%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"60%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs module_class=\"equal-tabs\" _builder_version=\"4.1\" body_font=\"||||||||\" custom_margin=\"|0px||0px\" custom_padding=\"|0px||0px\" border_width_all=\"0px\"][et_pb_tab title=\"unit 1\" _builder_version=\"4.1\" body_font=\"||||||||\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 1</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-226143 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit1_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></p>[/et_pb_tab][et_pb_tab title=\"unit 2\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 2</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p><img class=\"alignnone wp-image-226145 size-full\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit2_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></p>[/et_pb_tab][et_pb_tab title=\"unit 3\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 3</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226147 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit3_full.jpg\" alt=\"\" width=\"1298\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 4\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 4</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 156,9m<sup>2</sup> | OUTSIDE COVERED AREA 23,9m<sup>2</sup> | TOTAL 180,8m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226149 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit4_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 5\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 5</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 160m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 184m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226151 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit5_full.jpg\" alt=\"\" width=\"1297\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 6\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 6</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 162,8m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 186,8m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226153 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit6_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 7\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 7</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 164,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 188,3m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226155 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit7_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 8\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 8</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 166,1m<sup>2</sup> | OUTSIDE COVERED AREA 25,5m<sup>2</sup> | TOTAL 191,6m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226157 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit8_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 9\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 9</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 185,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 209,3m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226159 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit9_full.jpg\" alt=\"\" width=\"1298\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 10\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 10</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 210,4m<sup>2</sup> | OUTSIDE COVERED AREA 23,5m<sup>2</sup> | TOTAL 233,9m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226161 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit10_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 11\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 11</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 275,7m<sup>2</sup> | OUTSIDE COVERED AREA 22,7m<sup>2</sup> | TOTAL 298,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226163 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit11_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][/et_pb_tabs][et_pb_code]<style><!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 9%; /*change width of tabs here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media screen and (max-width: 768px){ /*change device breakpoint here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 100%; <!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->/*-------Tab Colors ----------------*/<!-- [et_pb_line_break_holder] -->li.et_pb_tab_0 {<!-- [et_pb_line_break_holder] --> background-color: #B9A5C6;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_1 {<!-- [et_pb_line_break_holder] --> background-color: #FDE9CF;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_2 {<!-- [et_pb_line_break_holder] --> background-color: #FBA7B2;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_3 {<!-- [et_pb_line_break_holder] --> background-color: #B2FA8E;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_4 {<!-- [et_pb_line_break_holder] --> background-color: #F8D2F9;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_5 {<!-- [et_pb_line_break_holder] --> background-color: #BAE3BC;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_6{<!-- [et_pb_line_break_holder] --> background-color: #A7C9FB;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_7 {<!-- [et_pb_line_break_holder] --> background-color: #FBBC6A;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_8 {<!-- [et_pb_line_break_holder] --> background-color: #BDFEFA;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_9 {<!-- [et_pb_line_break_holder] --> background-color: #F2F2F2;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_10 {<!-- [et_pb_line_break_holder] --> background-color: #F8EA7C;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls:after {<!-- [et_pb_line_break_holder] --> display: block;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> z-index: 9;<!-- [et_pb_line_break_holder] --> top: -1px;<!-- [et_pb_line_break_holder] --> border-top: none;<!-- [et_pb_line_break_holder] --> content: \"\";<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] -->border-right: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls {<!-- [et_pb_line_break_holder] -->background-color: rgba(255,255,255,0) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tab {<!-- [et_pb_line_break_holder] --> padding: 24px 0px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|on|on\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"92%\" max_width=\"92%\" custom_padding=\"0px||0px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"92%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_toggle title=\"unit type 1\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#b9a5c6\" icon_color=\"#ffffff\" admin_label=\"Toggle 1\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 1</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p>\n<p><img class=\"wp-image-226144 size-full aligncenter\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit1_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 2\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fde9cf\" icon_color=\"#ffffff\" admin_label=\"Toggle 2\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 2</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226146 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit2_mobile.jpg\" alt=\"\" width=\"573\" height=\"388\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 3\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fba7b2\" icon_color=\"#ffffff\" admin_label=\"Toggle 3\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 3</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226148 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit3_mobile.jpg\" alt=\"\" width=\"558\" height=\"403\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 4\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#b2fa8e\" icon_color=\"#ffffff\" admin_label=\"Toggle 4\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 4</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 156,9m<sup>2</sup> | OUTSIDE COVERED AREA 23,9m<sup>2</sup> | TOTAL 180,8m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226150 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit4_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 5\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f8d2f9\" icon_color=\"#ffffff\" admin_label=\"Toggle 5\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 5</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 160m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 184m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226152 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit5_mobile.jpg\" alt=\"\" width=\"513\" height=\"389\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 6\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#bae3bc\" icon_color=\"#ffffff\" admin_label=\"Toggle 6\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 6</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 162,8m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 186,8m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226154 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit6_mobile.jpg\" alt=\"\" width=\"558\" height=\"403\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 7\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#a7c9fb\" icon_color=\"#ffffff\" admin_label=\"Toggle 7\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 7</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 164,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 188,3m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226156 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit7_mobile.jpg\" alt=\"\" width=\"581\" height=\"419\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 8\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fbbc6a\" icon_color=\"#ffffff\" admin_label=\"Toggle 8\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 8</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet</p>\n<p style=\"text-align: center;\">FLOOR AREA 166,1m<sup>2</sup> | OUTSIDE COVERED AREA 25,5m<sup>2</sup> | TOTAL 191,6m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226158 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit8_mobile.jpg\" alt=\"\" width=\"626\" height=\"372\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 9\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#bdfefa\" icon_color=\"#ffffff\" admin_label=\"Toggle 9\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 9</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 185,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 209,3m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226160 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit9_mobile.jpg\" alt=\"\" width=\"568\" height=\"401\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 10\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f2f2f2\" icon_color=\"#ffffff\" admin_label=\"Toggle 10\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 10</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 210,4m<sup>2</sup> | OUTSIDE COVERED AREA 23,5m<sup>2</sup> | TOTAL 233,9m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226162 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit10_mobile.jpg\" alt=\"\" width=\"576\" height=\"403\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 11\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f8ea7c\" icon_color=\"#ffffff\" admin_label=\"Toggle 11\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 11</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 275,7m<sup>2</sup> | OUTSIDE COVERED AREA 22,7m<sup>2</sup> | TOTAL 298,4m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226164 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit11_mobile.jpg\" alt=\"\" width=\"548\" height=\"389\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_code]<style><!-- [et_pb_line_break_holder] -->/**************************** toggle custom 3 **************************/<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle {<!-- [et_pb_line_break_holder] --> border: none;<!-- [et_pb_line_break_holder] --> transition: 0.4s<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3 .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> font-size: 30px !important ;<!-- [et_pb_line_break_holder] --> content: \"3\" !important;<!-- [et_pb_line_break_holder] --> -webkit-transition: 0.3s;<!-- [et_pb_line_break_holder] --> transition: 0.3s;<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle_open .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> color: #939692;<!-- [et_pb_line_break_holder] --> -ms-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> -webkit-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->.et_pb_accordion .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_toggle .et_pb_toggle_title, .et_pb_toggle h5.et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title {<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> padding: 50px;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][et_pb_divider color=\"rgba(46,163,242,0)\" _builder_version=\"3.15\" height=\"25px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" _builder_version=\"3.22.3\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" width=\"60%\" max_width=\"60%\" module_alignment=\"center\" custom_padding=\"27px|0px|2px|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"60%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"14px\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\"]<h3 style=\"text-align: center;\">download documents</h3>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" max_width=\"80%\" module_alignment=\"center\" custom_padding=\"21px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on||\" _builder_version=\"3.27.4\" text_font=\"Tajawal|500|||||||\" text_font_size=\"15px\"]<p style=\"text-align: center;\"><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_GeneralSpecifications_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">general specifications</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">interior finishes</a><span style=\"color: #ffffff;\">_____</span><a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HOA</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">optional extras</a><span style=\"color: #ffffff;\">______</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigPricelistJuly2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">price list</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_1octFinal.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">deed of sale</a> <span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">building agreement </a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">house plans 1-11</a></p>\r[/et_pb_text][et_pb_text disabled_on=\"off|on|on\" _builder_version=\"3.27.4\" text_font=\"Tajawal|200|||||||\" text_font_size=\"15px\" custom_padding=\"15px|||\"]<p style=\"text-align: center;\"><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_GeneralSpecifications_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">general specifications</a><span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">interior finishes</a><span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HOA</a><span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">optional extras</a><span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_SalesPrices_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">price list</a><span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_1octFinal.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">deed of sale</a> <span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">building agreement </a>\r\n<a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">house plans 1-11</a></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Explore Story Section\" _builder_version=\"3.22.3\" custom_padding=\"1px||15px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"35px|||\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"|8%||8%\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Pitched roofs, neutral tones, plastered walls and vertically proportioned windows are found throughout Stadsig’s freestanding units, which are all in Cape Vernacular style, that uniquely South African fusion of Cape Dutch and contemporary elements. Core buildings are clearly articulated in the traditional ‘letter of the alphabet’ form developed centuries ago by the Dutch, balanced by single-storey abutments behind parapet walls. Each house is carefully placed and oriented to maximise views, privacy and natural light, while offering protection from prevailing winds. Roof overhangs, pergolas with deciduous planting and functional shutters are attractive architectural responses to the hot local climate. The considered combination of covered parking bays with garages set back behind screening pergolas, low garden walls and landscaping elements contribute to qualitative internal streets and squares. Homes cater to modern tastes, with open-plan kitchens and spacious covered entertainment areas with built-in braais - flexibly designed to allow optional stacking doors – all opening onto private gardens. Scale, proportion, detailing and colours create a harmonious and attractive composition, set in a secure family-friendly environment with indigenous planting and mature olive trees.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage4.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage5.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage6.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','house plans','','publish','closed','closed','','house-plans','','','2020-03-05 12:11:08','2020-03-05 10:11:08','',0,'https://www.stadsig.co.za/?page_id=223346',0,'page','',0),(223349,1,'2018-07-25 14:18:36','2018-07-25 12:18:36','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"off|desktop\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_Developer.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"414px||456px||false|false\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Page4_Main_Mobile.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||86px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||37px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"the developer\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">the developer</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.22.3\" custom_padding=\"1px||23px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">ATVANTAGE is a multi-faceted group of build environment professional services companies. We are an experienced, dynamic and well-qualified team with a 23 year proven local and international track record in the provision of services to the residential, retail, commercial, industrial, government and leisure fields. Ours is a cause, not a service.</p>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|33%||33%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"font-size: 17px; font-weight: 400;\" href=\"https://www.atvantage.co.za\" target=\"_blank\" rel=\"noopener noreferrer\">w w w . a t v a n t a g e . c o . z a</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" _builder_version=\"3.22.3\" custom_padding=\"23px|0px|0|0px|false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.25\" width=\"70%\" max_width=\"70%\" module_alignment=\"center\" custom_padding=\"18px|0px|27px|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"70%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_developer1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_developer2.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_developer3.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" disabled_on=\"off|on|on\" _builder_version=\"3.25\" width=\"70%\" max_width=\"70%\" module_alignment=\"center\" custom_padding=\"18px|0px|27px|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"70%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_developer1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_padding=\"5px||5px||true\"]&nbsp;\r[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_developer2.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_padding=\"5px||5px||true\"]&nbsp;\r[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_developer3.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_padding=\"5px||5px||true\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"28px||27px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"the developer\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">the designers</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section - divider - All devices\" _builder_version=\"3.22.3\" custom_padding=\"1px||0||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||46px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Dennis Moss Partnership is a multi-disciplinary practice established in 1983 and based in Stellenbosch, South Africa. The office integrates the disciplines of architecture, urban design, regional and environmental planning and landscape architecture as one functional entity, with its focus on promoting and achieving the principles of sustainable development. Each project is viewed as part of a greater system, where support may be required on various scales ranging from the international sphere to the site specific level. Projects range from complex integrated development planning strategies to award-winning residential estates, commercial and mixed-use developments, golf estates, hotels, office parks and public housing.</p>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|33%||33%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a target=\"_blank\" rel=\"noopener noreferrer\">w w w . d m p . c o . z a</a></span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.22.3\" custom_padding=\"0|0px|17px|0px|false|false\" collapsed=\"on\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"0|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>\r[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','the team','','publish','closed','closed','','the-team','','','2020-03-05 12:13:20','2020-03-05 10:13:20','',0,'https://www.stadsig.co.za/?page_id=223349',0,'page','',0),(223355,1,'2018-07-25 14:29:53','2018-07-25 12:29:53','[et_pb_section fb_built=\"1\" admin_label=\"Section - divider - All devices\" _builder_version=\"3.22\" custom_margin=\"0px||0px|\" custom_padding=\"0||0||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" admin_label=\"Divider - Green\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.1\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"3px|0px|3px|0px|true|false\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#a6bf96\" _builder_version=\"3.26.6\"]&nbsp;\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22\" custom_padding=\"16px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_savour.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]&nbsp;\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22\" custom_padding=\"17px||52px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"gallery\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#575759\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">gallery</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.22\" custom_padding=\"1px|10%|24px|10%|false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|200|||||||\" text_font_size=\"23px\"]<p style=\"text-align: center;\">artist\'s impressions</p>\r\n[/et_pb_text][et_pb_slider show_pagination=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" disabled_on=\"on|on|on\" module_id=\"overlay_unique_id_225937\" _builder_version=\"4.1\" custom_padding=\"26%||26%||true\" auto=\"on\" auto_speed=\"7500\" z_index_tablet=\"500\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength_tablet=\"1px\" button_text_shadow_horizontal_length_tablet=\"0px\" button_text_shadow_vertical_length_tablet=\"0px\" button_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" box_shadow_horizontal_button_tablet=\"0px\" box_shadow_vertical_button_tablet=\"0px\" box_shadow_blur_button_tablet=\"40px\" box_shadow_spread_button_tablet=\"0px\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength_tablet=\"1px\" disabled=\"on\" global_module=\"225962\" saved_tabs=\"all\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" background_color_gradient_direction_tablet=\"180deg\" background_color_gradient_direction_phone=\"180deg\" background_color_gradient_start_position_tablet=\"0%\" background_color_gradient_start_position_phone=\"0%\" background_color_gradient_end_position_tablet=\"100%\" background_color_gradient_end_position_phone=\"100%\" child_filter_hue_rotate_tablet=\"0deg\" child_filter_hue_rotate_phone=\"0deg\" child_filter_saturate_tablet=\"100%\" child_filter_saturate_phone=\"100%\" child_filter_brightness_tablet=\"100%\" child_filter_brightness_phone=\"100%\" child_filter_contrast_tablet=\"100%\" child_filter_contrast_phone=\"100%\" child_filter_invert_tablet=\"0%\" child_filter_invert_phone=\"0%\" child_filter_sepia_tablet=\"0%\" child_filter_sepia_phone=\"0%\" child_filter_opacity_tablet=\"100%\" child_filter_opacity_phone=\"100%\" child_filter_blur_tablet=\"0px\" child_filter_blur_phone=\"0px\" hover_transition_duration_tablet=\"300ms\" hover_transition_duration_phone=\"300ms\" hover_transition_delay_tablet=\"0ms\" hover_transition_delay_phone=\"0ms\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_horizontal_length_phone=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_vertical_length_phone=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_blur_strength_phone=\"1px\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_horizontal_length_phone=\"0px\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_vertical_length_phone=\"0px\" body_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_blur_strength_phone=\"1px\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_horizontal_length_phone=\"0px\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_vertical_length_phone=\"0px\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_blur_strength_phone=\"1px\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_horizontal_length_phone=\"0px\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_vertical_length_phone=\"0px\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_blur_strength_phone=\"1px\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_horizontal_length_phone=\"0px\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_vertical_length_phone=\"0px\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_blur_strength_phone=\"1px\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_horizontal_length_phone=\"0px\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_vertical_length_phone=\"0px\" body_quote_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_blur_strength_phone=\"1px\" button_text_shadow_horizontal_length_tablet=\"0px\" button_text_shadow_horizontal_length_phone=\"0px\" button_text_shadow_vertical_length_tablet=\"0px\" button_text_shadow_vertical_length_phone=\"0px\" button_text_shadow_blur_strength_tablet=\"1px\" button_text_shadow_blur_strength_phone=\"1px\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_horizontal_image_phone=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_vertical_image_phone=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_blur_image_phone=\"40px\" box_shadow_spread_image_tablet=\"0px\" box_shadow_spread_image_phone=\"0px\" box_shadow_horizontal_button_tablet=\"0px\" box_shadow_horizontal_button_phone=\"0px\" box_shadow_vertical_button_tablet=\"0px\" box_shadow_vertical_button_phone=\"0px\" box_shadow_blur_button_tablet=\"40px\" box_shadow_blur_button_phone=\"40px\" box_shadow_spread_button_tablet=\"0px\" box_shadow_spread_button_phone=\"0px\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_horizontal_length_phone=\"0px\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_vertical_length_phone=\"0px\" text_shadow_blur_strength_tablet=\"1px\" text_shadow_blur_strength_phone=\"1px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_2.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_3.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_4.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_5.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_6.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_7.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][/et_pb_slider][et_pb_gallery gallery_ids=\"226103,226102,226101,226100,226099,226098,226097\" admin_label=\"Artist Gallery\" _builder_version=\"4.1\" hover_enabled=\"0\" fullwidth=\"on\" width=\"100%\" max_width=\"100%\" gallery_orderby=\"rand\"][/et_pb_gallery][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|200|||||||\" text_font_size=\"23px\"]<p style=\"text-align: center;\">the estate</p>\r\n[/et_pb_text][et_pb_slider show_pagination=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" disabled_on=\"on|on|on\" module_id=\"overlay_unique_id_225937\" _builder_version=\"4.1\" custom_padding=\"26%||26%||true\" auto=\"on\" auto_speed=\"7500\" z_index_tablet=\"500\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength_tablet=\"1px\" button_text_shadow_horizontal_length_tablet=\"0px\" button_text_shadow_vertical_length_tablet=\"0px\" button_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" box_shadow_horizontal_button_tablet=\"0px\" box_shadow_vertical_button_tablet=\"0px\" box_shadow_blur_button_tablet=\"40px\" box_shadow_spread_button_tablet=\"0px\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength_tablet=\"1px\" disabled=\"on\" global_module=\"225963\" saved_tabs=\"all\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_2.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_3.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_4.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_5.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_6.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_7.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_8.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_9.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_10.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_11.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_12.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_13.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_16-1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_14-1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_15-1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][/et_pb_slider][et_pb_gallery gallery_ids=\"226119,226118,226117,226116,226115,226114,226113,226112,226111,226110,226109,226108,226107,226106,226105,226104\" admin_label=\"Estate Gallery\" _builder_version=\"4.1\" gallery_orderby=\"rand\" fullwidth=\"on\" width=\"100%\" max_width=\"100%\" hover_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" admin_label=\"Explore Story Section\" _builder_version=\"3.26.4\" custom_padding=\"1px|10%|24px|10%|false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Home_Video.mp4\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"3.26.4\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_galleryContactparalax.jpg\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"3.25\" module_alignment=\"center\" custom_padding=\"9.7%||9.7%||true|\" animation_style=\"fade\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" button_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r\n<p style=\"text-align: center;\">\r\n[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"]\r\n<p style=\"text-align: center;\">\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_galleryContactparalax.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r\n<p style=\"text-align: center;\">\r\n[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"]\r\n<p style=\"text-align: center;\">\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\r\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','gallery','','publish','closed','closed','','gallery','','','2020-01-17 09:20:03','2020-01-17 07:20:03','',0,'https://www.stadsig.co.za/?page_id=223355',0,'page','',0),(223363,1,'2018-07-25 14:35:41','2018-07-25 12:35:41','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_News.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"114px|0px|0|0px|false|false\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Page5_Main_1_Mobile.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"94px||54px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" custom_padding=\"7px|0px|54px|0px|false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_2_font_size=\"30px\"]<h2 style=\"text-align: center;\">latest news</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.25\" max_width=\"80%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_News1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_News2.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.25\" max_width=\"80%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" header_font=\"||||||||\" header_3_font=\"||||||||\"]<h3 style=\"text-align: center;\">STADSIG COUNTRY ESTATE SET<br />FOR IMMINENT REJUVENATION</h3>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"15px\" custom_padding=\"|10%||10%||true\" text_font_size_tablet=\"\" text_font_size_phone=\"\" text_font_size_last_edited=\"on|desktop\"]<p>The intrigue and disappointment surrounding the picturesque residential development of Stadsig in Wellington, has finally come to an end after many years of uncertainty. The further development of the estate has been taken over by ATVANTAGE, a multi-faceted group of built environment professional services and development companies.</p>[/et_pb_text][et_pb_button button_url=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PressArticle1.pdf\" url_new_window=\"on\" button_text=\"read more\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#a6bf96\" button_font=\"||||||||\" button_icon=\"%%20%%\" button_icon_color=\"#ffffff\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" locked=\"off\"]<h3 style=\"text-align: center;\">FURTHER DEVELOPMENT OF STADSIG \nCOUNTRY ESTATE ADVANCING POSITIVELY</h3>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"15px\" custom_padding=\"|10%||10%||true\" text_font_size_tablet=\"\" text_font_size_phone=\"\" text_font_size_last_edited=\"on|desktop\" locked=\"off\"]<p>The further development of the scenic residential Stadsig Country Estate is advancing positively since it was taken over by ATVANTAGE, a multi-faceted group of built environment professional services and development companies.<br /><br /></p>[/et_pb_text][et_pb_button button_url=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PressArticle2.pdf\" url_new_window=\"on\" button_text=\"read more\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#a6bf96\" button_font=\"||||||||\" button_icon=\"%%20%%\" button_icon_color=\"#ffffff\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','news','','publish','closed','closed','','news','','','2020-03-05 12:17:09','2020-03-05 10:17:09','',0,'https://www.stadsig.co.za/?page_id=223363',0,'page','',0),(223369,1,'2018-07-25 14:40:24','2018-07-25 12:40:24','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_Contact.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"623px|0px|0|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_contactHeaderMobile.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"126px||122px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.15\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22.3\" custom_padding=\"57px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_nature.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"in touch with nature\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">in touch with nature</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22.3\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\"][et_pb_row column_structure=\"2_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"3.25\" parallax=\"on\" parallax_method=\"off\" width=\"70%\" max_width=\"70%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"70%\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_css_main_element=\"max-height:200%;||height:150%;\" custom_padding__hover=\"|||\"][et_pb_code]<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3321.7665561255903!2d19.02167231580225!3d-33.63729441451314!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1dcd08c85e59e965%3A0x73d35e69c70026e0!2sStadsig+Estate!5e0!3m2!1sen!2sza!4v1540278951257\" width=\"850\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>[/et_pb_code][et_pb_map address=\"1987 Church St, Wellington, 7654, South Africa\" zoom_level=\"15\" address_lat=\"-33.63760531451644\" address_lng=\"19.020183425220466\" disabled_on=\"on|on|on\" _builder_version=\"3.17.1\" disabled=\"on\"][et_pb_map_pin title=\"Stadsig Estate\" pin_address=\"1987 Church St, Wellington, 7654, South Africa\" pin_address_lat=\"-33.6372615140971\" pin_address_lng=\"19.023757184130886\" _builder_version=\"3.17.1\"]1987 Church Street\r\nWellington\r\nWestern Cape\r[/et_pb_map_pin][/et_pb_map][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_css_main_element=\"text-align:center !important;\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">1987 Church St.\r\nWellington. 7654</p>\r[/et_pb_text][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] [/et_pb_text][et_pb_code]<html><!-- [et_pb_line_break_holder] --><div style=\"padding-left:17px;\"><!-- [et_pb_line_break_holder] -->[et_social_follow icon_style=\"darken\" icon_shape=\"rounded\" icons_location=\"top\" col_number=\"auto\" custom_colors=\"true\" bg_color=\"#a6bf96\" bg_color_hover=\"#ffffff\" icon_color=\"#ffffff\" icon_color_hover=\"#a6bf96\" outer_color=\"dark\" network_names=\"true\"]<!-- [et_pb_line_break_holder] --></div><!-- [et_pb_line_break_holder] --></html>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22.3\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"3.25\" parallax=\"on\" parallax_method=\"off\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"90%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_css_main_element=\"max-height:200%;||height:150%;\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Stadsig Private Contry Estate\r\n1987 Church Street\r\nWellington. 7654</p>\r\n<p style=\"text-align: center;\">[/et_pb_text][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"11px|34px|11px|34px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r\n<p style=\"text-align: center;\">[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"]</p>\r\n<p style=\"text-align: center;\">[/et_pb_text][et_pb_code]<html><!-- [et_pb_line_break_holder] --><div style=\"padding-left:35px;\"><!-- [et_pb_line_break_holder] -->[et_social_follow icon_style=\"darken\" icon_shape=\"rounded\" icons_location=\"top\" col_number=\"auto\" custom_colors=\"true\" bg_color=\"#a6bf96\" bg_color_hover=\"#ffffff\" icon_color=\"#ffffff\" icon_color_hover=\"#a6bf96\" outer_color=\"dark\" network_names=\"true\"]<!-- [et_pb_line_break_holder] --></div><!-- [et_pb_line_break_holder] --></html>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22.3\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" disabled=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_contactParalax1920.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r\n<p style=\"text-align: center;\">[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"]</p>\r\n<p style=\"text-align: center;\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','contact','','publish','closed','closed','','contact','','','2020-03-05 12:18:02','2020-03-05 10:18:02','',0,'https://www.stadsig.co.za/?page_id=223369',0,'page','',0),(223373,1,'2018-07-25 14:44:53','2018-07-25 12:44:53',' ','','','publish','closed','closed','','223373','','','2019-08-01 15:44:26','2019-08-01 13:44:26','',0,'https://www.stadsig.co.za/?p=223373',2,'nav_menu_item','',0),(223374,1,'2018-07-25 14:44:54','2018-07-25 12:44:54',' ','','','publish','closed','closed','','223374','','','2019-08-01 15:44:28','2019-08-01 13:44:28','',0,'https://www.stadsig.co.za/?p=223374',9,'nav_menu_item','',0),(223375,1,'2018-07-25 14:44:54','2018-07-25 12:44:54',' ','','','publish','closed','closed','','223375','','','2019-08-01 15:44:28','2019-08-01 13:44:28','',0,'https://www.stadsig.co.za/?p=223375',7,'nav_menu_item','',0),(223377,1,'2018-07-25 14:44:54','2018-07-25 12:44:54',' ','','','publish','closed','closed','','223377','','','2019-08-01 15:44:27','2019-08-01 13:44:27','',0,'https://www.stadsig.co.za/?p=223377',5,'nav_menu_item','',0),(223378,1,'2018-07-25 14:44:54','2018-07-25 12:44:54',' ','','','publish','closed','closed','','223378','','','2019-08-01 15:44:27','2019-08-01 13:44:27','',0,'https://www.stadsig.co.za/?p=223378',4,'nav_menu_item','',0),(223379,1,'2018-07-25 14:44:53','2018-07-25 12:44:53',' ','','','publish','closed','closed','','223379','','','2019-08-01 15:44:27','2019-08-01 13:44:27','',0,'https://www.stadsig.co.za/?p=223379',3,'nav_menu_item','',0),(223392,1,'2018-07-25 15:15:30','2018-07-25 13:15:30','','feather','','inherit','open','closed','','feather','','','2018-07-25 15:15:30','2018-07-25 13:15:30','',0,'https://www.stadsig.co.za/wp-content/uploads/feather.png',0,'attachment','image/png',0),(224113,1,'2018-07-26 09:51:07','2018-07-26 07:51:07','','Atvantage_developer','','inherit','open','closed','','atvantage_developer','','','2018-07-26 09:51:07','2018-07-26 07:51:07','',223349,'https://www.stadsig.co.za/wp-content/uploads/Atvantage_developer.png',0,'attachment','image/png',0),(224195,1,'2018-07-26 15:51:58','2018-07-26 13:51:58','','feather','','inherit','open','closed','','feather-2','','','2018-07-26 15:51:58','2018-07-26 13:51:58','',0,'https://www.stadsig.co.za/wp-content/uploads/feather-1.png',0,'attachment','image/png',0),(224227,1,'2018-07-27 13:37:50','2018-07-27 11:37:50','','frm_after_create_entry','https://hooks.zapier.com/hooks/standard/3477920/ea1fa827b0b64de38ae71989165a1a94/','publish','closed','closed','','frm_after_create_entry','','','2018-07-27 13:37:50','2018-07-27 11:37:50','',0,'https://www.stadsig.co.za/frm_api/frm_after_create_entry/',0,'frm_api','',0),(224241,1,'2018-08-02 09:35:22','2018-08-02 07:35:22','[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.11.1\" module_class=\"logbutton\"]\r\n\r\n[frm-login label_username=\"USERNAME\" label_password=\"PASSWORD\" label_remember=\"Remeber Me\" label_log_in=\"Login\" label_log_out=\"Logout\" slide=\"1\" remember=\"0\" show_labels=\"0\" username_placeholder=\"USERNAME\" password_placeholder=\"PASSWORD\" redirect=\"www.stadsig.co.za/regentries/\" class=\"frm_style_formidable-style-2 logbutton\"]\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Stadsigentries','','publish','closed','closed','','stadsigentries','','','2018-08-02 12:13:49','2018-08-02 10:13:49','',0,'https://www.stadsig.co.za/?page_id=224241',0,'page','',0),(224276,1,'2018-09-12 04:43:58','2018-09-12 02:43:58','','Stadsig_NewLogo','','inherit','open','closed','','stadsig_newlogo','','','2018-09-12 04:43:58','2018-09-12 02:43:58','',1463,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png',0,'attachment','image/png',0),(224288,1,'2018-09-12 05:16:54','2018-09-12 03:16:54','','DennisMoss_logo','','inherit','open','closed','','dennismoss_logo','','','2018-09-14 21:00:41','2018-09-14 19:00:41','',223313,'https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png',0,'attachment','image/png',0),(224305,1,'2018-09-12 06:28:11','2018-09-12 04:28:11','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"54px|0px|2px|0px|false|false\" next_background_color=\"#000000\"][et_pb_row _builder_version=\"3.0.48\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|7px|0px|false|false\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.14\" header_font_size=\"38px\" header_2_text_align=\"center\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" header_2_line_height=\"1.1em\" header_2_font=\"|||on|||||\"]\r\n<h2>stadsig country estate set for imminent rejuvenation</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"21px|0px|0px|0px|false|false\" prev_background_color=\"#000000\"][et_pb_row gutter_width=\"1\" _builder_version=\"3.10.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" use_custom_width=\"on\" width_unit=\"off\" use_custom_gutter=\"on\" make_equal=\"on\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax.jpg\" show_bottom_space=\"off\" align=\"center\" _builder_version=\"3.14\" max_width=\"80%\" module_alignment=\"center\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.14\" header_2_text_align=\"center\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" header_2_line_height=\"1.1em\" text_font=\"Tajawal|300|||||||\" text_font_size=\"16px\" text_letter_spacing=\"2px\"]\r\n\r\nThe intrigue and disappointment surrounding the picturesque residential development of Stadsig in Wellington, has finally come to an end after many years of uncertainty. The further development of the estate has been taken over by ATVANTAGE, a multi-faceted group of built environment professional services and development companies.\r\n\r\nSince the launch of Stadsig in 2012, the initial phases proceeded well until the liquidation of the building contractor in 2017. The stuttering attempt at business rescue that preceded the eventual liquidation, only served to further demoralise the residents of Stadsig and tarnish the reputation of the estate. For too long, the development lay unattended, a mere shadow of its true potential.\r\n\r\nATVANTAGE is set to re-ignite Stadsig and realise its full potential. “We took transfer of the property in June 2018 and have commenced with focused activities aimed at putting Stadsig firmly on the path to being the most sought after residential community in the greater Wellington winelands. We’re introducing improvements in urban and landscaping design, all with the objective of enhancing the village character of the estate and to create an environment of rest and relaxation for its residents,” says Paul Louw, Group Director at ATVANTAGE.\r\n\r\nThe construction of the new electrified perimeter security wall and fencing, together with the engagement of Thorburn Security Solutions will, for the first time, offer residents the peace of mind of a truly secured estate. Hessel Dijkstra, Group CEO, continues: “Infrastructure and services to future phases of the development will follow in due course. We’ll be offering prospective owners a selection of newly designed homes from Dennis Moss Partnership, esteemed Stellenbosch architects known for estates such as De Zalze, Welgevonden (Stellenbosch) and Eden Island (Seychelles).”\r\n\r\nStadsig Country Estate is located on the outskirts of Wellington, just off the R301, on the way to Bain’s Kloof Pass. Nestled under the majestic Hawequa mountains, the topography and orientation of the estate affords it panoramic vistas, as far as Tafelberg. “The prime location offers the best of both worlds – a tranquil setting amid rolling farmland, within easy reach of the town’s amenities. It’s also easily accessible to the rest of the Winelands and the Cape Town Metropole beyond,” Louw concludes.\r\n\r\nProspective homeowners in Stadsig can rest assured as ATVANTAGE comes with an impressive property track record and the experience and expertise to realise Stadsig’s full potential. With offices in Cape Town, Centurion, Nairobi (Kenya) and Mahé (Seychelles), the company has a wealth of experience driven by an experienced and dynamic team.\r\n\r\nFor further information on Stadsig Country Estate, visit www.atvantage.co.za, send an email to\r\ncrm@stadsig.co.za or call Johandre le Roux on +27 (83) 571 7279.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Stadsig Country Estate set for imminent Rejuvenation','The intrigue and disappointment surrounding the picturesque residential development of Stadsig in Wellington, has finally come to an end after many years of uncertainty. The further development of the estate has been taken over by ATVANTAGE, a multi-faceted...','publish','closed','closed','','advantage-are-the-new-developers-2','','','2018-09-12 10:52:18','2018-09-12 08:52:18','',0,'https://www.stadsig.co.za/?p=224305',0,'post','',0),(224537,1,'2018-09-13 14:50:43','2018-09-13 12:50:43','','Stadsig_strelitzia','','inherit','open','closed','','stadsig_strelitzia','','','2018-09-14 21:15:52','2018-09-14 19:15:52','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_strelitzia.png',0,'attachment','image/png',0),(224814,1,'2018-09-21 05:51:28','2018-09-21 03:51:28','','Stadsig_HousePlans_header_Mobile','','inherit','open','closed','','stadsig_houseplans_header_mobile','','','2018-09-21 05:51:28','2018-09-21 03:51:28','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_header_Mobile.jpg',0,'attachment','image/jpeg',0),(224820,1,'2018-09-21 06:07:41','2018-09-21 04:07:41','','Stadsig_AreaLifestyle_header_Mobile','','inherit','open','closed','','stadsig_arealifestyle_header_mobile','','','2018-09-21 06:07:41','2018-09-21 04:07:41','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_AreaLifestyle_header_Mobile.jpg',0,'attachment','image/jpeg',0),(224824,1,'2018-09-21 06:11:36','2018-09-21 04:11:36','','Stadsig_EstateOverview_header_Mobile','','inherit','open','closed','','stadsig_estateoverview_header_mobile','','','2018-09-21 06:11:36','2018-09-21 04:11:36','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_EstateOverview_header_Mobile.jpg',0,'attachment','image/jpeg',0),(224829,1,'2018-09-21 06:19:02','2018-09-21 04:19:02','','HomeCover_Mobile','','inherit','open','closed','','homecover_mobile','','','2018-09-21 06:19:02','2018-09-21 04:19:02','',0,'https://www.stadsig.co.za/wp-content/uploads/HomeCover_Mobile.jpg',0,'attachment','image/jpeg',0),(224832,1,'2018-09-21 06:25:44','2018-09-21 04:25:44','','Page4_Main_1_Mobile','','inherit','open','closed','','page4_main_1_mobile','','','2018-09-21 06:25:44','2018-09-21 04:25:44','',0,'https://www.stadsig.co.za/wp-content/uploads/Page4_Main_1_Mobile.jpg',0,'attachment','image/jpeg',0),(224835,1,'2018-09-21 06:34:47','2018-09-21 04:34:47','','Page5_Main_1_Mobile','','inherit','open','closed','','page5_main_1_mobile','','','2018-09-21 06:34:47','2018-09-21 04:34:47','',0,'https://www.stadsig.co.za/wp-content/uploads/Page5_Main_1_Mobile.jpg',0,'attachment','image/jpeg',0),(224842,1,'2018-09-21 06:56:14','2018-09-21 04:56:14','','Page6_Main_1_Mobile','','inherit','open','closed','','page6_main_1_mobile','','','2018-09-21 06:56:14','2018-09-21 04:56:14','',0,'https://www.stadsig.co.za/wp-content/uploads/Page6_Main_1_Mobile.jpg',0,'attachment','image/jpeg',0),(224901,1,'2018-09-21 10:35:31','2018-09-21 08:35:31','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.48\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.15\" text_font=\"Tajawal||||||||\" header_2_font=\"Tajawal|300|||||||\" header_2_text_align=\"center\" text_font_size=\"16px\" text_line_height=\"1.3em\"]<h2 style=\"text-align: center;\"><strong>Data Protection and Privacy Policy</strong></h2>\r\nStadsig Development Company (Pty) Ltd operates the website at www.stadsig.co.za. It is our policy to respect your privacy regarding any information that we may collect while operating this website.\r\n\r\n<strong>Consent</strong>\r\n\r\nBy providing your data to us, you explicitly agree to the processing of your data for the purposes mentioned hereinafter and to be legally bound by, and explicitly consent to, this data protection and privacy policy, as it may be amended from time to time. If you do not agree to this data protection and privacy policy or cannot form a legally binding contract, you are not permitted to provide us with any data.\r\n\r\n<strong>Data controller, data controller’s representative and Data Protection Officer</strong>\r\n\r\nJohandre le Roux, Client Relations Manager, Stadsig Development Company Pty Ltd\r\n\r\n<strong>Data collected and purposes of the collection:</strong>\r\n<p style=\"padding-left: 30px;\"><strong>Non-personal data</strong></p>\r\n<p style=\"padding-left: 30px;\">Like most website operators, Stadsig Development Company (Pty) Ltd collects from visitors on its website non-personal data of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site and the date and time of each visitor request. Our purposes in collecting such non-personal data are to optimize users’ experience of the websites and render them more user-friendly. From time to time, Atvantage may use or release non-personal data for general purposes, retaining the anonymity of the data, e.g., by publishing a report on trends in the usage of the website.</p>\r\n<p style=\"padding-left: 30px;\"><strong>Personal data</strong></p>\r\n<p style=\"padding-left: 30px;\">When interacting with this website you may be required to furnish certain personal data. Stadsig Development Company (Pty) Ltd will not collect and process more personal data than is necessary to fulfill the purposes for which personal data is collected and processed. The amount and type of personal data requested depends on the nature of the interaction.</p>\r\n<p style=\"padding-left: 30px;\"><strong>Legal and other purposes</strong>: Stadsig Development Company (Pty) Ltd may process personal data (a) to the extent necessary for compliance with a legal obligation, (b) to respond to requests from competent public and government authorities, (c) to perform a task carried out in the public interest, (d) to enforce this Data Protection and Privacy Policy and (e) to protect Stadsig Development Company (Pty) Ltd legitimate interests.</p>\r\nStadsig Development Company (Pty) Ltd will not rent or sell personal data to anyone and will ask your consent before using personal data for a purpose other than those set out in this Data Protection and Privacy Policy, subject to mandatory laws.\r\n\r\n<strong> </strong><strong>Requests</strong>\r\n\r\nYou have the right to access and update your personal data at any time by contacting the Data Protection Officer at <u>crm@stadsig.co.za</u>.\r\n\r\nIf requests are manifestly unfounded or excessive, Stadsig Development Company (Pty) Ltd reserves its right to either charge a reasonable fee taking into account the request or refuse to act on the request.\r\n\r\nWithout prejudice of non-personal data, Stadsig Development Company (Pty) Ltd and its Data Protection Officer may request the provision of additional information to confirm the identity of the data subject if they have reasonable doubts concerning the identity of the person making the request.\r\n\r\n<strong>Duration of storage</strong>\r\n\r\nGeneral and personal data will be kept by Stadsig Development Company (Pty) Ltd only as long as it is necessary for the purposes for which they have been provided, unless retention of data is required by any applicable law or competent court or authority or for statistical or archiving purposes.\r\n\r\n<strong>Location of storage</strong>\r\n\r\nUser data: your user information (i.e. Name, email address, etc.) are stored on Smartsheet, ZSD and Formidable Forms servers which are located in South Africa and in countries outside of South Africa.\r\n\r\n<strong>Security measures</strong>\r\n\r\nStadsig Development Company (Pty) Ltd has taken and will maintain appropriate technical and organizational security measures in particular to protect your personal data against unauthorized or unlawful processing, accidental loss, destruction or damage and ensure the ongoing confidentiality, integrity, availability of personal data and resilience of the systems and services used for processing of personal data. Stadsig Development Company (Pty) Ltd will test and review the efficiency of the implemented technical and organizational measures on a regular basis.\r\n\r\n<strong>Stadsig Development Company (Pty) Ltd staff</strong>\r\n\r\nYour personal data will be made available only to the members of Stadsig Development Company (Pty) Ltd staff who need to have access to such personal data to perform the purposes for which personal data have been provided. Such members of Stadsig Development Company (Pty) Ltd staff have been instructed with respect to and have committed to comply with the contractual and legal data protection obligations.\r\n\r\n<strong>Your obligations</strong>\r\n\r\nYou must ensure that data you provide to Stadsig Development Company (Pty) Ltd is correct; accurate; current; truthful; and compliant with any applicable laws.\r\n\r\n<strong>Disclosure of your data</strong>\r\n\r\nTo accomplish the purposes mentioned in this Data Protection and Privacy Policy, your personal data may be disclosed to other entities, only in accordance with the rules set out herein.\r\n\r\n<strong> </strong><strong>Cookies</strong>\r\n\r\nA cookie is a string of information that a website stores on a visitor\'s computer, and that the visitor\'s browser provides to the website each time the visitor returns. Stadsig Development Company (Pty) Ltd uses cookies to help us identify and track visitors, their usage of the website, and their website access preferences. Stadsig Development Company (Pty) Ltd visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using our website, with the drawback that certain features of Stadsig Development Company (Pty) Ltd website may not function properly without the aid of cookies.\r\n\r\n<strong>Data Protection and Privacy Policy Changes</strong>\r\n\r\nStadsig Development Company (Pty) Ltd may change its Data Protection and Privacy Policy from time to time and in Stadsig Development Company (Pty) Ltd sole discretion, in particular to comply with statutory data protection and privacy laws. We encourage users to frequently check this page for any changes to this Data Protection and Privacy Policy.\r\n\r\n<strong>Use of information and materials</strong>\r\n\r\nThe information and materials contained in these pages, and the terms, conditions, and descriptions that appear, are subject to change. Unauthorized use of our trademark, websites and systems, including but not limited to unauthorized entry into our systems, misuse of passwords, or misuse of any information posted on a site is strictly prohibited.\r\n\r\n<strong>Links</strong>\r\n\r\nThis site may contain links to web sites controlled or offered by third parties. Stadsig Development Company (Pty) Ltd hereby disclaims liability for any information, materials, products or services posted or offered at any of the third party sites linked to this website. By creating a link to a third party website, Stadsig Development Company (Pty) Ltd does not endorse or recommend any products or services offered or information contained at that website, nor is Stadsig Development Company (Pty) Ltd liable for any failure of products or services offered or advertised at those sites. Such third party may have a privacy policy different from that of Stadsig Development Company (Pty) Ltd the third party website may provide less security than the Stadsig Development Company (Pty) Ltd site.\r\n\r\n<strong>No Warranty</strong>\r\n\r\nThe information and materials contained in this site, including text, graphics, links or other items are provided \"as is\", and as available. Stadsig Development Company (Pty) Ltd does not warrant the accuracy, adequacy or completeness of this information and materials and expressly disclaims liability for errors or omissions in this information and materials. No warranty of any kind, implied, expressed or statutory including but not limited to the warranties of non-infringement of third party rights, title, merchantability, fitness for a particular purpose and freedom from computer virus, is given in conjunction with the information and materials.\r\n\r\n<strong>Limitation of Liability</strong>\r\n\r\nUnder no circumstances, shall Stadsig Development Company (Pty) Ltd be liable for any damages, including, without limitation, direct or indirect, special, incidental, or consequential damages, losses or expenses arising in connection with this site or any linked site or use thereof or inability to use by any party, or in connection with any failure of performance, error, omission, interruption, defect, delay in operation or transmission, computer virus or line or system failure, even if Stadsig Development Company (Pty) Ltd, or representatives thereof, are advised of the possibility of such damages, losses or expenses.\r\n\r\n&nbsp;\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"40px|0px|0|0px|false|false\" make_equal=\"on\" padding_top_1=\"22px\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.10.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"22px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.10.2\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 762 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_code _builder_version=\"3.10.1\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt; @media only screen and (min-width: 1110px) and (max-width: 1405px) { &lt;!-- [et_pb_line_break_holder] --&gt; .et_pb_row_18 {&lt;!-- [et_pb_line_break_holder] --&gt; max-width: 100% !important;&lt;!-- [et_pb_line_break_holder] --&gt; width: 90% !important;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; .et_pb_text_11 {&lt;!-- [et_pb_line_break_holder] --&gt; font-size: 14px !important;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; &lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" admin_label=\"Pam Golding\" _builder_version=\"3.15\" max_width=\"80%\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" admin_label=\"Atvantage\" _builder_version=\"3.15\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" admin_label=\"Dennis Moss\" _builder_version=\"3.15\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','disclaimer','','publish','closed','closed','','disclaimer','','','2018-09-21 12:00:02','2018-09-21 10:00:02','',0,'https://www.stadsig.co.za/?page_id=224901',0,'page','',0),(224928,1,'2018-09-21 12:06:14','2018-09-21 10:06:14','','Stadsig_PGP_logo','','inherit','open','closed','','stadsig_pgp_logo','','','2018-09-21 12:06:14','2018-09-21 10:06:14','',223313,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png',0,'attachment','image/png',0),(224945,1,'2018-09-21 12:19:51','2018-09-21 10:19:51','','StadsigDocuments_AchitectureDisclaimer','','inherit','open','closed','','stadsigdocuments_achitecturedisclaimer','','','2018-10-01 12:52:41','2018-10-01 10:52:41','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_AchitectureDisclaimer.pdf',0,'attachment','application/pdf',0),(224946,1,'2018-09-21 12:19:53','2018-09-21 10:19:53','','StadsigDocuments_MasterSDP','','inherit','open','closed','','stadsigdocuments_mastersdp','','','2018-10-01 12:52:25','2018-10-01 10:52:25','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_MasterSDP.pdf',0,'attachment','application/pdf',0),(224947,1,'2018-09-21 12:20:01','2018-09-21 10:20:01','','StadsigDocuments_RegionalLocalLocation','','inherit','open','closed','','stadsigdocuments_regionallocallocation','','','2018-09-21 12:20:01','2018-09-21 10:20:01','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_RegionalLocalLocation.pdf',0,'attachment','application/pdf',0),(224948,1,'2018-09-21 12:20:03','2018-09-21 10:20:03','','StadsigDocuments_UnitTypeAllocation','','inherit','open','closed','','stadsigdocuments_unittypeallocation','','','2018-10-01 12:52:06','2018-10-01 10:52:06','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_UnitTypeAllocation.pdf',0,'attachment','application/pdf',0),(224959,1,'2018-09-21 12:44:23','2018-09-21 10:44:23','','Stadsig_HOAConstitution','','inherit','open','closed','','stadsig_hoaconstitution','','','2018-10-01 12:51:49','2018-10-01 10:51:49','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf',0,'attachment','application/pdf',0),(224972,1,'2018-09-21 13:44:12','2018-09-21 11:44:12','','StadsigWebPlans_Part2','','inherit','open','closed','','stadsigwebplans_part2','','','2018-10-01 12:51:14','2018-10-01 10:51:14','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf',0,'attachment','application/pdf',0),(224973,1,'2018-09-21 13:44:14','2018-09-21 11:44:14','','StadsigWebPlans_Part3','','inherit','open','closed','','stadsigwebplans_part3','','','2018-10-01 12:50:51','2018-10-01 10:50:51','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf',0,'attachment','application/pdf',0),(224974,1,'2018-09-21 13:44:18','2018-09-21 11:44:18','','StadsigWebPlans_Part4','','inherit','open','closed','','stadsigwebplans_part4','','','2018-10-01 12:50:28','2018-10-01 10:50:28','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part4.pdf',0,'attachment','application/pdf',0),(224975,1,'2018-09-21 13:44:20','2018-09-21 11:44:20','','StadsigWebPlans_Part5','','inherit','open','closed','','stadsigwebplans_part5','','','2018-10-01 12:50:08','2018-10-01 10:50:08','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part5.pdf',0,'attachment','application/pdf',0),(224976,1,'2018-09-21 13:44:21','2018-09-21 11:44:21','','StadsigWebPlans_Part6','','inherit','open','closed','','stadsigwebplans_part6','','','2018-10-01 12:49:40','2018-10-01 10:49:40','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part6.pdf',0,'attachment','application/pdf',0),(224977,1,'2018-09-21 13:44:23','2018-09-21 11:44:23','','StadsigWebPlans_Part7','','inherit','open','closed','','stadsigwebplans_part7','','','2018-10-01 12:49:10','2018-10-01 10:49:10','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part7.pdf',0,'attachment','application/pdf',0),(224978,1,'2018-09-21 13:44:25','2018-09-21 11:44:25','','StadsigWebPlans_Part8','','inherit','open','closed','','stadsigwebplans_part8','','','2018-10-01 12:48:42','2018-10-01 10:48:42','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part8.pdf',0,'attachment','application/pdf',0),(224979,1,'2018-09-21 13:44:26','2018-09-21 11:44:26','','StadsigWebPlans_Part9','','inherit','open','closed','','stadsigwebplans_part9','','','2018-10-01 12:48:16','2018-10-01 10:48:16','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part9.pdf',0,'attachment','application/pdf',0),(224980,1,'2018-09-21 13:44:28','2018-09-21 11:44:28','','StadsigWebPlans_Part10','','inherit','open','closed','','stadsigwebplans_part10','','','2018-10-01 12:47:52','2018-10-01 10:47:52','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part10.pdf',0,'attachment','application/pdf',0),(224981,1,'2018-09-21 13:44:30','2018-09-21 11:44:30','','StadsigWebPlans_Part11','','inherit','open','closed','','stadsigwebplans_part11','','','2018-10-01 12:47:25','2018-10-01 10:47:25','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part11.pdf',0,'attachment','application/pdf',0),(224985,1,'2018-09-21 13:53:37','2018-09-21 11:53:37','','StadsigWebPlans_Part1','','inherit','open','closed','','stadsigwebplans_part1','','','2018-10-01 12:46:57','2018-10-01 10:46:57','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf',0,'attachment','application/pdf',0),(225028,1,'2018-09-21 15:01:53','2018-09-21 13:01:53','','StadsigGeneralSpecifications','','inherit','open','closed','','stadsiggeneralspecifications','','','2018-10-01 12:46:04','2018-10-01 10:46:04','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigGeneralSpecifications.pdf',0,'attachment','application/pdf',0),(225029,1,'2018-09-21 15:01:58','2018-09-21 13:01:58','','StadsigInteriorFinishes_final','','inherit','open','closed','','stadsiginteriorfinishes_final','','','2018-10-01 12:45:35','2018-10-01 10:45:35','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigInteriorFinishes_final.pdf',0,'attachment','application/pdf',0),(225061,1,'2018-09-21 15:43:19','2018-09-21 13:43:19','','StadsigSubD&Phasing','','inherit','open','closed','','stadsigsubdphasing','','','2018-09-21 15:43:19','2018-09-21 13:43:19','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigSubDPhasing.pdf',0,'attachment','application/pdf',0),(225062,1,'2018-09-21 15:43:21','2018-09-21 13:43:21','','StadsigUnitAllocationPlan','','inherit','open','closed','','stadsigunitallocationplan','','','2018-10-01 12:45:01','2018-10-01 10:45:01','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigUnitAllocationPlan.pdf',0,'attachment','application/pdf',0),(225435,1,'2018-10-01 12:16:31','2018-10-01 10:16:31','','STADSIG_BuildingAgreement_1oct','','inherit','open','closed','','stadsig_buildingagreement_1oct','','','2018-10-01 12:44:28','2018-10-01 10:44:28','',0,'https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_1oct.pdf',0,'attachment','application/pdf',0),(225437,1,'2018-10-01 12:16:38','2018-10-01 10:16:38','','Stadsig_OptionalExtras_1oct','','inherit','open','closed','','stadsig_optionalextras_1oct','','','2018-10-01 12:43:33','2018-10-01 10:43:33','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf',0,'attachment','application/pdf',0),(225438,1,'2018-10-01 12:16:39','2018-10-01 10:16:39','','STADSIG_SalesPrices_1oct','','inherit','open','closed','','stadsig_salesprices_1oct','','','2018-10-01 12:42:35','2018-10-01 10:42:35','',0,'https://www.stadsig.co.za/wp-content/uploads/STADSIG_SalesPrices_1oct.pdf',0,'attachment','application/pdf',0),(225480,1,'2018-10-02 12:16:23','2018-10-02 10:16:23','','STADSIG_DeedOfSale_1octFinal','','inherit','open','closed','','stadsig_deedofsale_1octfinal','','','2018-10-02 12:16:58','2018-10-02 10:16:58','',0,'https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_1octFinal.pdf',0,'attachment','application/pdf',0),(225484,1,'2018-10-02 14:54:17','2018-10-02 12:54:17','','Stadsig_GeneralSpecifications_2oct','','inherit','open','closed','','stadsig_generalspecifications_2oct','','','2018-10-02 14:54:17','2018-10-02 12:54:17','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_GeneralSpecifications_2oct.pdf',0,'attachment','application/pdf',0),(225485,1,'2018-10-02 14:54:27','2018-10-02 12:54:27','','Stadsig_HousePlans_2oct','','inherit','open','closed','','stadsig_houseplans_2oct','','','2018-10-02 14:54:27','2018-10-02 12:54:27','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_2oct.pdf',0,'attachment','application/pdf',0),(225486,1,'2018-10-02 14:54:32','2018-10-02 12:54:32','','Stadsig_InteriorFinishes_2oct','','inherit','open','closed','','stadsig_interiorfinishes_2oct','','','2018-10-02 14:54:32','2018-10-02 12:54:32','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf',0,'attachment','application/pdf',0),(225487,1,'2018-10-02 14:54:37','2018-10-02 12:54:37','','Stadsig_SubD&Phasing_2oct','','inherit','open','closed','','stadsig_subdphasing_2oct','','','2018-10-02 15:10:05','2018-10-02 13:10:05','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_SubDPhasing_2oct.pdf',0,'attachment','application/pdf',0),(225527,1,'2018-10-12 14:04:37','2018-10-12 12:04:37','','Stadsig_Website_LifestyleCollage1','','inherit','open','closed','','stadsig_website_lifestylecollage1','','','2018-10-12 14:04:37','2018-10-12 12:04:37','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_LifestyleCollage1.jpg',0,'attachment','image/jpeg',0),(225533,1,'2018-10-12 14:10:28','2018-10-12 12:10:28','[et_pb_section fb_built=\"1\" _builder_version=\"3.10.2\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.10.2\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AreaThumb1.jpg\" align=\"center\" _builder_version=\"3.15\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AreaThumb2.jpg\" align=\"center\" _builder_version=\"3.15\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_AreaLifestyleThumb3.jpg\" align=\"center\" _builder_version=\"3.15\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','lifestyle images','','publish','closed','closed','','lifestyle-images','','','2018-10-12 14:10:28','2018-10-12 12:10:28','',0,'https://www.stadsig.co.za/et_pb_layout/lifestyle-images/',0,'et_pb_layout','',0),(225545,1,'2018-10-12 14:53:53','2018-10-12 12:53:53','','Stadsig_PressArticle2','','inherit','open','closed','','stadsig_pressarticle2','','','2018-10-12 14:53:53','2018-10-12 12:53:53','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_PressArticle2.pdf',0,'attachment','application/pdf',0),(225546,1,'2018-10-12 14:53:55','2018-10-12 12:53:55','','Stadsig_PressArticle1','','inherit','open','closed','','stadsig_pressarticle1','','','2018-10-12 14:53:55','2018-10-12 12:53:55','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_PressArticle1.pdf',0,'attachment','application/pdf',0),(225551,1,'2018-10-16 15:04:54','2018-10-16 13:04:54','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"off|desktop\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_Documentation.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"298px||319px||false|false\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_DocumentationHeader-1024x336.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||86px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22.3\" custom_padding=\"78px||6px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_DocumentationIcon.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"on|off|off\" _builder_version=\"4.1\" max_width=\"9%\" module_alignment=\"center\"][/et_pb_image][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_DocumentationIcon.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off|on|on\" _builder_version=\"4.1\" max_width_tablet=\"\" max_width_phone=\"20%\" max_width_last_edited=\"on|phone\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"17px||37px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"documentation\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">documentation</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Downloads Desktop/Tablet\" _builder_version=\"3.22.3\" custom_padding=\"1px||23px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" admin_label=\"Text Area\" _builder_version=\"3.25\" max_width=\"1152px\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"0||10px||false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"\" use_custom_width=\"on\" custom_width_px=\"1152px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||20%\" custom_css_main_element=\"||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|0%||0%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_RegionalLocalLocation.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">regional &amp; local location</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_SDP_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">master site development plan</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_UnitTypeAllocation_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">unit allocation plan</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_SubdivisionPhasing_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">sub-division &amp; phasing plan</span></a></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_GeneralSpecifications_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">general specifications</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">interior finishes</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">HOA</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">optional extras</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigPricelistJuly2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">price list</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">deed of sale</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">building agreement</span></a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|20%||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|0%||0%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 1</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 2</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 3</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 4</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 5</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 6</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 7</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 8</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 9</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 10</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 11</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 1-11</span></a></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Downloads Phone\" _builder_version=\"3.22.3\" custom_padding=\"1px||23px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"off|desktop\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0||10px||false|true\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"90%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_css_main_element=\"||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|0%||0%||true\" custom_padding_tablet=\"|||\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_RegionalLocalLocation.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">regional &amp; local location</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_MasterSDP.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">master site development plan</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnitAllocationPlan.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">unit allocation plan</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SubDPhasing_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">sub-division &amp; phasing plan</span></a></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_GeneralSpecifications_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">general specifications</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">interior finishes</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">HOA</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">optional extras</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_SalesPrices_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">price list</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_1octFinal.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">deed of sale</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">building agreement</span></a></p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|0%||0%||true\" custom_padding_tablet=\"|||\" custom_padding_phone=\"16px||\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 1</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 2</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 3</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 4</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 5</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 6</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 7</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 8</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 9</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 10</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 11</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plans 1-11</span></a></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" custom_padding=\"1px|0px|50px|0px|false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage7.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage8.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage9.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.22.3\" custom_padding=\"0|0px|17px|0px|false|false\" collapsed=\"on\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"0|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','documentation','','publish','closed','closed','','documentation','','','2020-03-05 12:15:21','2020-03-05 10:15:21','',0,'https://www.stadsig.co.za/?page_id=225551',0,'page','',0),(225567,1,'2018-10-16 14:54:41','2018-10-16 12:54:41','','6. HOUSE TYPE 1 - 11_ REV00','','inherit','open','closed','','6-house-type-1-11_-rev00','','','2018-10-16 14:54:41','2018-10-16 12:54:41','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00.pdf',0,'attachment','application/pdf',0),(225568,1,'2018-10-16 14:54:48','2018-10-16 12:54:48','','6. HOUSE TYPE 1 - 11_ REV00_Part1','','inherit','open','closed','','6-house-type-1-11_-rev00_part1','','','2018-10-16 14:54:48','2018-10-16 12:54:48','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part1.pdf',0,'attachment','application/pdf',0),(225569,1,'2018-10-16 14:54:51','2018-10-16 12:54:51','','6. HOUSE TYPE 1 - 11_ REV00_Part2','','inherit','open','closed','','6-house-type-1-11_-rev00_part2','','','2018-10-16 14:54:51','2018-10-16 12:54:51','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part2.pdf',0,'attachment','application/pdf',0),(225570,1,'2018-10-16 14:54:53','2018-10-16 12:54:53','','6. HOUSE TYPE 1 - 11_ REV00_Part3','','inherit','open','closed','','6-house-type-1-11_-rev00_part3','','','2018-10-16 14:54:53','2018-10-16 12:54:53','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part3.pdf',0,'attachment','application/pdf',0),(225571,1,'2018-10-16 14:54:55','2018-10-16 12:54:55','','6. HOUSE TYPE 1 - 11_ REV00_Part4','','inherit','open','closed','','6-house-type-1-11_-rev00_part4','','','2018-10-16 14:54:55','2018-10-16 12:54:55','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part4.pdf',0,'attachment','application/pdf',0),(225572,1,'2018-10-16 14:54:57','2018-10-16 12:54:57','','6. HOUSE TYPE 1 - 11_ REV00_Part5','','inherit','open','closed','','6-house-type-1-11_-rev00_part5','','','2018-10-16 14:54:57','2018-10-16 12:54:57','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part5.pdf',0,'attachment','application/pdf',0),(225573,1,'2018-10-16 14:54:59','2018-10-16 12:54:59','','6. HOUSE TYPE 1 - 11_ REV00_Part6','','inherit','open','closed','','6-house-type-1-11_-rev00_part6','','','2018-10-16 14:54:59','2018-10-16 12:54:59','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part6.pdf',0,'attachment','application/pdf',0),(225574,1,'2018-10-16 14:55:02','2018-10-16 12:55:02','','6. HOUSE TYPE 1 - 11_ REV00_Part7','','inherit','open','closed','','6-house-type-1-11_-rev00_part7','','','2018-10-16 14:55:02','2018-10-16 12:55:02','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part7.pdf',0,'attachment','application/pdf',0),(225575,1,'2018-10-16 14:55:04','2018-10-16 12:55:04','','6. HOUSE TYPE 1 - 11_ REV00_Part8','','inherit','open','closed','','6-house-type-1-11_-rev00_part8','','','2018-10-16 14:55:04','2018-10-16 12:55:04','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part8.pdf',0,'attachment','application/pdf',0),(225576,1,'2018-10-16 14:55:06','2018-10-16 12:55:06','','6. HOUSE TYPE 1 - 11_ REV00_Part9','','inherit','open','closed','','6-house-type-1-11_-rev00_part9','','','2018-10-16 14:55:06','2018-10-16 12:55:06','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part9.pdf',0,'attachment','application/pdf',0),(225577,1,'2018-10-16 14:55:09','2018-10-16 12:55:09','','6. HOUSE TYPE 1 - 11_ REV00_Part10','','inherit','open','closed','','6-house-type-1-11_-rev00_part10','','','2018-10-16 14:55:09','2018-10-16 12:55:09','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part10.pdf',0,'attachment','application/pdf',0),(225578,1,'2018-10-16 14:55:11','2018-10-16 12:55:11','','6. HOUSE TYPE 1 - 11_ REV00_Part11','','inherit','open','closed','','6-house-type-1-11_-rev00_part11','','','2018-10-16 14:55:11','2018-10-16 12:55:11','',0,'https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part11.pdf',0,'attachment','application/pdf',0),(225593,1,'2018-10-16 15:20:53','2018-10-16 13:20:53',' ','','','publish','closed','closed','','225593','','','2019-08-01 15:44:27','2019-08-01 13:44:27','',0,'https://www.stadsig.co.za/?p=225593',6,'nav_menu_item','',0),(225657,1,'2018-10-18 14:01:30','2018-10-18 12:01:30','','Stadsig_Map_Placeholder_small-2','','inherit','open','closed','','stadsig_map_placeholder_small-2-3','','','2018-10-18 14:01:30','2018-10-18 12:01:30','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_Map_Placeholder_small-2-1.png',0,'attachment','image/png',0),(225688,1,'2019-06-28 13:01:23','2019-06-28 11:01:23','','frm_after_create_entry','https://hooks.zapier.com/hooks/standard/1351380/3a3235bdcc7f460599ab5097f4548ecb/','publish','closed','closed','','frm_after_create_entry-2','','','2019-06-28 13:01:23','2019-06-28 11:01:23','',0,'https://www.stadsig.co.za/frm_api/frm_after_create_entry-2/',0,'frm_api','',0),(225690,1,'2019-07-01 13:11:20','2019-07-01 11:11:20','This page is part of the Mhmm plugin. DO NOT EDIT OR DELETE THIS PAGE.','Mhmm Menu Layout Loader','','publish','closed','closed','','mhmm-menu-layout-loader','','','2019-07-01 13:11:20','2019-07-01 11:11:20','',0,'https://www.stadsig.co.za/mhmm-menu-layout-loader/',0,'page','',0),(225691,1,'2019-07-08 11:06:01','2019-07-08 09:06:01','','STADSIG_BuildingAgreement_25June2019','','inherit','open','closed','','stadsig_buildingagreement_25june2019','','','2019-07-08 11:06:01','2019-07-08 09:06:01','',0,'https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_25June2019.pdf',0,'attachment','application/pdf',0),(225692,1,'2019-07-08 11:06:07','2019-07-08 09:06:07','','STADSIG_DeedOfSale_25June2019','','inherit','open','closed','','stadsig_deedofsale_25june2019','','','2019-07-08 11:06:07','2019-07-08 09:06:07','',0,'https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_25June2019.pdf',0,'attachment','application/pdf',0),(225693,1,'2019-07-08 11:06:17','2019-07-08 09:06:17','','StadsigDocuments_GeneralSpecifications_25June2019','','inherit','open','closed','','stadsigdocuments_generalspecifications_25june2019','','','2019-07-08 11:06:17','2019-07-08 09:06:17','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_GeneralSpecifications_25June2019.pdf',0,'attachment','application/pdf',0),(225694,1,'2019-07-08 11:06:38','2019-07-08 09:06:38','','StadsigDocuments_SDP_25June2019','','inherit','open','closed','','stadsigdocuments_sdp_25june2019','','','2019-07-08 11:06:38','2019-07-08 09:06:38','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_SDP_25June2019.pdf',0,'attachment','application/pdf',0),(225695,1,'2019-07-08 11:06:45','2019-07-08 09:06:45','','StadsigDocuments_SubdivisionPhasing_25June2019','','inherit','open','closed','','stadsigdocuments_subdivisionphasing_25june2019','','','2019-07-08 11:06:45','2019-07-08 09:06:45','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_SubdivisionPhasing_25June2019.pdf',0,'attachment','application/pdf',0),(225696,1,'2019-07-08 11:06:58','2019-07-08 09:06:58','','StadsigDocuments_UnitTypeAllocation_25June2019','','inherit','open','closed','','stadsigdocuments_unittypeallocation_25june2019','','','2019-07-08 11:06:58','2019-07-08 09:06:58','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_UnitTypeAllocation_25June2019.pdf',0,'attachment','application/pdf',0),(225743,1,'2019-07-08 14:45:38','2019-07-08 12:45:38','','Stadsig_Pricelist_1Jul2019','','inherit','open','closed','','stadsig_pricelist_1jul2019','','','2019-07-08 14:45:38','2019-07-08 12:45:38','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_Pricelist_1Jul2019.pdf',0,'attachment','application/pdf',0),(225765,1,'2019-07-26 12:18:52','2019-07-26 10:18:52','','StadsigPricelistJuly2019','','inherit','open','closed','','stadsigpricelistjuly2019','','','2019-07-26 12:18:52','2019-07-26 10:18:52','',0,'https://www.stadsig.co.za/wp-content/uploads/StadsigPricelistJuly2019.pdf',0,'attachment','application/pdf',0),(225789,1,'2019-08-01 13:54:48','2019-08-01 11:54:48','','Stadsig_Gallery_TheEstate_July2019_11','','inherit','open','closed','','stadsig_gallery_theestate_july2019_11','','','2019-08-01 13:54:48','2019-08-01 11:54:48','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_11.jpg',0,'attachment','image/jpeg',0),(225804,1,'2019-08-01 15:44:28','2019-08-01 13:44:28',' ','','','publish','closed','closed','','225804','','','2019-08-01 15:44:28','2019-08-01 13:44:28','',0,'https://www.stadsig.co.za/?p=225804',8,'nav_menu_item','',0),(225873,1,'2019-08-02 12:35:46','2019-08-02 10:35:46','','Stadsig_Home_Video','','inherit','open','closed','','stadsig_home_video','','','2019-08-02 12:35:46','2019-08-02 10:35:46','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_Home_Video.mp4',0,'attachment','video/mp4',0),(225881,1,'2019-08-02 12:48:42','2019-08-02 10:48:42','','Stadsig_Home_Video','','inherit','open','closed','','stadsig_home_video-2','','','2019-08-02 12:48:42','2019-08-02 10:48:42','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_Home_Video-1.mp4',0,'attachment','video/mp4',0),(225902,1,'2019-08-02 13:55:01','2019-08-02 11:55:01','[et_pb_section bb_built=\"1\" _builder_version=\"3.26.4\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px|||\" inner_module_alignment=\"center\" custom_margin=\"0px|0px|0px|0px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_row custom_padding=\"0px|0px|0px|0px|false|false\" custom_margin=\"0px|0px|0px|0px|false|false\" _builder_version=\"3.26.4\" width=\"100%\" max_width=\"100%\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.4\"][et_pb_video src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Home_Video-1.mp4\" _builder_version=\"3.26.4\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Video_main','','publish','closed','closed','','video_main','','','2019-08-02 14:55:20','2019-08-02 12:55:20','',0,'https://www.stadsig.co.za/et_pb_layout/video_main/',0,'et_pb_layout','',0),(225909,1,'2019-08-02 14:03:38','2019-08-02 12:03:38','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.4\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|\" module_alignment=\"center\" inner_module_alignment=\"center\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.26.4\" width=\"100%\" max_width=\"auto\" module_alignment=\"center\" overflow-y=\"hidden\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.4\"][et_pb_code _builder_version=\"3.26.4\" custom_margin=\"0px||0px|\" custom_padding=\"0px||0px|\" z_index_tablet=\"500\"]<style><!-- [et_pb_line_break_holder] -->.overlay-container .overlay-close {<!-- [et_pb_line_break_holder] -->    right: 19vw;<!-- [et_pb_line_break_holder] -->    top: 12vh;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_section_26 {<!-- [et_pb_line_break_holder] -->    width: 77% !important;<!-- [et_pb_line_break_holder] -->    margin-left: auto!important;<!-- [et_pb_line_break_holder] -->    margin-right: auto!important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->/* Overlay style */<!-- [et_pb_line_break_holder] -->.overlay {	<!-- [et_pb_line_break_holder] -->	position: fixed;<!-- [et_pb_line_break_holder] -->	width: 100% !important;<!-- [et_pb_line_break_holder] -->	height: 100%;<!-- [et_pb_line_break_holder] -->	background: rgba(61,61,61,0.9);	<!-- [et_pb_line_break_holder] -->	left:0;<!-- [et_pb_line_break_holder] -->	top:0;<!-- [et_pb_line_break_holder] -->        margin-top:12vh !important;<!-- [et_pb_line_break_holder] -->	overflow-x:scroll;<!-- [et_pb_line_break_holder] -->	z-index: 16777271;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_23.et_pb_row {<!-- [et_pb_line_break_holder] -->    margin-top: 0px!important;<!-- [et_pb_line_break_holder] -->    margin-right: auto!important;<!-- [et_pb_line_break_holder] -->    margin-bottom: 0px!important;<!-- [et_pb_line_break_holder] -->    margin-left: 25vw!important;<!-- [et_pb_line_break_holder] -->    padding-top: 0px;<!-- [et_pb_line_break_holder] -->    padding-right: 0px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 0px;<!-- [et_pb_line_break_holder] -->    padding-left: 0px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/Video.jpg\" url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyMzM1NSJ9fQ==@\" _builder_version=\"4.1\" _dynamic_attributes=\"url\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Stadsig-Video-2','','publish','closed','closed','','stadsig-video-2-3','','','2020-01-17 08:46:46','2020-01-17 06:46:46','',0,'https://www.stadsig.co.za/?post_type=divi_overlay&#038;p=225909',0,'divi_overlay','',0),(226007,1,'2019-10-10 12:00:39','2019-10-10 10:00:39','[et_pb_section bb_built=\"1\" admin_label=\"Hero Main Image - DesktopTablet\" disabled_on=\"on|off|off\" module_class=\"section\" _builder_version=\"3.22.3\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Hero Image - All Devices\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_phone=\"76px||345px|\" custom_margin=\"2px||0px|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_HousePlansHeader.jpg\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Hero Image - All Devices\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_phone=\"35px||114px||false|false\" custom_margin=\"2px||0px|\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|on|on\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_header_Mobile.jpg\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Senses Image - Tablet/Phone\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" _builder_version=\"3.22.3\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Image\" custom_padding=\"0px||2px||false|false\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_strelitzia.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width=\"9%\" module_alignment=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"H1 Caption - All Devices\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"H1 Caption\" custom_padding=\"0px||2px||false|false\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"your taste manifested\" _builder_version=\"3.25.3\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]\n\n<h1 style=\"text-align: center;\">harmonious cape homes</h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"H1 Caption - All Devices\" custom_padding_last_edited=\"on|phone\" disabled_on=\"on|off|off\" _builder_version=\"3.22.3\" custom_padding=\"47px||0||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"H1 Caption\" custom_padding=\"0px||2px||false|false\" _builder_version=\"3.25\" width=\"60%\" max_width=\"60%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"60%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs module_class=\"equal-tabs\" _builder_version=\"3.25.3\" body_font=\"||||||||\" border_width_all=\"0px\" custom_margin=\"|0px||0px\" custom_padding=\"|0px||0px\"][et_pb_tab title=\"unit 1\" _builder_version=\"3.25.3\" body_font=\"||||||||\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 1</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><img class=\"wp-image-224714 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit1_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></p>[/et_pb_tab][et_pb_tab title=\"unit 2\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 2</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<img class=\"wp-image-224716 alignnone size-full\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit2_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" />[/et_pb_tab][et_pb_tab title=\"unit 3\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 3</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224719 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit3_full.jpg\" alt=\"\" width=\"1298\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 4\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 4</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 156,9m<sup>2</sup> | OUTSIDE COVERED AREA 23,9m<sup>2</sup> | TOTAL 180,8m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224721 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit4_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 5\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 5</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 160m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 184m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224723 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit5_full.jpg\" alt=\"\" width=\"1297\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 6\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 6</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 162,8m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 186,8m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224725 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit6_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 7\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 7</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 164,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 188,3m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224704 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit7_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 8\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 8</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 166,1m<sup>2</sup> | OUTSIDE COVERED AREA 25,5m<sup>2</sup> | TOTAL 191,6m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224706 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit8_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 9\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 9</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 185,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 209,3m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224708 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit9_full.jpg\" alt=\"\" width=\"1298\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 10\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 10</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 210,4m<sup>2</sup> | OUTSIDE COVERED AREA 23,5m<sup>2</sup> | TOTAL 233,9m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224710 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit10_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 11\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 11</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 275,7m<sup>2</sup> | OUTSIDE COVERED AREA 22,7m<sup>2</sup> | TOTAL 298,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224712 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit11_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][/et_pb_tabs][et_pb_code]<style><!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 9%; /*change width of tabs here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media screen and (max-width: 768px){ /*change device breakpoint here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 100%; <!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->/*-------Tab Colors ----------------*/<!-- [et_pb_line_break_holder] -->li.et_pb_tab_0 {<!-- [et_pb_line_break_holder] --> background-color: #B9A5C6;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_1 {<!-- [et_pb_line_break_holder] --> background-color: #FDE9CF;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_2 {<!-- [et_pb_line_break_holder] --> background-color: #FBA7B2;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_3 {<!-- [et_pb_line_break_holder] --> background-color: #B2FA8E;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_4 {<!-- [et_pb_line_break_holder] --> background-color: #F8D2F9;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_5 {<!-- [et_pb_line_break_holder] --> background-color: #BAE3BC;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_6{<!-- [et_pb_line_break_holder] --> background-color: #A7C9FB;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_7 {<!-- [et_pb_line_break_holder] --> background-color: #FBBC6A;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_8 {<!-- [et_pb_line_break_holder] --> background-color: #BDFEFA;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_9 {<!-- [et_pb_line_break_holder] --> background-color: #F2F2F2;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_10 {<!-- [et_pb_line_break_holder] --> background-color: #F8EA7C;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls:after {<!-- [et_pb_line_break_holder] --> display: block;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> z-index: 9;<!-- [et_pb_line_break_holder] --> top: -1px;<!-- [et_pb_line_break_holder] --> border-top: none;<!-- [et_pb_line_break_holder] --> content: \"\";<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] -->border-right: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls {<!-- [et_pb_line_break_holder] -->background-color: rgba(255,255,255,0) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tab {<!-- [et_pb_line_break_holder] --> padding: 24px 0px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"H1 Caption - All Devices\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|on|on\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"H1 Caption\" custom_padding=\"0px||0px||false|false\" _builder_version=\"3.25\" width=\"92%\" max_width=\"92%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"92%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_toggle admin_label=\"Toggle 1\" title=\"unit type 1\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#b9a5c6\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 1</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit1_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 2\" title=\"unit type 2\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fde9cf\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 2</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit2_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 3\" title=\"unit type 3\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fba7b2\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 3</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit3_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 4\" title=\"unit type 4\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#b2fa8e\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 4</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 156,9m<sup>2</sup> | OUTSIDE COVERED AREA 23,9m<sup>2</sup> | TOTAL 180,8m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit4_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 5\" title=\"unit type 5\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f8d2f9\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 5</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 160m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 184m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit5_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 6\" title=\"unit type 6\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#bae3bc\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 6</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 162,8m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 186,8m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit6_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 7\" title=\"unit type 7\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#a7c9fb\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 7</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 164,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 188,3m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit7_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 8\" title=\"unit type 8\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fbbc6a\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 8</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet</p>\n<p style=\"text-align: center;\">FLOOR AREA 166,1m<sup>2</sup> | OUTSIDE COVERED AREA 25,5m<sup>2</sup> | TOTAL 191,6m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit8_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 9\" title=\"unit type 9\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#bdfefa\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 9</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 185,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 209,3m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit9_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 10\" title=\"unit type 10\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f2f2f2\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 10</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 210,4m<sup>2</sup> | OUTSIDE COVERED AREA 23,5m<sup>2</sup> | TOTAL 233,9m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit10_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 11\" title=\"unit type 11\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f8ea7c\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 11</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 275,7m<sup>2</sup> | OUTSIDE COVERED AREA 22,7m<sup>2</sup> | TOTAL 298,4m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit11_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_code]<style><!-- [et_pb_line_break_holder] -->/**************************** toggle custom 3 **************************/<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle {<!-- [et_pb_line_break_holder] --> border: none;<!-- [et_pb_line_break_holder] --> transition: 0.4s<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3 .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> font-size: 30px !important ;<!-- [et_pb_line_break_holder] --> content: \"3\" !important;<!-- [et_pb_line_break_holder] --> -webkit-transition: 0.3s;<!-- [et_pb_line_break_holder] --> transition: 0.3s;<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle_open .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> color: #939692;<!-- [et_pb_line_break_holder] --> -ms-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> -webkit-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->.et_pb_accordion .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_toggle .et_pb_toggle_title, .et_pb_toggle h5.et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title {<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> padding: 50px;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][et_pb_divider color=\"rgba(46,163,242,0)\" _builder_version=\"3.15\" height=\"25px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" disabled_on=\"off|off|off\" _builder_version=\"3.22.3\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px|false|false\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row custom_padding=\"27px|0px|2px|0px|false|false\" _builder_version=\"3.25\" width=\"60%\" max_width=\"60%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"60%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.25.3\" text_font=\"Tajawal|300|||||||\" text_font_size=\"14px\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" text_orientation=\"left\"]\n\n<h3 style=\"text-align: center;\">download documents</h3>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"21px|0px|0|0px|false|false\" _builder_version=\"3.25\" max_width=\"80%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on||\" _builder_version=\"3.26.4\" text_font=\"Tajawal|500|||||||\" text_font_size=\"15px\" text_orientation=\"left\"]\n\n<p style=\"text-align: center;\"><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_GeneralSpecifications_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">general specifications</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">interior finishes</a><span style=\"color: #ffffff;\">_____</span><a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HOA</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">optional extras</a><span style=\"color: #ffffff;\">______</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigPricelistJuly2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">price list</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_1octFinal.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">deed of sale</a> <span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">building agreement </a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">house plans 1-11</a></p>\n\n[/et_pb_text][et_pb_text disabled_on=\"off|on|on\" _builder_version=\"3.15\" text_font=\"Tajawal|200|||||||\" text_font_size=\"15px\" custom_padding=\"15px|||\" text_orientation=\"left\"]\n\n<p style=\"text-align: center;\"><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_GeneralSpecifications_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">general specifications</a><span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">interior finishes</a><span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HOA</a><span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">optional extras</a><span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\" https://www.stadsig.co.za/wp-content/uploads/STADSIG_SalesPrices_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">price list</a><span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_1octFinal.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">deed of sale</a> <span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">building agreement </a>\n<a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">house plans 1-11</a></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Explore Story Section\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.22.3\" custom_padding=\"1px||15px||false|false\" custom_padding_phone=\"35px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Text Area\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0||10px||false|false\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.25.3\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"|8%||8%\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]\n\n<p style=\"text-align: center;\">Pitched roofs, neutral tones, plastered walls and vertically proportioned windows are found throughout Stadsig’s freestanding units, which are all in Cape Vernacular style, that uniquely South African fusion of Cape Dutch and contemporary elements. Core buildings are clearly articulated in the traditional ‘letter of the alphabet’ form developed centuries ago by the Dutch, balanced by single-storey abutments behind parapet walls. Each house is carefully placed and oriented to maximise views, privacy and natural light, while offering protection from prevailing winds. Roof overhangs, pergolas with deciduous planting and functional shutters are attractive architectural responses to the hot local climate. The considered combination of covered parking bays with garages set back behind screening pergolas, low garden walls and landscaping elements contribute to qualitative internal streets and squares. Homes cater to modern tastes, with open-plan kitchens and spacious covered entertainment areas with built-in braais - flexibly designed to allow optional stacking doors – all opening onto private gardens. Scale, proportion, detailing and colours create a harmonious and attractive composition, set in a secure family-friendly environment with indigenous planting and mature olive trees.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.22.3\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_LifestyleCollage4.jpg\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_LifestyleCollage5.jpg\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_LifestyleCollage6.jpg\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Desktop/Tablet\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.14\" parallax=\"on\" parallax_method=\"off\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" disabled_on=\"on|off|off\" collapsed=\"on\" prev_background_color=\"#000000\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223327\"][et_pb_row admin_label=\"Contact Desktop/Tablet\" global_parent=\"223327\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"on|tablet\" module_class=\"element\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax.jpg\" parallax=\"on\" parallax_method=\"off\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin_last_edited=\"on|tablet\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" global_parent=\"223327\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223327\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" global_parent=\"223327\" _builder_version=\"3.10.1\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]\n\n<h2 style=\"text-align: center;\">get in touch</h2>\n\n[/et_pb_text][et_pb_text admin_label=\"Form\" global_parent=\"223327\" _builder_version=\"3.9\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\" text_orientation=\"left\"]\n\n<p style=\"text-align: center;\">[formidable id=\"6\"] </p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223327\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Phone\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.17.1\" parallax=\"on\" parallax_method=\"off\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" disabled_on=\"off|on|on\" collapsed=\"on\" prev_background_color=\"#000000\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223328\"][et_pb_row admin_label=\"Contact Phone\" global_parent=\"223328\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"on|tablet\" module_class=\"element\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_contactParalax1920.jpg\" parallax=\"on\" parallax_method=\"off\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin_last_edited=\"on|tablet\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" global_parent=\"223328\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223328\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" global_parent=\"223328\" _builder_version=\"3.10.1\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\" disabled_on=\"off|on|on\"]\n\n<h2 style=\"text-align: center;\">get in touch</h2>\n\n[/et_pb_text][et_pb_text admin_label=\"Form\" global_parent=\"223328\" _builder_version=\"3.9\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\" text_orientation=\"left\"]\n\n<p style=\"text-align: center;\">[formidable id=\"6\"]\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223328\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Footer - Desktop\" disabled_on=\"on|off|off\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" collapsed=\"off\" prev_background_color=\"#000000\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223313\"][et_pb_row admin_label=\"Footer - Desktop\" global_parent=\"223313\" column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"40px|0px|0|0px|false|false\" make_equal=\"on\" disabled_on=\"on|off|off\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" global_parent=\"223313\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" global_parent=\"223313\" _builder_version=\"3.25.3\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" text_text_color=\"#232323\" text_orientation=\"left\"]\n\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>\n\n[/et_pb_text][et_pb_code global_parent=\"223313\"]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" global_parent=\"223313\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223313\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width=\"80%\" /][/et_pb_column][et_pb_column type=\"1_4\" global_parent=\"223313\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Atvantage\" global_parent=\"223313\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\" /][/et_pb_column][et_pb_column type=\"1_4\" global_parent=\"223313\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Dennis Moss\" global_parent=\"223313\" src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" disabled_on=\"on|on|on\" collapsed=\"on\" prev_background_color=\"#000000\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223314\"][et_pb_row admin_label=\"Footer - Tablet\" global_parent=\"223314\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" global_parent=\"223314\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" global_parent=\"223314\" _builder_version=\"3.15\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]\n\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>\n\n[/et_pb_text][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n<p> </p>\n\n[/et_pb_image][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" disabled_on=\"off||\"]\n\n<p> </p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Footer - Tablet\" global_parent=\"223314\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\" disabled_on=\"on|on|on\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" global_parent=\"223314\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Atvantage\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]\n\n<p> </p>\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" global_parent=\"223314\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Dennis Moss\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n<p> </p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Footer - Phone\" disabled_on=\"off|on|on\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" locked=\"off\" disabled=\"off\" collapsed=\"off\" prev_background_color=\"#000000\" next_background_color=\"#a6bf96\" module_class=\"footer-phone\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223315\"][et_pb_row admin_label=\"Footer - Phobe\" global_parent=\"223315\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.10.1\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" width=\"74%\" max_width=\"74%\"][et_pb_column type=\"4_4\" global_parent=\"223315\" custom_padding__hover=\"|||\" custom_padding=\"22px|||\"][et_pb_text admin_label=\"Sales\" global_parent=\"223315\" _builder_version=\"3.15\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" text_orientation=\"left\"]\n\n</p>\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>\n<p>\n\n[/et_pb_text][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223315\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" _builder_version=\"3.15\" align_last_edited=\"on|desktop\" align_tablet=\"center\"]\n\n</p>\n<p> </p>\n<p>\n\n[/et_pb_image][et_pb_image admin_label=\"Atvantage\" global_parent=\"223315\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" align=\"center\" _builder_version=\"3.15\" module_alignment=\"center\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align_last_edited=\"on|desktop\" align_tablet=\"center\"]\n\n</p>\n<p> </p>\n<p>\n\n[/et_pb_image][et_pb_image admin_label=\"Dennis Moss\" global_parent=\"223315\" src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" align=\"center\" _builder_version=\"3.15\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align_last_edited=\"on|desktop\" align_tablet=\"center\"]\n\n</p>\n<p> </p>\n<p>\n\n[/et_pb_image][et_pb_code global_parent=\"223315\" _builder_version=\"3.15\"]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" disabled_on=\"on|off|off\" collapsed=\"on\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\" global_module=\"223310\"][et_pb_row admin_label=\"Bottom Footer - Desktop\" global_parent=\"223310\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"15px|0px|11px|0px|false|false\" _builder_version=\"3.25\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" global_parent=\"223310\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Logo\" global_parent=\"223310\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" module_alignment=\"right\" /][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223310\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text global_parent=\"223310\" _builder_version=\"3.15\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]\n\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223310\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Copyright\" global_parent=\"223310\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" module_alignment=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Bottom Footer - Tablet\" disabled_on=\"on|off|on\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" disabled=\"off\" module_class=\"bottom-tablet\" prev_background_color=\"#000000\" collapsed=\"on\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223311\"][et_pb_row admin_label=\"Bottom Footer - Phone\" global_parent=\"223311\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"15px|0px|11px|0px|false|false\" _builder_version=\"3.10.1\" width=\"80%\" max_width=\"1080px\"][et_pb_column type=\"4_4\" global_parent=\"223311\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text global_parent=\"223311\" _builder_version=\"3.15\" text_orientation=\"left\"]\n\n</p>\n<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Bottom Footer - Phone\" disabled_on=\"off|on|on\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" collapsed=\"on\" prev_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223312\"][et_pb_row admin_label=\"Bottom Footer - Phone\" global_parent=\"223312\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"15px|0px|11px|0px|false|false\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" global_parent=\"223312\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text global_parent=\"223312\" _builder_version=\"3.15\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" text_orientation=\"left\"]\n\n<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','houseplans','','publish','closed','closed','','houseplans','','','2019-10-10 12:00:39','2019-10-10 10:00:39','',0,'https://www.stadsig.co.za/et_pb_layout/houseplans/',0,'et_pb_layout','',0),(226008,1,'2019-10-10 12:02:41','2019-10-10 10:02:41','[et_pb_section bb_built=\"1\" admin_label=\"Hero Main Image - DesktopTablet\" disabled_on=\"on|off|off\" module_class=\"section\" _builder_version=\"3.22.3\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Hero Image - All Devices\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_phone=\"76px||345px|\" custom_margin=\"2px||0px|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_HousePlansHeader.jpg\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Hero Image - All Devices\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_phone=\"35px||114px||false|false\" custom_margin=\"2px||0px|\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|on|on\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_header_Mobile.jpg\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Senses Image - Tablet/Phone\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" _builder_version=\"3.22.3\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Image\" custom_padding=\"0px||2px||false|false\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_strelitzia.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width=\"9%\" module_alignment=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"H1 Caption - All Devices\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"H1 Caption\" custom_padding=\"0px||2px||false|false\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"your taste manifested\" _builder_version=\"3.25.3\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]\n\n<h1 style=\"text-align: center;\">harmonious cape homes</h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"H1 Caption - All Devices\" custom_padding_last_edited=\"on|phone\" disabled_on=\"on|off|off\" _builder_version=\"3.22.3\" custom_padding=\"47px||0||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"H1 Caption\" custom_padding=\"0px||2px||false|false\" _builder_version=\"3.25\" width=\"60%\" max_width=\"60%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"60%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs module_class=\"equal-tabs\" _builder_version=\"3.25.3\" body_font=\"||||||||\" border_width_all=\"0px\" custom_margin=\"|0px||0px\" custom_padding=\"|0px||0px\"][et_pb_tab title=\"unit 1\" _builder_version=\"3.25.3\" body_font=\"||||||||\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 1</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><img class=\"wp-image-224714 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit1_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></p>[/et_pb_tab][et_pb_tab title=\"unit 2\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 2</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<img class=\"wp-image-224716 alignnone size-full\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit2_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" />[/et_pb_tab][et_pb_tab title=\"unit 3\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 3</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224719 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit3_full.jpg\" alt=\"\" width=\"1298\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 4\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 4</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 156,9m<sup>2</sup> | OUTSIDE COVERED AREA 23,9m<sup>2</sup> | TOTAL 180,8m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224721 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit4_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 5\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 5</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 160m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 184m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224723 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit5_full.jpg\" alt=\"\" width=\"1297\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 6\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 6</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 162,8m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 186,8m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224725 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit6_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 7\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 7</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 164,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 188,3m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224704 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit7_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 8\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 8</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 166,1m<sup>2</sup> | OUTSIDE COVERED AREA 25,5m<sup>2</sup> | TOTAL 191,6m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224706 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit8_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 9\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 9</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 185,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 209,3m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224708 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit9_full.jpg\" alt=\"\" width=\"1298\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 10\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 10</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 210,4m<sup>2</sup> | OUTSIDE COVERED AREA 23,5m<sup>2</sup> | TOTAL 233,9m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224710 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit10_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][et_pb_tab title=\"unit 11\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 11</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 275,7m<sup>2</sup> | OUTSIDE COVERED AREA 22,7m<sup>2</sup> | TOTAL 298,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224712 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit11_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\n[/et_pb_tab][/et_pb_tabs][et_pb_code]<style><!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 9%; /*change width of tabs here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media screen and (max-width: 768px){ /*change device breakpoint here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 100%; <!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->/*-------Tab Colors ----------------*/<!-- [et_pb_line_break_holder] -->li.et_pb_tab_0 {<!-- [et_pb_line_break_holder] --> background-color: #B9A5C6;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_1 {<!-- [et_pb_line_break_holder] --> background-color: #FDE9CF;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_2 {<!-- [et_pb_line_break_holder] --> background-color: #FBA7B2;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_3 {<!-- [et_pb_line_break_holder] --> background-color: #B2FA8E;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_4 {<!-- [et_pb_line_break_holder] --> background-color: #F8D2F9;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_5 {<!-- [et_pb_line_break_holder] --> background-color: #BAE3BC;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_6{<!-- [et_pb_line_break_holder] --> background-color: #A7C9FB;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_7 {<!-- [et_pb_line_break_holder] --> background-color: #FBBC6A;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_8 {<!-- [et_pb_line_break_holder] --> background-color: #BDFEFA;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_9 {<!-- [et_pb_line_break_holder] --> background-color: #F2F2F2;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_10 {<!-- [et_pb_line_break_holder] --> background-color: #F8EA7C;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls:after {<!-- [et_pb_line_break_holder] --> display: block;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> z-index: 9;<!-- [et_pb_line_break_holder] --> top: -1px;<!-- [et_pb_line_break_holder] --> border-top: none;<!-- [et_pb_line_break_holder] --> content: \"\";<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] -->border-right: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls {<!-- [et_pb_line_break_holder] -->background-color: rgba(255,255,255,0) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tab {<!-- [et_pb_line_break_holder] --> padding: 24px 0px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"H1 Caption - All Devices\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|on|on\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"H1 Caption\" custom_padding=\"0px||0px||false|false\" _builder_version=\"3.25\" width=\"92%\" max_width=\"92%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"92%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_toggle admin_label=\"Toggle 1\" title=\"unit type 1\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#b9a5c6\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 1</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit1_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 2\" title=\"unit type 2\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fde9cf\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 2</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit2_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 3\" title=\"unit type 3\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fba7b2\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 3</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit3_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 4\" title=\"unit type 4\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#b2fa8e\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 4</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 156,9m<sup>2</sup> | OUTSIDE COVERED AREA 23,9m<sup>2</sup> | TOTAL 180,8m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit4_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 5\" title=\"unit type 5\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f8d2f9\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 5</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 160m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 184m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit5_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 6\" title=\"unit type 6\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#bae3bc\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 6</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 162,8m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 186,8m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit6_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 7\" title=\"unit type 7\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#a7c9fb\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 7</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 164,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 188,3m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit7_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 8\" title=\"unit type 8\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fbbc6a\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 8</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet</p>\n<p style=\"text-align: center;\">FLOOR AREA 166,1m<sup>2</sup> | OUTSIDE COVERED AREA 25,5m<sup>2</sup> | TOTAL 191,6m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit8_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 9\" title=\"unit type 9\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#bdfefa\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 9</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 185,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 209,3m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit9_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 10\" title=\"unit type 10\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f2f2f2\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 10</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 210,4m<sup>2</sup> | OUTSIDE COVERED AREA 23,5m<sup>2</sup> | TOTAL 233,9m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit10_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 11\" title=\"unit type 11\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f8ea7c\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]\n\n<h3 style=\"text-align: center;\">unit type 11</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 275,7m<sup>2</sup> | OUTSIDE COVERED AREA 22,7m<sup>2</sup> | TOTAL 298,4m<sup>2</sup></p>\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit11_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n\n[/et_pb_toggle][et_pb_code]<style><!-- [et_pb_line_break_holder] -->/**************************** toggle custom 3 **************************/<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle {<!-- [et_pb_line_break_holder] --> border: none;<!-- [et_pb_line_break_holder] --> transition: 0.4s<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3 .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> font-size: 30px !important ;<!-- [et_pb_line_break_holder] --> content: \"3\" !important;<!-- [et_pb_line_break_holder] --> -webkit-transition: 0.3s;<!-- [et_pb_line_break_holder] --> transition: 0.3s;<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle_open .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> color: #939692;<!-- [et_pb_line_break_holder] --> -ms-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> -webkit-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->.et_pb_accordion .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_toggle .et_pb_toggle_title, .et_pb_toggle h5.et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title {<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> padding: 50px;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][et_pb_divider color=\"rgba(46,163,242,0)\" _builder_version=\"3.15\" height=\"25px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" disabled_on=\"off|off|off\" _builder_version=\"3.22.3\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px|false|false\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row custom_padding=\"27px|0px|2px|0px|false|false\" _builder_version=\"3.25\" width=\"60%\" max_width=\"60%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"60%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.25.3\" text_font=\"Tajawal|300|||||||\" text_font_size=\"14px\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" text_orientation=\"left\"]\n\n<h3 style=\"text-align: center;\">download documents</h3>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"21px|0px|0|0px|false|false\" _builder_version=\"3.25\" max_width=\"80%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on||\" _builder_version=\"3.26.4\" text_font=\"Tajawal|500|||||||\" text_font_size=\"15px\" text_orientation=\"left\"]\n\n<p style=\"text-align: center;\"><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_GeneralSpecifications_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">general specifications</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">interior finishes</a><span style=\"color: #ffffff;\">_____</span><a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HOA</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">optional extras</a><span style=\"color: #ffffff;\">______</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigPricelistJuly2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">price list</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_1octFinal.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">deed of sale</a> <span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">building agreement </a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">house plans 1-11</a></p>\n\n[/et_pb_text][et_pb_text disabled_on=\"off|on|on\" _builder_version=\"3.15\" text_font=\"Tajawal|200|||||||\" text_font_size=\"15px\" custom_padding=\"15px|||\" text_orientation=\"left\"]\n\n<p style=\"text-align: center;\"><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_GeneralSpecifications_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">general specifications</a><span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">interior finishes</a><span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HOA</a><span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">optional extras</a><span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\" https://www.stadsig.co.za/wp-content/uploads/STADSIG_SalesPrices_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">price list</a><span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_1octFinal.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">deed of sale</a> <span style=\"color: #ffffff;\">\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">building agreement </a>\n<a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">house plans 1-11</a></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Explore Story Section\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.22.3\" custom_padding=\"1px||15px||false|false\" custom_padding_phone=\"35px|||\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Text Area\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0||10px||false|false\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.25.3\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"|8%||8%\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]\n\n<p style=\"text-align: center;\">Pitched roofs, neutral tones, plastered walls and vertically proportioned windows are found throughout Stadsig’s freestanding units, which are all in Cape Vernacular style, that uniquely South African fusion of Cape Dutch and contemporary elements. Core buildings are clearly articulated in the traditional ‘letter of the alphabet’ form developed centuries ago by the Dutch, balanced by single-storey abutments behind parapet walls. Each house is carefully placed and oriented to maximise views, privacy and natural light, while offering protection from prevailing winds. Roof overhangs, pergolas with deciduous planting and functional shutters are attractive architectural responses to the hot local climate. The considered combination of covered parking bays with garages set back behind screening pergolas, low garden walls and landscaping elements contribute to qualitative internal streets and squares. Homes cater to modern tastes, with open-plan kitchens and spacious covered entertainment areas with built-in braais - flexibly designed to allow optional stacking doors – all opening onto private gardens. Scale, proportion, detailing and colours create a harmonious and attractive composition, set in a secure family-friendly environment with indigenous planting and mature olive trees.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.22.3\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_LifestyleCollage4.jpg\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_LifestyleCollage5.jpg\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_LifestyleCollage6.jpg\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Desktop/Tablet\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.14\" parallax=\"on\" parallax_method=\"off\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" disabled_on=\"on|off|off\" collapsed=\"on\" prev_background_color=\"#000000\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223327\"][et_pb_row admin_label=\"Contact Desktop/Tablet\" global_parent=\"223327\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"on|tablet\" module_class=\"element\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax.jpg\" parallax=\"on\" parallax_method=\"off\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin_last_edited=\"on|tablet\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" global_parent=\"223327\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223327\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" global_parent=\"223327\" _builder_version=\"3.10.1\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]\n\n<h2 style=\"text-align: center;\">get in touch</h2>\n\n[/et_pb_text][et_pb_text admin_label=\"Form\" global_parent=\"223327\" _builder_version=\"3.9\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\" text_orientation=\"left\"]\n\n<p style=\"text-align: center;\">[formidable id=\"6\"] </p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223327\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Phone\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.17.1\" parallax=\"on\" parallax_method=\"off\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" disabled_on=\"off|on|on\" collapsed=\"on\" prev_background_color=\"#000000\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223328\"][et_pb_row admin_label=\"Contact Phone\" global_parent=\"223328\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_margin=\"|||\" custom_padding_last_edited=\"on|tablet\" module_class=\"element\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_contactParalax1920.jpg\" parallax=\"on\" parallax_method=\"off\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin_last_edited=\"on|tablet\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" global_parent=\"223328\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223328\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" global_parent=\"223328\" _builder_version=\"3.10.1\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\" disabled_on=\"off|on|on\"]\n\n<h2 style=\"text-align: center;\">get in touch</h2>\n\n[/et_pb_text][et_pb_text admin_label=\"Form\" global_parent=\"223328\" _builder_version=\"3.9\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\" text_orientation=\"left\"]\n\n<p style=\"text-align: center;\">[formidable id=\"6\"]\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223328\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Footer - Desktop\" disabled_on=\"on|off|off\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" collapsed=\"off\" prev_background_color=\"#000000\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223313\"][et_pb_row admin_label=\"Footer - Desktop\" global_parent=\"223313\" column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"40px|0px|0|0px|false|false\" make_equal=\"on\" disabled_on=\"on|off|off\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" global_parent=\"223313\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" global_parent=\"223313\" _builder_version=\"3.25.3\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" text_text_color=\"#232323\" text_orientation=\"left\"]\n\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>\n\n[/et_pb_text][et_pb_code global_parent=\"223313\"]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" global_parent=\"223313\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223313\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width=\"80%\" /][/et_pb_column][et_pb_column type=\"1_4\" global_parent=\"223313\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Atvantage\" global_parent=\"223313\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\" /][/et_pb_column][et_pb_column type=\"1_4\" global_parent=\"223313\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Dennis Moss\" global_parent=\"223313\" src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" disabled_on=\"on|on|on\" collapsed=\"on\" prev_background_color=\"#000000\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223314\"][et_pb_row admin_label=\"Footer - Tablet\" global_parent=\"223314\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" global_parent=\"223314\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" global_parent=\"223314\" _builder_version=\"3.15\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]\n\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>\n\n[/et_pb_text][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n<p> </p>\n\n[/et_pb_image][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" disabled_on=\"off||\"]\n\n<p> </p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Footer - Tablet\" global_parent=\"223314\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\" disabled_on=\"on|on|on\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" global_parent=\"223314\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Atvantage\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]\n\n<p> </p>\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" global_parent=\"223314\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Dennis Moss\" global_parent=\"223314\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]\n\n<p> </p>\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Footer - Phone\" disabled_on=\"off|on|on\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" locked=\"off\" disabled=\"off\" collapsed=\"off\" prev_background_color=\"#000000\" next_background_color=\"#a6bf96\" module_class=\"footer-phone\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223315\"][et_pb_row admin_label=\"Footer - Phobe\" global_parent=\"223315\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.10.1\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" width=\"74%\" max_width=\"74%\"][et_pb_column type=\"4_4\" global_parent=\"223315\" custom_padding__hover=\"|||\" custom_padding=\"22px|||\"][et_pb_text admin_label=\"Sales\" global_parent=\"223315\" _builder_version=\"3.15\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" text_orientation=\"left\"]\n\n</p>\n<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>\n<p>\n\n[/et_pb_text][et_pb_image admin_label=\"Pam Golding\" global_parent=\"223315\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" _builder_version=\"3.15\" align_last_edited=\"on|desktop\" align_tablet=\"center\"]\n\n</p>\n<p> </p>\n<p>\n\n[/et_pb_image][et_pb_image admin_label=\"Atvantage\" global_parent=\"223315\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" align=\"center\" _builder_version=\"3.15\" module_alignment=\"center\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align_last_edited=\"on|desktop\" align_tablet=\"center\"]\n\n</p>\n<p> </p>\n<p>\n\n[/et_pb_image][et_pb_image admin_label=\"Dennis Moss\" global_parent=\"223315\" src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" align=\"center\" _builder_version=\"3.15\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align_last_edited=\"on|desktop\" align_tablet=\"center\"]\n\n</p>\n<p> </p>\n<p>\n\n[/et_pb_image][et_pb_code global_parent=\"223315\" _builder_version=\"3.15\"]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" disabled_on=\"on|off|off\" collapsed=\"on\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\" global_module=\"223310\"][et_pb_row admin_label=\"Bottom Footer - Desktop\" global_parent=\"223310\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"15px|0px|11px|0px|false|false\" _builder_version=\"3.25\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" global_parent=\"223310\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Logo\" global_parent=\"223310\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" module_alignment=\"right\" /][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223310\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text global_parent=\"223310\" _builder_version=\"3.15\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]\n\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" global_parent=\"223310\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image admin_label=\"Copyright\" global_parent=\"223310\" src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" module_alignment=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Bottom Footer - Tablet\" disabled_on=\"on|off|on\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" disabled=\"off\" module_class=\"bottom-tablet\" prev_background_color=\"#000000\" collapsed=\"on\" next_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223311\"][et_pb_row admin_label=\"Bottom Footer - Phone\" global_parent=\"223311\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"15px|0px|11px|0px|false|false\" _builder_version=\"3.10.1\" width=\"80%\" max_width=\"1080px\"][et_pb_column type=\"4_4\" global_parent=\"223311\" custom_padding__hover=\"|||\" custom_padding=\"|||\"][et_pb_text global_parent=\"223311\" _builder_version=\"3.15\" text_orientation=\"left\"]\n\n</p>\n<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Bottom Footer - Phone\" disabled_on=\"off|on|on\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" collapsed=\"on\" prev_background_color=\"#000000\" inner_width=\"auto\" inner_max_width=\"1080px\" global_module=\"223312\"][et_pb_row admin_label=\"Bottom Footer - Phone\" global_parent=\"223312\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"15px|0px|11px|0px|false|false\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" global_parent=\"223312\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text global_parent=\"223312\" _builder_version=\"3.15\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" text_orientation=\"left\"]\n\n<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','houseplans1','','publish','closed','closed','','houseplans1','','','2019-10-10 12:02:41','2019-10-10 10:02:41','',0,'https://www.stadsig.co.za/et_pb_layout/houseplans1/',0,'et_pb_layout','',0),(226009,1,'2019-10-10 12:04:35','2019-10-10 10:04:35','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||0||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\" disabled_on=\"on|off|off\" bb_built=\"1\" _i=\"4\" _address=\"4\" template_type=\"section\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"60%\" max_width=\"60%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"60%\" _i=\"0\" _address=\"4.0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"4.0.0\"][et_pb_tabs module_class=\"equal-tabs\" _builder_version=\"3.25.3\" body_font=\"||||||||\" custom_margin=\"|0px||0px\" custom_padding=\"|0px||0px\" border_width_all=\"0px\" _i=\"0\" _address=\"4.0.0.0\"][et_pb_tab title=\"unit 1\" _builder_version=\"3.25.3\" body_font=\"||||||||\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\" _i=\"0\" _address=\"4.0.0.0.0\"]<h3 style=\"text-align: center;\">unit type 1</h3>\r\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r\n<p style=\"text-align: center;\"><img class=\"wp-image-224714 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit1_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></p>[/et_pb_tab][et_pb_tab title=\"unit 2\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\" _i=\"1\" _address=\"4.0.0.0.1\"]<h3 style=\"text-align: center;\">unit type 2</h3>\r\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r\n<img class=\"wp-image-224716 alignnone size-full\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit2_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" />[/et_pb_tab][et_pb_tab title=\"unit 3\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\" _i=\"2\" _address=\"4.0.0.0.2\"]<h3 style=\"text-align: center;\">unit type 3</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224719 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit3_full.jpg\" alt=\"\" width=\"1298\" height=\"485\" /></span></p>\r[/et_pb_tab][et_pb_tab title=\"unit 4\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\" _i=\"3\" _address=\"4.0.0.0.3\"]<h3 style=\"text-align: center;\">unit type 4</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 156,9m<sup>2</sup> | OUTSIDE COVERED AREA 23,9m<sup>2</sup> | TOTAL 180,8m<sup>2</sup></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224721 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit4_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\r[/et_pb_tab][et_pb_tab title=\"unit 5\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\" _i=\"4\" _address=\"4.0.0.0.4\"]<h3 style=\"text-align: center;\">unit type 5</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 160m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 184m<sup>2</sup></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224723 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit5_full.jpg\" alt=\"\" width=\"1297\" height=\"485\" /></span></p>\r[/et_pb_tab][et_pb_tab title=\"unit 6\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\" _i=\"5\" _address=\"4.0.0.0.5\"]<h3 style=\"text-align: center;\">unit type 6</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 2 Garages</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 162,8m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 186,8m<sup>2</sup></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224725 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit6_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\r[/et_pb_tab][et_pb_tab title=\"unit 7\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\" _i=\"6\" _address=\"4.0.0.0.6\"]<h3 style=\"text-align: center;\">unit type 7</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 164,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 188,3m<sup>2</sup></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224704 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit7_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\r[/et_pb_tab][et_pb_tab title=\"unit 8\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\" _i=\"7\" _address=\"4.0.0.0.7\"]<h3 style=\"text-align: center;\">unit type 8</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 166,1m<sup>2</sup> | OUTSIDE COVERED AREA 25,5m<sup>2</sup> | TOTAL 191,6m<sup>2</sup></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224706 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit8_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\r[/et_pb_tab][et_pb_tab title=\"unit 9\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\" _i=\"8\" _address=\"4.0.0.0.8\"]<h3 style=\"text-align: center;\">unit type 9</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 2 Garages</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 185,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 209,3m<sup>2</sup></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224708 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit9_full.jpg\" alt=\"\" width=\"1298\" height=\"485\" /></span></p>\r[/et_pb_tab][et_pb_tab title=\"unit 10\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\" _i=\"9\" _address=\"4.0.0.0.9\"]<h3 style=\"text-align: center;\">unit type 10</h3>\r\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 210,4m<sup>2</sup> | OUTSIDE COVERED AREA 23,5m<sup>2</sup> | TOTAL 233,9m<sup>2</sup></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224710 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit10_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\r[/et_pb_tab][et_pb_tab title=\"unit 11\" _builder_version=\"3.15\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\" _i=\"10\" _address=\"4.0.0.0.10\"]<h3 style=\"text-align: center;\">unit type 11</h3>\r\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 275,7m<sup>2</sup> | OUTSIDE COVERED AREA 22,7m<sup>2</sup> | TOTAL 298,4m<sup>2</sup></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224712 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit11_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>\r[/et_pb_tab][/et_pb_tabs][et_pb_code _i=\"1\" _address=\"4.0.0.1\"]<style><!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 9%; /*change width of tabs here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media screen and (max-width: 768px){ /*change device breakpoint here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 100%; <!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->/*-------Tab Colors ----------------*/<!-- [et_pb_line_break_holder] -->li.et_pb_tab_0 {<!-- [et_pb_line_break_holder] --> background-color: #B9A5C6;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_1 {<!-- [et_pb_line_break_holder] --> background-color: #FDE9CF;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_2 {<!-- [et_pb_line_break_holder] --> background-color: #FBA7B2;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_3 {<!-- [et_pb_line_break_holder] --> background-color: #B2FA8E;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_4 {<!-- [et_pb_line_break_holder] --> background-color: #F8D2F9;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_5 {<!-- [et_pb_line_break_holder] --> background-color: #BAE3BC;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_6{<!-- [et_pb_line_break_holder] --> background-color: #A7C9FB;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_7 {<!-- [et_pb_line_break_holder] --> background-color: #FBBC6A;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_8 {<!-- [et_pb_line_break_holder] --> background-color: #BDFEFA;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_9 {<!-- [et_pb_line_break_holder] --> background-color: #F2F2F2;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_10 {<!-- [et_pb_line_break_holder] --> background-color: #F8EA7C;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls:after {<!-- [et_pb_line_break_holder] --> display: block;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> z-index: 9;<!-- [et_pb_line_break_holder] --> top: -1px;<!-- [et_pb_line_break_holder] --> border-top: none;<!-- [et_pb_line_break_holder] --> content: \"\";<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] -->border-right: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls {<!-- [et_pb_line_break_holder] -->background-color: rgba(255,255,255,0) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tab {<!-- [et_pb_line_break_holder] --> padding: 24px 0px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','houseplans-H1Caption','','publish','closed','closed','','houseplans-h1caption','','','2019-10-10 12:04:35','2019-10-10 10:04:35','',0,'https://www.stadsig.co.za/et_pb_layout/houseplans-h1caption/',0,'et_pb_layout','',0),(226010,1,'2019-10-10 12:05:12','2019-10-10 10:05:12','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\" disabled_on=\"off|on|on\" bb_built=\"1\" _i=\"5\" _address=\"5\" template_type=\"section\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"92%\" max_width=\"92%\" custom_padding=\"0px||0px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"92%\" _i=\"0\" _address=\"5.0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"5.0.0\"][et_pb_toggle title=\"unit type 1\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#b9a5c6\" icon_color=\"#ffffff\" admin_label=\"Toggle 1\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" _i=\"0\" _address=\"5.0.0.0\"]<h3 style=\"text-align: center;\">unit type 1</h3>\r\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p>\r\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit1_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r[/et_pb_toggle][et_pb_toggle title=\"unit type 2\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fde9cf\" icon_color=\"#ffffff\" admin_label=\"Toggle 2\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" _i=\"1\" _address=\"5.0.0.1\"]<h3 style=\"text-align: center;\">unit type 2</h3>\r\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p>\r\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit2_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r[/et_pb_toggle][et_pb_toggle title=\"unit type 3\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fba7b2\" icon_color=\"#ffffff\" admin_label=\"Toggle 3\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" _i=\"2\" _address=\"5.0.0.2\"]<h3 style=\"text-align: center;\">unit type 3</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p>\r\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit3_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r[/et_pb_toggle][et_pb_toggle title=\"unit type 4\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#b2fa8e\" icon_color=\"#ffffff\" admin_label=\"Toggle 4\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" _i=\"3\" _address=\"5.0.0.3\"]<h3 style=\"text-align: center;\">unit type 4</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 156,9m<sup>2</sup> | OUTSIDE COVERED AREA 23,9m<sup>2</sup> | TOTAL 180,8m<sup>2</sup></p>\r\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit4_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r[/et_pb_toggle][et_pb_toggle title=\"unit type 5\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f8d2f9\" icon_color=\"#ffffff\" admin_label=\"Toggle 5\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" _i=\"4\" _address=\"5.0.0.4\"]<h3 style=\"text-align: center;\">unit type 5</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 160m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 184m<sup>2</sup></p>\r\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit5_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r[/et_pb_toggle][et_pb_toggle title=\"unit type 6\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#bae3bc\" icon_color=\"#ffffff\" admin_label=\"Toggle 6\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" _i=\"5\" _address=\"5.0.0.5\"]<h3 style=\"text-align: center;\">unit type 6</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 2 Garages</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 162,8m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 186,8m<sup>2</sup></p>\r\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit6_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r[/et_pb_toggle][et_pb_toggle title=\"unit type 7\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#a7c9fb\" icon_color=\"#ffffff\" admin_label=\"Toggle 7\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" _i=\"6\" _address=\"5.0.0.6\"]<h3 style=\"text-align: center;\">unit type 7</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage | 1 Garage</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 164,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 188,3m<sup>2</sup></p>\r\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit7_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r[/et_pb_toggle][et_pb_toggle title=\"unit type 8\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fbbc6a\" icon_color=\"#ffffff\" admin_label=\"Toggle 8\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" _i=\"7\" _address=\"5.0.0.7\"]<h3 style=\"text-align: center;\">unit type 8</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 166,1m<sup>2</sup> | OUTSIDE COVERED AREA 25,5m<sup>2</sup> | TOTAL 191,6m<sup>2</sup></p>\r\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit8_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r[/et_pb_toggle][et_pb_toggle title=\"unit type 9\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#bdfefa\" icon_color=\"#ffffff\" admin_label=\"Toggle 9\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" _i=\"8\" _address=\"5.0.0.8\"]<h3 style=\"text-align: center;\">unit type 9</h3>\r\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 2 Garages</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 185,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 209,3m<sup>2</sup></p>\r\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit9_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r[/et_pb_toggle][et_pb_toggle title=\"unit type 10\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f2f2f2\" icon_color=\"#ffffff\" admin_label=\"Toggle 10\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" _i=\"9\" _address=\"5.0.0.9\"]<h3 style=\"text-align: center;\">unit type 10</h3>\r\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 210,4m<sup>2</sup> | OUTSIDE COVERED AREA 23,5m<sup>2</sup> | TOTAL 233,9m<sup>2</sup></p>\r\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit10_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r[/et_pb_toggle][et_pb_toggle title=\"unit type 11\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f8ea7c\" icon_color=\"#ffffff\" admin_label=\"Toggle 11\" module_class=\"toggle_custom_3\" _builder_version=\"3.15\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" _i=\"10\" _address=\"5.0.0.10\"]<h3 style=\"text-align: center;\">unit type 11</h3>\r\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\r\n<p style=\"text-align: center;\">FLOOR AREA 275,7m<sup>2</sup> | OUTSIDE COVERED AREA 22,7m<sup>2</sup> | TOTAL 298,4m<sup>2</sup></p>\r\n<img class=\"size-full wp-image-224715 aligncenter\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit11_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" />\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\r[/et_pb_toggle][et_pb_code _i=\"11\" _address=\"5.0.0.11\"]<style><!-- [et_pb_line_break_holder] -->/**************************** toggle custom 3 **************************/<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle {<!-- [et_pb_line_break_holder] --> border: none;<!-- [et_pb_line_break_holder] --> transition: 0.4s<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3 .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> font-size: 30px !important ;<!-- [et_pb_line_break_holder] --> content: \"3\" !important;<!-- [et_pb_line_break_holder] --> -webkit-transition: 0.3s;<!-- [et_pb_line_break_holder] --> transition: 0.3s;<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle_open .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> color: #939692;<!-- [et_pb_line_break_holder] --> -ms-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> -webkit-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->.et_pb_accordion .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_toggle .et_pb_toggle_title, .et_pb_toggle h5.et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title {<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> padding: 50px;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][et_pb_divider color=\"rgba(46,163,242,0)\" _builder_version=\"3.15\" height=\"25px\" _i=\"12\" _address=\"5.0.0.12\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','houseplans-toggles','','publish','closed','closed','','houseplans-toggles','','','2019-10-10 12:05:12','2019-10-10 10:05:12','',0,'https://www.stadsig.co.za/et_pb_layout/houseplans-toggles/',0,'et_pb_layout','',0),(226015,1,'2019-10-10 12:12:12','2019-10-10 10:12:12','[et_pb_section bb_built=\"1\" admin_label=\"H1 Caption - All Devices\" custom_padding_last_edited=\"on|phone\" disabled_on=\"on|off|off\" _builder_version=\"3.22.3\" custom_padding=\"47px||0||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\" next_background_color=\"#000000\"][et_pb_row admin_label=\"H1 Caption\" custom_padding=\"0px||2px||false|false\" _builder_version=\"3.25\" width=\"60%\" max_width=\"60%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"60%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs module_class=\"equal-tabs\" _builder_version=\"3.29.3\" border_width_all=\"0px\" custom_margin=\"|0px||0px\" custom_padding=\"|0px||0px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" tab_text_shadow_horizontal_length=\"tab_text_shadow_style,%91object Object%93\" tab_text_shadow_horizontal_length_tablet=\"0px\" tab_text_shadow_vertical_length=\"tab_text_shadow_style,%91object Object%93\" tab_text_shadow_vertical_length_tablet=\"0px\" tab_text_shadow_blur_strength=\"tab_text_shadow_style,%91object Object%93\" tab_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"][et_pb_tab title=\"unit 1\" _builder_version=\"3.29.3\" body_font=\"||||||||\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]\n\n<h3 style=\"text-align: center;\">unit type 1</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><img class=\"wp-image-224714 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit1_full.jpg\" alt=\"\" width=\"1299\" height=\"485\"></p>\n\n[/et_pb_tab][et_pb_tab title=\"unit 2\" _builder_version=\"3.29.3\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]\n\n<h3 style=\"text-align: center;\">unit type 2</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p><img class=\"wp-image-224716 alignnone size-full\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit2_full.jpg\" alt=\"\" width=\"1299\" height=\"485\">\n\n[/et_pb_tab][et_pb_tab title=\"unit 3\" _builder_version=\"3.29.3\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]\n\n</p><h3 style=\"text-align: center;\">unit type 3</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"wp-image-224719 alignnone size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnit3_full.jpg\" alt=\"\" width=\"1298\" height=\"485\"></span></p>\n\n[/et_pb_tab][/et_pb_tabs][et_pb_code _builder_version=\"3.29.3\" z_index_tablet=\"500\"]<style><!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 9%; /*change width of tabs here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media screen and (max-width: 768px){ /*change device breakpoint here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 100%; <!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->/*-------Tab Colors ----------------*/<!-- [et_pb_line_break_holder] -->li.et_pb_tab_0 {<!-- [et_pb_line_break_holder] --> background-color: #B9A5C6;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_1 {<!-- [et_pb_line_break_holder] --> background-color: #FDE9CF;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_2 {<!-- [et_pb_line_break_holder] --> background-color: #FBA7B2;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_3 {<!-- [et_pb_line_break_holder] --> background-color: #B2FA8E;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls:after {<!-- [et_pb_line_break_holder] --> display: block;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> z-index: 9;<!-- [et_pb_line_break_holder] --> top: -1px;<!-- [et_pb_line_break_holder] --> border-top: none;<!-- [et_pb_line_break_holder] --> content: \"\";<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] -->border-right: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls {<!-- [et_pb_line_break_holder] -->background-color: rgba(255,255,255,0) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tab {<!-- [et_pb_line_break_holder] --> padding: 24px 0px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"H1 Caption - All Devices\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|on|on\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"H1 Caption\" custom_padding=\"0px||0px||false|false\" _builder_version=\"3.25\" width=\"92%\" max_width=\"92%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"92%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_toggle admin_label=\"Toggle 1\" title=\"unit type 1\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#b9a5c6\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.29.3\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" text_shadow_horizontal_length=\"text_shadow_style,%91object Object%93\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length=\"text_shadow_style,%91object Object%93\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength=\"text_shadow_style,%91object Object%93\" text_shadow_blur_strength_tablet=\"1px\" title_text_shadow_horizontal_length=\"title_text_shadow_style,%91object Object%93\" title_text_shadow_horizontal_length_tablet=\"0px\" title_text_shadow_vertical_length=\"title_text_shadow_style,%91object Object%93\" title_text_shadow_vertical_length_tablet=\"0px\" title_text_shadow_blur_strength=\"title_text_shadow_style,%91object Object%93\" title_text_shadow_blur_strength_tablet=\"1px\" closed_title_text_shadow_horizontal_length=\"closed_title_text_shadow_style,%91object Object%93\" closed_title_text_shadow_horizontal_length_tablet=\"0px\" closed_title_text_shadow_vertical_length=\"closed_title_text_shadow_style,%91object Object%93\" closed_title_text_shadow_vertical_length_tablet=\"0px\" closed_title_text_shadow_blur_strength=\"closed_title_text_shadow_style,%91object Object%93\" closed_title_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\n\n<h3 style=\"text-align: center;\">unit type 1</h3><p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p><p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p><p style=\"text-align: center; font-size: 16px; font-weight: 400;\"> </p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 2\" title=\"unit type 2\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fde9cf\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.29.3\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" text_shadow_horizontal_length=\"text_shadow_style,%91object Object%93\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length=\"text_shadow_style,%91object Object%93\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength=\"text_shadow_style,%91object Object%93\" text_shadow_blur_strength_tablet=\"1px\" title_text_shadow_horizontal_length=\"title_text_shadow_style,%91object Object%93\" title_text_shadow_horizontal_length_tablet=\"0px\" title_text_shadow_vertical_length=\"title_text_shadow_style,%91object Object%93\" title_text_shadow_vertical_length_tablet=\"0px\" title_text_shadow_blur_strength=\"title_text_shadow_style,%91object Object%93\" title_text_shadow_blur_strength_tablet=\"1px\" closed_title_text_shadow_horizontal_length=\"closed_title_text_shadow_style,%91object Object%93\" closed_title_text_shadow_horizontal_length_tablet=\"0px\" closed_title_text_shadow_vertical_length=\"closed_title_text_shadow_style,%91object Object%93\" closed_title_text_shadow_vertical_length_tablet=\"0px\" closed_title_text_shadow_blur_strength=\"closed_title_text_shadow_style,%91object Object%93\" closed_title_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\n\n<h3 style=\"text-align: center;\">unit type 2</h3><p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p><p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p><p style=\"text-align: center; font-size: 16px; font-weight: 400;\"> </p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle 3\" title=\"unit type 3\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fba7b2\" icon_color=\"#ffffff\" module_class=\"toggle_custom_3\" _builder_version=\"3.29.3\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\" text_shadow_horizontal_length=\"text_shadow_style,%91object Object%93\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length=\"text_shadow_style,%91object Object%93\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength=\"text_shadow_style,%91object Object%93\" text_shadow_blur_strength_tablet=\"1px\" title_text_shadow_horizontal_length=\"title_text_shadow_style,%91object Object%93\" title_text_shadow_horizontal_length_tablet=\"0px\" title_text_shadow_vertical_length=\"title_text_shadow_style,%91object Object%93\" title_text_shadow_vertical_length_tablet=\"0px\" title_text_shadow_blur_strength=\"title_text_shadow_style,%91object Object%93\" title_text_shadow_blur_strength_tablet=\"1px\" closed_title_text_shadow_horizontal_length=\"closed_title_text_shadow_style,%91object Object%93\" closed_title_text_shadow_horizontal_length_tablet=\"0px\" closed_title_text_shadow_vertical_length=\"closed_title_text_shadow_style,%91object Object%93\" closed_title_text_shadow_vertical_length_tablet=\"0px\" closed_title_text_shadow_blur_strength=\"closed_title_text_shadow_style,%91object Object%93\" closed_title_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength=\"body_text_shadow_style,%91object Object%93\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength=\"body_link_text_shadow_style,%91object Object%93\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength=\"body_ul_text_shadow_style,%91object Object%93\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength=\"body_ol_text_shadow_style,%91object Object%93\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength=\"body_quote_text_shadow_style,%91object Object%93\" body_quote_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" z_index_tablet=\"500\"]\n\n<h3 style=\"text-align: center;\">unit type 3</h3><p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p><p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p><p style=\"text-align: center; font-size: 16px; font-weight: 400;\"> </p>\n\n[/et_pb_toggle][et_pb_code _builder_version=\"3.29.3\"]<style><!-- [et_pb_line_break_holder] -->/**************************** toggle custom 3 **************************/<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle {<!-- [et_pb_line_break_holder] --> border: none;<!-- [et_pb_line_break_holder] --> transition: 0.4s<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3 .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> font-size: 30px !important ;<!-- [et_pb_line_break_holder] --> content: \"3\" !important;<!-- [et_pb_line_break_holder] --> -webkit-transition: 0.3s;<!-- [et_pb_line_break_holder] --> transition: 0.3s;<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle_open .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> color: #939692;<!-- [et_pb_line_break_holder] --> -ms-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> -webkit-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->.et_pb_accordion .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_toggle .et_pb_toggle_title, .et_pb_toggle h5.et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title {<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> padding: 50px;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][et_pb_divider color=\"rgba(46,163,242,0)\" _builder_version=\"3.15\" height=\"25px\" /][/et_pb_column][/et_pb_row][/et_pb_section]','HouseTabs','','publish','closed','closed','','housetabs','','','2019-10-10 12:12:12','2019-10-10 10:12:12','',0,'https://www.stadsig.co.za/et_pb_layout/housetabs/',0,'et_pb_layout','',0),(226016,1,'2019-11-14 04:05:52','2019-11-14 02:05:52','','frm_after_create_entry','https://hooks.zapier.com/hooks/standard/1351380/4c33a80381674b8e84c8f4ec04ad6b2d/','publish','closed','closed','','frm_after_create_entry-3','','','2019-11-14 04:05:52','2019-11-14 02:05:52','',0,'https://www.stadsig.co.za/frm_api/frm_after_create_entry-3/',0,'frm_api','',0),(226064,1,'2020-01-14 09:15:52','2020-01-14 07:15:52','','Stadsig_Website_1920_homeHeader','','inherit','open','closed','','stadsig_website_1920_homeheader','','','2020-01-14 09:15:52','2020-01-14 07:15:52','',0,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_1920_homeHeader.jpg',0,'attachment','image/jpeg',0),(226069,1,'2020-01-14 09:38:27','2020-01-14 07:38:27','','Stadsig_NewContactParalax_1280','','inherit','open','closed','','stadsig_newcontactparalax_1280','','','2020-01-14 09:38:27','2020-01-14 07:38:27','',58,'https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg',0,'attachment','image/jpeg',0),(226074,1,'2020-01-14 09:54:03','2020-01-14 07:54:03','','HouseImage1_850','','inherit','open','closed','','houseimage1_850','','','2020-01-14 09:54:03','2020-01-14 07:54:03','',58,'https://www.stadsig.co.za/wp-content/uploads/HouseImage1_850.jpg',0,'attachment','image/jpeg',0),(226075,1,'2020-01-14 09:54:38','2020-01-14 07:54:38','','HouseImage2_850','','inherit','open','closed','','houseimage2_850','','','2020-01-14 09:54:38','2020-01-14 07:54:38','',58,'https://www.stadsig.co.za/wp-content/uploads/HouseImage2_850.jpg',0,'attachment','image/jpeg',0),(226076,1,'2020-01-14 09:55:31','2020-01-14 07:55:31','','HouseImage3_850','','inherit','open','closed','','houseimage3_850','','','2020-01-14 09:55:31','2020-01-14 07:55:31','',58,'https://www.stadsig.co.za/wp-content/uploads/HouseImage3_850.jpg',0,'attachment','image/jpeg',0),(226079,1,'2020-01-14 09:59:25','2020-01-14 07:59:25','','feather-2_450','','inherit','open','closed','','feather-2_450','','','2020-01-14 09:59:25','2020-01-14 07:59:25','',58,'https://www.stadsig.co.za/wp-content/uploads/feather-2_450.png',0,'attachment','image/png',0),(226094,1,'2020-01-14 12:11:02','2020-01-14 10:11:02','','HomeCover_Mobile_650','','inherit','open','closed','','homecover_mobile_650','','','2020-01-14 12:11:02','2020-01-14 10:11:02','',58,'https://stadsig.co.za/wp-content/uploads/HomeCover_Mobile_650.jpg',0,'attachment','image/jpeg',0),(226097,1,'2020-01-14 12:46:26','2020-01-14 10:46:26','','Gallery_ArtistsImpression_1','','inherit','open','closed','','gallery_artistsimpression_1','','','2020-01-14 12:46:26','2020-01-14 10:46:26','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_ArtistsImpression_1.jpg',0,'attachment','image/jpeg',0),(226098,1,'2020-01-14 12:46:41','2020-01-14 10:46:41','','Gallery_ArtistsImpression_2','','inherit','open','closed','','gallery_artistsimpression_2','','','2020-01-14 12:46:41','2020-01-14 10:46:41','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_ArtistsImpression_2.jpg',0,'attachment','image/jpeg',0),(226099,1,'2020-01-14 12:47:00','2020-01-14 10:47:00','','Gallery_ArtistsImpression_3','','inherit','open','closed','','gallery_artistsimpression_3','','','2020-01-14 12:47:00','2020-01-14 10:47:00','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_ArtistsImpression_3.jpg',0,'attachment','image/jpeg',0),(226100,1,'2020-01-14 12:47:16','2020-01-14 10:47:16','','Gallery_ArtistsImpression_4','','inherit','open','closed','','gallery_artistsimpression_4','','','2020-01-14 12:47:16','2020-01-14 10:47:16','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_ArtistsImpression_4.jpg',0,'attachment','image/jpeg',0),(226101,1,'2020-01-14 12:47:43','2020-01-14 10:47:43','','Gallery_ArtistsImpression_5','','inherit','open','closed','','gallery_artistsimpression_5','','','2020-01-14 12:47:43','2020-01-14 10:47:43','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_ArtistsImpression_5.jpg',0,'attachment','image/jpeg',0),(226102,1,'2020-01-14 12:48:00','2020-01-14 10:48:00','','Gallery_ArtistsImpression_6','','inherit','open','closed','','gallery_artistsimpression_6','','','2020-01-14 12:48:00','2020-01-14 10:48:00','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_ArtistsImpression_6.jpg',0,'attachment','image/jpeg',0),(226103,1,'2020-01-14 12:48:20','2020-01-14 10:48:20','','Gallery_ArtistsImpression_7','','inherit','open','closed','','gallery_artistsimpression_7','','','2020-01-14 12:48:20','2020-01-14 10:48:20','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_ArtistsImpression_7.jpg',0,'attachment','image/jpeg',0),(226104,1,'2020-01-14 12:48:36','2020-01-14 10:48:36','','Gallery_TheEstate_July2019_1','','inherit','open','closed','','gallery_theestate_july2019_1','','','2020-01-14 12:48:36','2020-01-14 10:48:36','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_1.jpg',0,'attachment','image/jpeg',0),(226105,1,'2020-01-14 12:49:04','2020-01-14 10:49:04','','Gallery_TheEstate_July2019_2','','inherit','open','closed','','gallery_theestate_july2019_2','','','2020-01-14 12:49:04','2020-01-14 10:49:04','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_2.jpg',0,'attachment','image/jpeg',0),(226106,1,'2020-01-14 12:49:35','2020-01-14 10:49:35','','Gallery_TheEstate_July2019_3','','inherit','open','closed','','gallery_theestate_july2019_3','','','2020-01-14 12:49:35','2020-01-14 10:49:35','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_3.jpg',0,'attachment','image/jpeg',0),(226107,1,'2020-01-14 12:49:50','2020-01-14 10:49:50','','Gallery_TheEstate_July2019_4','','inherit','open','closed','','gallery_theestate_july2019_4','','','2020-01-14 12:49:50','2020-01-14 10:49:50','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_4.jpg',0,'attachment','image/jpeg',0),(226108,1,'2020-01-14 12:50:03','2020-01-14 10:50:03','','Gallery_TheEstate_July2019_5','','inherit','open','closed','','gallery_theestate_july2019_5','','','2020-01-14 12:50:03','2020-01-14 10:50:03','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_5.jpg',0,'attachment','image/jpeg',0),(226109,1,'2020-01-14 12:50:19','2020-01-14 10:50:19','','Gallery_TheEstate_July2019_6','','inherit','open','closed','','gallery_theestate_july2019_6','','','2020-01-14 12:50:19','2020-01-14 10:50:19','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_6.jpg',0,'attachment','image/jpeg',0),(226110,1,'2020-01-14 12:50:34','2020-01-14 10:50:34','','Gallery_TheEstate_July2019_7','','inherit','open','closed','','gallery_theestate_july2019_7','','','2020-01-14 12:50:34','2020-01-14 10:50:34','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_7.jpg',0,'attachment','image/jpeg',0),(226111,1,'2020-01-14 12:50:57','2020-01-14 10:50:57','','Gallery_TheEstate_July2019_8','','inherit','open','closed','','gallery_theestate_july2019_8','','','2020-01-14 12:50:57','2020-01-14 10:50:57','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_8.jpg',0,'attachment','image/jpeg',0),(226112,1,'2020-01-14 12:51:13','2020-01-14 10:51:13','','Gallery_TheEstate_July2019_9','','inherit','open','closed','','gallery_theestate_july2019_9','','','2020-01-14 12:51:13','2020-01-14 10:51:13','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_9.jpg',0,'attachment','image/jpeg',0),(226113,1,'2020-01-14 12:51:28','2020-01-14 10:51:28','','Gallery_TheEstate_July2019_10','','inherit','open','closed','','gallery_theestate_july2019_10','','','2020-01-14 12:51:28','2020-01-14 10:51:28','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_10.jpg',0,'attachment','image/jpeg',0),(226114,1,'2020-01-14 12:51:42','2020-01-14 10:51:42','','Gallery_TheEstate_July2019_11','','inherit','open','closed','','gallery_theestate_july2019_11','','','2020-01-14 12:51:42','2020-01-14 10:51:42','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_11.jpg',0,'attachment','image/jpeg',0),(226115,1,'2020-01-14 12:52:04','2020-01-14 10:52:04','','Gallery_TheEstate_July2019_12','','inherit','open','closed','','gallery_theestate_july2019_12','','','2020-01-14 12:52:04','2020-01-14 10:52:04','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_12.jpg',0,'attachment','image/jpeg',0),(226116,1,'2020-01-14 12:52:27','2020-01-14 10:52:27','','Gallery_TheEstate_July2019_13','','inherit','open','closed','','gallery_theestate_july2019_13','','','2020-01-14 12:52:27','2020-01-14 10:52:27','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_13.jpg',0,'attachment','image/jpeg',0),(226117,1,'2020-01-14 12:52:46','2020-01-14 10:52:46','','Gallery_TheEstate_July2019_14','','inherit','open','closed','','gallery_theestate_july2019_14','','','2020-01-14 12:52:46','2020-01-14 10:52:46','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_14.jpg',0,'attachment','image/jpeg',0),(226118,1,'2020-01-14 12:53:09','2020-01-14 10:53:09','','Gallery_TheEstate_July2019_15','','inherit','open','closed','','gallery_theestate_july2019_15','','','2020-01-14 12:53:09','2020-01-14 10:53:09','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_15.jpg',0,'attachment','image/jpeg',0),(226119,1,'2020-01-14 12:53:22','2020-01-14 10:53:22','','Gallery_TheEstate_July2019_16','','inherit','open','closed','','gallery_theestate_july2019_16','','','2020-01-14 12:53:22','2020-01-14 10:53:22','',0,'https://stadsig.co.za/wp-content/uploads/Gallery_TheEstate_July2019_16.jpg',0,'attachment','image/jpeg',0),(226120,1,'2020-01-14 16:51:03','2020-01-14 14:51:03','','Stadsig_Gallery_TheEstate_July2019_15-1','','inherit','open','closed','','stadsig_gallery_theestate_july2019_15-1','','','2020-01-14 16:51:03','2020-01-14 14:51:03','',0,'https://stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_15-1.jpg',0,'attachment','image/jpeg',0),(226122,1,'2020-01-14 17:07:00','2020-01-14 15:07:00','','New_Stadsig_AreaLifestyle_header_Mobile','','inherit','open','closed','','new_stadsig_arealifestyle_header_mobile','','','2020-01-14 17:07:00','2020-01-14 15:07:00','',223333,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaLifestyle_header_Mobile.jpg',0,'attachment','image/jpeg',0),(226123,1,'2020-01-14 17:07:15','2020-01-14 15:07:15','','New_Stadsig_AreaThumb1','','inherit','open','closed','','new_stadsig_areathumb1','','','2020-01-14 17:07:15','2020-01-14 15:07:15','',223333,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaThumb1.jpg',0,'attachment','image/jpeg',0),(226124,1,'2020-01-14 17:07:24','2020-01-14 15:07:24','','New_Stadsig_AreaThumb2','','inherit','open','closed','','new_stadsig_areathumb2','','','2020-01-14 17:07:24','2020-01-14 15:07:24','',223333,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaThumb2.jpg',0,'attachment','image/jpeg',0),(226125,1,'2020-01-14 17:07:42','2020-01-14 15:07:42','','New_Stadsig_AreaThumb3','','inherit','open','closed','','new_stadsig_areathumb3','','','2020-01-14 17:07:42','2020-01-14 15:07:42','',223333,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaThumb3.jpg',0,'attachment','image/jpeg',0),(226126,1,'2020-01-14 17:07:55','2020-01-14 15:07:55','','New_Stadsig_map-1','','inherit','open','closed','','new_stadsig_map-1','','','2020-01-14 17:07:55','2020-01-14 15:07:55','',223333,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_map-1.jpg',0,'attachment','image/jpeg',0),(226127,1,'2020-01-14 17:08:08','2020-01-14 15:08:08','','New_Stadsig_Website_AreaHeader','','inherit','open','closed','','new_stadsig_website_areaheader','','','2020-01-14 17:08:08','2020-01-14 15:08:08','',223333,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_AreaHeader.jpg',0,'attachment','image/jpeg',0),(226130,1,'2020-01-14 17:20:09','2020-01-14 15:20:09','','New_Stadsig_breathe','','inherit','open','closed','','new_stadsig_breathe','','','2020-01-14 17:20:09','2020-01-14 15:20:09','',223340,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_breathe.jpg',0,'attachment','image/jpeg',0),(226131,1,'2020-01-14 17:20:15','2020-01-14 15:20:15','','New_Stadsig_estateOverviewMap','','inherit','open','closed','','new_stadsig_estateoverviewmap','','','2020-01-14 17:20:15','2020-01-14 15:20:15','',223340,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_estateOverviewMap.jpg',0,'attachment','image/jpeg',0),(226132,1,'2020-01-14 17:20:31','2020-01-14 15:20:31','','New_Stadsig_Website_EstateOverviewHeader','','inherit','open','closed','','new_stadsig_website_estateoverviewheader','','','2020-01-14 17:20:31','2020-01-14 15:20:31','',223340,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_EstateOverviewHeader.jpg',0,'attachment','image/jpeg',0),(226133,1,'2020-01-14 17:20:53','2020-01-14 15:20:53','','New_Stadsig_Website_LifestyleCollage1','','inherit','open','closed','','new_stadsig_website_lifestylecollage1','','','2020-01-14 17:20:53','2020-01-14 15:20:53','',223340,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage1.jpg',0,'attachment','image/jpeg',0),(226134,1,'2020-01-14 17:21:04','2020-01-14 15:21:04','','New_Stadsig_Website_LifestyleCollage2','','inherit','open','closed','','new_stadsig_website_lifestylecollage2','','','2020-01-14 17:21:04','2020-01-14 15:21:04','',223340,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage2.jpg',0,'attachment','image/jpeg',0),(226135,1,'2020-01-14 17:21:14','2020-01-14 15:21:14','','New_Stadsig_Website_LifestyleCollage3','','inherit','open','closed','','new_stadsig_website_lifestylecollage3','','','2020-01-14 17:21:14','2020-01-14 15:21:14','',223340,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage3.jpg',0,'attachment','image/jpeg',0),(226137,1,'2020-01-14 17:50:39','2020-01-14 15:50:39','','New_Stadsig_HousePlans_header_Mobile','','inherit','open','closed','','new_stadsig_houseplans_header_mobile','','','2020-01-14 17:50:39','2020-01-14 15:50:39','',0,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_HousePlans_header_Mobile.jpg',0,'attachment','image/jpeg',0),(226138,1,'2020-01-14 17:50:55','2020-01-14 15:50:55','','New_Stadsig_strelitzia','','inherit','open','closed','','new_stadsig_strelitzia','','','2020-01-14 17:50:55','2020-01-14 15:50:55','',0,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_strelitzia.jpg',0,'attachment','image/jpeg',0),(226139,1,'2020-01-14 17:51:07','2020-01-14 15:51:07','','New_Stadsig_Website_HousePlansHeader','','inherit','open','closed','','new_stadsig_website_houseplansheader','','','2020-01-14 17:51:07','2020-01-14 15:51:07','',0,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_HousePlansHeader.jpg',0,'attachment','image/jpeg',0),(226140,1,'2020-01-14 17:51:28','2020-01-14 15:51:28','','New_Stadsig_Website_LifestyleCollage4','','inherit','open','closed','','new_stadsig_website_lifestylecollage4','','','2020-01-14 17:51:28','2020-01-14 15:51:28','',0,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage4.jpg',0,'attachment','image/jpeg',0),(226141,1,'2020-01-14 17:51:41','2020-01-14 15:51:41','','New_Stadsig_Website_LifestyleCollage5','','inherit','open','closed','','new_stadsig_website_lifestylecollage5','','','2020-01-14 17:51:41','2020-01-14 15:51:41','',0,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage5.jpg',0,'attachment','image/jpeg',0),(226142,1,'2020-01-14 17:51:56','2020-01-14 15:51:56','','New_Stadsig_Website_LifestyleCollage6','','inherit','open','closed','','new_stadsig_website_lifestylecollage6','','','2020-01-14 17:51:56','2020-01-14 15:51:56','',0,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage6.jpg',0,'attachment','image/jpeg',0),(226143,1,'2020-01-14 17:52:08','2020-01-14 15:52:08','','New_StadsigUnit1_full','','inherit','open','closed','','new_stadsigunit1_full','','','2020-01-14 17:52:08','2020-01-14 15:52:08','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit1_full.jpg',0,'attachment','image/jpeg',0),(226144,1,'2020-01-14 17:52:19','2020-01-14 15:52:19','','New_StadsigUnit1_mobile','','inherit','open','closed','','new_stadsigunit1_mobile','','','2020-01-14 17:52:19','2020-01-14 15:52:19','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit1_mobile.jpg',0,'attachment','image/jpeg',0),(226145,1,'2020-01-14 17:52:35','2020-01-14 15:52:35','','New_StadsigUnit2_full','','inherit','open','closed','','new_stadsigunit2_full','','','2020-01-14 17:52:35','2020-01-14 15:52:35','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit2_full.jpg',0,'attachment','image/jpeg',0),(226146,1,'2020-01-14 17:52:51','2020-01-14 15:52:51','','New_StadsigUnit2_mobile','','inherit','open','closed','','new_stadsigunit2_mobile','','','2020-01-14 17:52:51','2020-01-14 15:52:51','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit2_mobile.jpg',0,'attachment','image/jpeg',0),(226147,1,'2020-01-14 17:53:07','2020-01-14 15:53:07','','New_StadsigUnit3_full','','inherit','open','closed','','new_stadsigunit3_full','','','2020-01-14 17:53:07','2020-01-14 15:53:07','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit3_full.jpg',0,'attachment','image/jpeg',0),(226148,1,'2020-01-14 17:53:28','2020-01-14 15:53:28','','New_StadsigUnit3_mobile','','inherit','open','closed','','new_stadsigunit3_mobile','','','2020-01-14 17:53:28','2020-01-14 15:53:28','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit3_mobile.jpg',0,'attachment','image/jpeg',0),(226149,1,'2020-01-14 17:53:42','2020-01-14 15:53:42','','New_StadsigUnit4_full','','inherit','open','closed','','new_stadsigunit4_full','','','2020-01-14 17:53:42','2020-01-14 15:53:42','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit4_full.jpg',0,'attachment','image/jpeg',0),(226150,1,'2020-01-14 17:54:02','2020-01-14 15:54:02','','New_StadsigUnit4_mobile','','inherit','open','closed','','new_stadsigunit4_mobile','','','2020-01-14 17:54:02','2020-01-14 15:54:02','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit4_mobile.jpg',0,'attachment','image/jpeg',0),(226151,1,'2020-01-14 17:54:13','2020-01-14 15:54:13','','New_StadsigUnit5_full','','inherit','open','closed','','new_stadsigunit5_full','','','2020-01-14 17:54:13','2020-01-14 15:54:13','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit5_full.jpg',0,'attachment','image/jpeg',0),(226152,1,'2020-01-14 17:54:25','2020-01-14 15:54:25','','New_StadsigUnit5_mobile','','inherit','open','closed','','new_stadsigunit5_mobile','','','2020-01-14 17:54:25','2020-01-14 15:54:25','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit5_mobile.jpg',0,'attachment','image/jpeg',0),(226153,1,'2020-01-14 17:54:42','2020-01-14 15:54:42','','New_StadsigUnit6_full','','inherit','open','closed','','new_stadsigunit6_full','','','2020-01-14 17:54:42','2020-01-14 15:54:42','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit6_full.jpg',0,'attachment','image/jpeg',0),(226154,1,'2020-01-14 17:54:59','2020-01-14 15:54:59','','New_StadsigUnit6_mobile','','inherit','open','closed','','new_stadsigunit6_mobile','','','2020-01-14 17:54:59','2020-01-14 15:54:59','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit6_mobile.jpg',0,'attachment','image/jpeg',0),(226155,1,'2020-01-14 17:55:09','2020-01-14 15:55:09','','New_StadsigUnit7_full','','inherit','open','closed','','new_stadsigunit7_full','','','2020-01-14 17:55:09','2020-01-14 15:55:09','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit7_full.jpg',0,'attachment','image/jpeg',0),(226156,1,'2020-01-14 17:55:29','2020-01-14 15:55:29','','New_StadsigUnit7_mobile','','inherit','open','closed','','new_stadsigunit7_mobile','','','2020-01-14 17:55:29','2020-01-14 15:55:29','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit7_mobile.jpg',0,'attachment','image/jpeg',0),(226157,1,'2020-01-14 17:55:41','2020-01-14 15:55:41','','New_StadsigUnit8_full','','inherit','open','closed','','new_stadsigunit8_full','','','2020-01-14 17:55:41','2020-01-14 15:55:41','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit8_full.jpg',0,'attachment','image/jpeg',0),(226158,1,'2020-01-14 17:56:03','2020-01-14 15:56:03','','New_StadsigUnit8_mobile','','inherit','open','closed','','new_stadsigunit8_mobile','','','2020-01-14 17:56:03','2020-01-14 15:56:03','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit8_mobile.jpg',0,'attachment','image/jpeg',0),(226159,1,'2020-01-14 17:56:13','2020-01-14 15:56:13','','New_StadsigUnit9_full','','inherit','open','closed','','new_stadsigunit9_full','','','2020-01-14 17:56:13','2020-01-14 15:56:13','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit9_full.jpg',0,'attachment','image/jpeg',0),(226160,1,'2020-01-14 17:56:30','2020-01-14 15:56:30','','New_StadsigUnit9_mobile','','inherit','open','closed','','new_stadsigunit9_mobile','','','2020-01-14 17:56:30','2020-01-14 15:56:30','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit9_mobile.jpg',0,'attachment','image/jpeg',0),(226161,1,'2020-01-14 17:56:41','2020-01-14 15:56:41','','New_StadsigUnit10_full','','inherit','open','closed','','new_stadsigunit10_full','','','2020-01-14 17:56:41','2020-01-14 15:56:41','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit10_full.jpg',0,'attachment','image/jpeg',0),(226162,1,'2020-01-14 17:56:57','2020-01-14 15:56:57','','New_StadsigUnit10_mobile','','inherit','open','closed','','new_stadsigunit10_mobile','','','2020-01-14 17:56:57','2020-01-14 15:56:57','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit10_mobile.jpg',0,'attachment','image/jpeg',0),(226163,1,'2020-01-14 17:57:14','2020-01-14 15:57:14','','New_StadsigUnit11_full','','inherit','open','closed','','new_stadsigunit11_full','','','2020-01-14 17:57:14','2020-01-14 15:57:14','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit11_full.jpg',0,'attachment','image/jpeg',0),(226164,1,'2020-01-14 17:57:30','2020-01-14 15:57:30','','New_StadsigUnit11_mobile','','inherit','open','closed','','new_stadsigunit11_mobile','','','2020-01-14 17:57:30','2020-01-14 15:57:30','',0,'https://stadsig.co.za/wp-content/uploads/New_StadsigUnit11_mobile.jpg',0,'attachment','image/jpeg',0),(226170,1,'2020-01-14 18:27:59','2020-01-14 16:27:59','','New_Page4_Main_2','','inherit','open','closed','','new_page4_main_2','','','2020-01-14 18:27:59','2020-01-14 16:27:59','',223349,'https://stadsig.co.za/wp-content/uploads/New_Page4_Main_2.jpg',0,'attachment','image/jpeg',0),(226171,1,'2020-01-14 18:28:12','2020-01-14 16:28:12','','New_Page4_Main_Mobile','','inherit','open','closed','','new_page4_main_mobile','','','2020-01-14 18:28:12','2020-01-14 16:28:12','',223349,'https://stadsig.co.za/wp-content/uploads/New_Page4_Main_Mobile.jpg',0,'attachment','image/jpeg',0),(226172,1,'2020-01-14 18:28:24','2020-01-14 16:28:24','','New_Stadsig_developer1','','inherit','open','closed','','new_stadsig_developer1','','','2020-01-14 18:28:24','2020-01-14 16:28:24','',223349,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_developer1.jpg',0,'attachment','image/jpeg',0),(226173,1,'2020-01-14 18:28:34','2020-01-14 16:28:34','','New_Stadsig_developer2','','inherit','open','closed','','new_stadsig_developer2','','','2020-01-14 18:28:34','2020-01-14 16:28:34','',223349,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_developer2.jpg',0,'attachment','image/jpeg',0),(226174,1,'2020-01-14 18:28:52','2020-01-14 16:28:52','','New_Stadsig_developer3','','inherit','open','closed','','new_stadsig_developer3','','','2020-01-14 18:28:52','2020-01-14 16:28:52','',223349,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_developer3.jpg',0,'attachment','image/jpeg',0),(226177,1,'2020-01-14 18:37:20','2020-01-14 16:37:20','','New_Stadsig_Website_DocumentationHeader','','inherit','open','closed','','new_stadsig_website_documentationheader','','','2020-01-14 18:37:20','2020-01-14 16:37:20','',225551,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_DocumentationHeader.jpg',0,'attachment','image/jpeg',0),(226178,1,'2020-01-14 18:37:30','2020-01-14 16:37:30','','New_Stadsig_Website_DocumentationIcon','','inherit','open','closed','','new_stadsig_website_documentationicon','','','2020-01-14 18:37:30','2020-01-14 16:37:30','',225551,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_DocumentationIcon.jpg',0,'attachment','image/jpeg',0),(226179,1,'2020-01-14 18:37:43','2020-01-14 16:37:43','','New_Stadsig_Website_LifestyleCollage7','','inherit','open','closed','','new_stadsig_website_lifestylecollage7','','','2020-01-14 18:37:43','2020-01-14 16:37:43','',225551,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage7.jpg',0,'attachment','image/jpeg',0),(226180,1,'2020-01-14 18:37:53','2020-01-14 16:37:53','','New_Stadsig_Website_LifestyleCollage8','','inherit','open','closed','','new_stadsig_website_lifestylecollage8','','','2020-01-14 18:37:53','2020-01-14 16:37:53','',225551,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage8.jpg',0,'attachment','image/jpeg',0),(226181,1,'2020-01-14 18:38:04','2020-01-14 16:38:04','','New_Stadsig_Website_LifestyleCollage9','','inherit','open','closed','','new_stadsig_website_lifestylecollage9','','','2020-01-14 18:38:04','2020-01-14 16:38:04','',225551,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage9.jpg',0,'attachment','image/jpeg',0),(226185,1,'2020-01-14 18:46:58','2020-01-14 16:46:58','','New_Page5_Main_1_Mobile','','inherit','open','closed','','new_page5_main_1_mobile','','','2020-01-14 18:46:58','2020-01-14 16:46:58','',223363,'https://stadsig.co.za/wp-content/uploads/New_Page5_Main_1_Mobile.jpg',0,'attachment','image/jpeg',0),(226186,1,'2020-01-14 18:47:06','2020-01-14 16:47:06','','New_Stadsig_aromas','','inherit','open','closed','','new_stadsig_aromas','','','2020-01-14 18:47:06','2020-01-14 16:47:06','',223363,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_aromas.jpg',0,'attachment','image/jpeg',0),(226187,1,'2020-01-14 18:47:13','2020-01-14 16:47:13','','New_Stadsig_Website_News1','','inherit','open','closed','','new_stadsig_website_news1','','','2020-01-14 18:47:13','2020-01-14 16:47:13','',223363,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_News1.jpg',0,'attachment','image/jpeg',0),(226188,1,'2020-01-14 18:47:22','2020-01-14 16:47:22','','New_Stadsig_Website_News2','','inherit','open','closed','','new_stadsig_website_news2','','','2020-01-14 18:47:22','2020-01-14 16:47:22','',223363,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_News2.jpg',0,'attachment','image/jpeg',0),(226189,1,'2020-01-14 18:47:38','2020-01-14 16:47:38','','New_Stadsig_Website_NewsHeader','','inherit','open','closed','','new_stadsig_website_newsheader','','','2020-01-14 18:47:38','2020-01-14 16:47:38','',223363,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_NewsHeader.jpg',0,'attachment','image/jpeg',0),(226192,1,'2020-01-14 18:55:48','2020-01-14 16:55:48','','New_Stadsig_galleryContactparalax','','inherit','open','closed','','new_stadsig_gallerycontactparalax','','','2020-01-14 18:55:48','2020-01-14 16:55:48','',223355,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_galleryContactparalax.jpg',0,'attachment','image/jpeg',0),(226193,1,'2020-01-14 18:56:02','2020-01-14 16:56:02','','New_Stadsig_savour','','inherit','open','closed','','new_stadsig_savour','','','2020-01-14 18:56:02','2020-01-14 16:56:02','',223355,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_savour.jpg',0,'attachment','image/jpeg',0),(226197,1,'2020-01-15 07:47:48','2020-01-15 05:47:48','','New_Stadsig_contactHeader','','inherit','open','closed','','new_stadsig_contactheader','','','2020-01-15 07:47:48','2020-01-15 05:47:48','',223369,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_contactHeader.jpg',0,'attachment','image/jpeg',0),(226198,1,'2020-01-15 07:48:03','2020-01-15 05:48:03','','New_Stadsig_contactHeaderMobile','','inherit','open','closed','','new_stadsig_contactheadermobile','','','2020-01-15 07:48:03','2020-01-15 05:48:03','',223369,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_contactHeaderMobile.jpg',0,'attachment','image/jpeg',0),(226202,1,'2020-01-15 14:40:56','2020-01-15 12:40:56','','New_HouseImage2','','inherit','open','closed','','new_houseimage2','','','2020-01-15 14:40:56','2020-01-15 12:40:56','',0,'https://stadsig.co.za/wp-content/uploads/New_HouseImage2.jpg',0,'attachment','image/jpeg',0),(226203,1,'2020-01-15 14:41:05','2020-01-15 12:41:05','','New_HouseImage3','','inherit','open','closed','','new_houseimage3','','','2020-01-15 14:41:05','2020-01-15 12:41:05','',0,'https://stadsig.co.za/wp-content/uploads/New_HouseImage3.jpg',0,'attachment','image/jpeg',0),(226204,1,'2020-01-15 14:41:15','2020-01-15 12:41:15','','News_HouseImage1','','inherit','open','closed','','news_houseimage1','','','2020-01-15 14:41:15','2020-01-15 12:41:15','',0,'https://stadsig.co.za/wp-content/uploads/News_HouseImage1.jpg',0,'attachment','image/jpeg',0),(226207,1,'2020-01-15 14:48:41','2020-01-15 12:48:41','','New_Footer_Copyrite','','inherit','open','closed','','new_footer_copyrite','','','2020-01-15 14:48:41','2020-01-15 12:48:41','',0,'https://stadsig.co.za/wp-content/uploads/New_Footer_Copyrite.png',0,'attachment','image/png',0),(226209,1,'2020-01-15 14:57:26','2020-01-15 12:57:26','','New_Stadsig_copyright','','inherit','open','closed','','new_stadsig_copyright','','','2020-01-15 14:57:26','2020-01-15 12:57:26','',58,'https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png',0,'attachment','image/png',0),(226223,1,'2020-01-17 08:40:15','2020-01-17 06:40:15','','Video','','inherit','open','closed','','video','','','2020-01-17 08:40:15','2020-01-17 06:40:15','',225909,'https://stadsig.co.za/wp-content/uploads/Video.jpg',0,'attachment','image/jpeg',0),(226227,1,'2020-01-17 09:03:49','2020-01-17 07:03:49','[et_pb_section fb_built=\"1\" admin_label=\"Section - divider - All devices\" _builder_version=\"3.22\" custom_margin=\"0px||0px|\" custom_padding=\"0||0||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" admin_label=\"Divider - Green\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.1\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"3px|0px|3px|0px|true|false\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#a6bf96\" _builder_version=\"3.26.6\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22\" custom_padding=\"16px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_savour.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22\" custom_padding=\"17px||52px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"gallery\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#575759\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">gallery</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.22\" custom_padding=\"1px|10%|24px|10%|false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|200|||||||\" text_font_size=\"23px\" hover_enabled=\"0\"]<p style=\"text-align: center;\">artist\'s impressions</p>\r[/et_pb_text][et_pb_slider show_pagination=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" module_id=\"overlay_unique_id_225937\" _builder_version=\"4.1\" custom_padding=\"26%||26%||true\" auto=\"on\" auto_speed=\"7500\" z_index_tablet=\"500\" hover_enabled=\"0\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength_tablet=\"1px\" button_text_shadow_horizontal_length_tablet=\"0px\" button_text_shadow_vertical_length_tablet=\"0px\" button_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" box_shadow_horizontal_button_tablet=\"0px\" box_shadow_vertical_button_tablet=\"0px\" box_shadow_blur_button_tablet=\"40px\" box_shadow_spread_button_tablet=\"0px\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength_tablet=\"1px\" global_module=\"225962\" saved_tabs=\"all\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" background_color_gradient_direction_tablet=\"180deg\" background_color_gradient_direction_phone=\"180deg\" background_color_gradient_start_position_tablet=\"0%\" background_color_gradient_start_position_phone=\"0%\" background_color_gradient_end_position_tablet=\"100%\" background_color_gradient_end_position_phone=\"100%\" child_filter_hue_rotate_tablet=\"0deg\" child_filter_hue_rotate_phone=\"0deg\" child_filter_saturate_tablet=\"100%\" child_filter_saturate_phone=\"100%\" child_filter_brightness_tablet=\"100%\" child_filter_brightness_phone=\"100%\" child_filter_contrast_tablet=\"100%\" child_filter_contrast_phone=\"100%\" child_filter_invert_tablet=\"0%\" child_filter_invert_phone=\"0%\" child_filter_sepia_tablet=\"0%\" child_filter_sepia_phone=\"0%\" child_filter_opacity_tablet=\"100%\" child_filter_opacity_phone=\"100%\" child_filter_blur_tablet=\"0px\" child_filter_blur_phone=\"0px\" hover_transition_duration_tablet=\"300ms\" hover_transition_duration_phone=\"300ms\" hover_transition_delay_tablet=\"0ms\" hover_transition_delay_phone=\"0ms\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_horizontal_length_phone=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_vertical_length_phone=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_blur_strength_phone=\"1px\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_horizontal_length_phone=\"0px\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_vertical_length_phone=\"0px\" body_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_blur_strength_phone=\"1px\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_horizontal_length_phone=\"0px\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_vertical_length_phone=\"0px\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_blur_strength_phone=\"1px\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_horizontal_length_phone=\"0px\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_vertical_length_phone=\"0px\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_blur_strength_phone=\"1px\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_horizontal_length_phone=\"0px\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_vertical_length_phone=\"0px\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_blur_strength_phone=\"1px\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_horizontal_length_phone=\"0px\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_vertical_length_phone=\"0px\" body_quote_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_blur_strength_phone=\"1px\" button_text_shadow_horizontal_length_tablet=\"0px\" button_text_shadow_horizontal_length_phone=\"0px\" button_text_shadow_vertical_length_tablet=\"0px\" button_text_shadow_vertical_length_phone=\"0px\" button_text_shadow_blur_strength_tablet=\"1px\" button_text_shadow_blur_strength_phone=\"1px\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_horizontal_image_phone=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_vertical_image_phone=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_blur_image_phone=\"40px\" box_shadow_spread_image_tablet=\"0px\" box_shadow_spread_image_phone=\"0px\" box_shadow_horizontal_button_tablet=\"0px\" box_shadow_horizontal_button_phone=\"0px\" box_shadow_vertical_button_tablet=\"0px\" box_shadow_vertical_button_phone=\"0px\" box_shadow_blur_button_tablet=\"40px\" box_shadow_blur_button_phone=\"40px\" box_shadow_spread_button_tablet=\"0px\" box_shadow_spread_button_phone=\"0px\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_horizontal_length_phone=\"0px\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_vertical_length_phone=\"0px\" text_shadow_blur_strength_tablet=\"1px\" text_shadow_blur_strength_phone=\"1px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_2.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_3.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_4.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_5.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_6.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_7.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][/et_pb_slider][et_pb_gallery _builder_version=\"4.1\" gallery_ids=\"226103,226102,226101,226100,226099,226098,226097\" posts_number=\"1\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_enabled=\"0\" admin_label=\"Artist Gallery\"][/et_pb_gallery][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|200|||||||\" text_font_size=\"23px\"]<p style=\"text-align: center;\">the estate</p>\r[/et_pb_text][et_pb_slider show_pagination=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" module_id=\"overlay_unique_id_225937\" _builder_version=\"4.1\" custom_padding=\"26%||26%||true\" auto=\"on\" auto_speed=\"7500\" z_index_tablet=\"500\" hover_enabled=\"0\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength_tablet=\"1px\" button_text_shadow_horizontal_length_tablet=\"0px\" button_text_shadow_vertical_length_tablet=\"0px\" button_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" box_shadow_horizontal_button_tablet=\"0px\" box_shadow_vertical_button_tablet=\"0px\" box_shadow_blur_button_tablet=\"40px\" box_shadow_spread_button_tablet=\"0px\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength_tablet=\"1px\" global_module=\"225963\" saved_tabs=\"all\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_2.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_3.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_4.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_5.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_6.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_7.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_8.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_9.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_10.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_11.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_12.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_13.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_16-1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_14-1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_15-1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][/et_pb_slider][et_pb_gallery _builder_version=\"4.1\" gallery_ids=\"226119,226118,226117,226116,226115,226114,226113,226112,226111,226110,226109,226108,226107,226106,226105,226104\" posts_number=\"1\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_enabled=\"0\" admin_label=\"Estate Gallery\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" admin_label=\"Explore Story Section\" _builder_version=\"3.26.4\" custom_padding=\"1px|10%|24px|10%|false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Home_Video.mp4\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"3.26.4\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_galleryContactparalax.jpg\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"3.25\" module_alignment=\"center\" custom_padding=\"9.7%||9.7%||true|\" animation_style=\"fade\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" button_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r\n<p style=\"text-align: center;\">\r[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"]\r\n<p style=\"text-align: center;\">\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_galleryContactparalax.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r\n<p style=\"text-align: center;\">\r[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"]\r\n<p style=\"text-align: center;\">\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','gallery','','inherit','closed','closed','','223355-revision-v1','','','2020-01-17 09:03:49','2020-01-17 07:03:49','',223355,'https://stadsig.co.za/223355-revision-v1/',0,'revision','',0),(226229,1,'2020-01-17 09:10:05','2020-01-17 07:10:05','[et_pb_section fb_built=\"1\" admin_label=\"Section - divider - All devices\" _builder_version=\"3.22\" custom_margin=\"0px||0px|\" custom_padding=\"0||0||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" admin_label=\"Divider - Green\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.1\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"3px|0px|3px|0px|true|false\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#a6bf96\" _builder_version=\"3.26.6\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22\" custom_padding=\"16px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_savour.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\" z_index_tablet=\"500\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22\" custom_padding=\"17px||52px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"gallery\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#575759\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">gallery</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.22\" custom_padding=\"1px|10%|24px|10%|false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|200|||||||\" text_font_size=\"23px\"]<p style=\"text-align: center;\">artist\'s impressions</p>\r[/et_pb_text][et_pb_slider show_pagination=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" disabled_on=\"on|on|on\" module_id=\"overlay_unique_id_225937\" _builder_version=\"4.1\" custom_padding=\"26%||26%||true\" auto=\"on\" auto_speed=\"7500\" z_index_tablet=\"500\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength_tablet=\"1px\" button_text_shadow_horizontal_length_tablet=\"0px\" button_text_shadow_vertical_length_tablet=\"0px\" button_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" box_shadow_horizontal_button_tablet=\"0px\" box_shadow_vertical_button_tablet=\"0px\" box_shadow_blur_button_tablet=\"40px\" box_shadow_spread_button_tablet=\"0px\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength_tablet=\"1px\" disabled=\"on\" global_module=\"225962\" saved_tabs=\"all\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" background_color_gradient_direction_tablet=\"180deg\" background_color_gradient_direction_phone=\"180deg\" background_color_gradient_start_position_tablet=\"0%\" background_color_gradient_start_position_phone=\"0%\" background_color_gradient_end_position_tablet=\"100%\" background_color_gradient_end_position_phone=\"100%\" child_filter_hue_rotate_tablet=\"0deg\" child_filter_hue_rotate_phone=\"0deg\" child_filter_saturate_tablet=\"100%\" child_filter_saturate_phone=\"100%\" child_filter_brightness_tablet=\"100%\" child_filter_brightness_phone=\"100%\" child_filter_contrast_tablet=\"100%\" child_filter_contrast_phone=\"100%\" child_filter_invert_tablet=\"0%\" child_filter_invert_phone=\"0%\" child_filter_sepia_tablet=\"0%\" child_filter_sepia_phone=\"0%\" child_filter_opacity_tablet=\"100%\" child_filter_opacity_phone=\"100%\" child_filter_blur_tablet=\"0px\" child_filter_blur_phone=\"0px\" hover_transition_duration_tablet=\"300ms\" hover_transition_duration_phone=\"300ms\" hover_transition_delay_tablet=\"0ms\" hover_transition_delay_phone=\"0ms\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_horizontal_length_phone=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_vertical_length_phone=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" header_text_shadow_blur_strength_phone=\"1px\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_horizontal_length_phone=\"0px\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_vertical_length_phone=\"0px\" body_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_blur_strength_phone=\"1px\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_horizontal_length_phone=\"0px\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_vertical_length_phone=\"0px\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_blur_strength_phone=\"1px\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_horizontal_length_phone=\"0px\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_vertical_length_phone=\"0px\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_blur_strength_phone=\"1px\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_horizontal_length_phone=\"0px\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_vertical_length_phone=\"0px\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_blur_strength_phone=\"1px\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_horizontal_length_phone=\"0px\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_vertical_length_phone=\"0px\" body_quote_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_blur_strength_phone=\"1px\" button_text_shadow_horizontal_length_tablet=\"0px\" button_text_shadow_horizontal_length_phone=\"0px\" button_text_shadow_vertical_length_tablet=\"0px\" button_text_shadow_vertical_length_phone=\"0px\" button_text_shadow_blur_strength_tablet=\"1px\" button_text_shadow_blur_strength_phone=\"1px\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_horizontal_image_phone=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_vertical_image_phone=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_blur_image_phone=\"40px\" box_shadow_spread_image_tablet=\"0px\" box_shadow_spread_image_phone=\"0px\" box_shadow_horizontal_button_tablet=\"0px\" box_shadow_horizontal_button_phone=\"0px\" box_shadow_vertical_button_tablet=\"0px\" box_shadow_vertical_button_phone=\"0px\" box_shadow_blur_button_tablet=\"40px\" box_shadow_blur_button_phone=\"40px\" box_shadow_spread_button_tablet=\"0px\" box_shadow_spread_button_phone=\"0px\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_horizontal_length_phone=\"0px\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_vertical_length_phone=\"0px\" text_shadow_blur_strength_tablet=\"1px\" text_shadow_blur_strength_phone=\"1px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_2.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_3.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_4.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_5.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_6.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_ArtistsImpression_7.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][/et_pb_slider][et_pb_gallery gallery_ids=\"226103,226102,226101,226100,226099,226098,226097\" admin_label=\"Artist Gallery\" _builder_version=\"4.1\" hover_enabled=\"0\" fullwidth=\"on\" width=\"100%\" max_width=\"100%\" gallery_orderby=\"rand\"][/et_pb_gallery][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|200|||||||\" text_font_size=\"23px\"]<p style=\"text-align: center;\">the estate</p>\r[/et_pb_text][et_pb_slider show_pagination=\"off\" use_bg_overlay=\"off\" use_text_overlay=\"off\" disabled_on=\"on|on|on\" module_id=\"overlay_unique_id_225937\" _builder_version=\"4.1\" custom_padding=\"26%||26%||true\" auto=\"on\" auto_speed=\"7500\" z_index_tablet=\"500\" header_text_shadow_horizontal_length_tablet=\"0px\" header_text_shadow_vertical_length_tablet=\"0px\" header_text_shadow_blur_strength_tablet=\"1px\" body_text_shadow_horizontal_length_tablet=\"0px\" body_text_shadow_vertical_length_tablet=\"0px\" body_text_shadow_blur_strength_tablet=\"1px\" body_link_text_shadow_horizontal_length_tablet=\"0px\" body_link_text_shadow_vertical_length_tablet=\"0px\" body_link_text_shadow_blur_strength_tablet=\"1px\" body_ul_text_shadow_horizontal_length_tablet=\"0px\" body_ul_text_shadow_vertical_length_tablet=\"0px\" body_ul_text_shadow_blur_strength_tablet=\"1px\" body_ol_text_shadow_horizontal_length_tablet=\"0px\" body_ol_text_shadow_vertical_length_tablet=\"0px\" body_ol_text_shadow_blur_strength_tablet=\"1px\" body_quote_text_shadow_horizontal_length_tablet=\"0px\" body_quote_text_shadow_vertical_length_tablet=\"0px\" body_quote_text_shadow_blur_strength_tablet=\"1px\" button_text_shadow_horizontal_length_tablet=\"0px\" button_text_shadow_vertical_length_tablet=\"0px\" button_text_shadow_blur_strength_tablet=\"1px\" box_shadow_horizontal_tablet=\"0px\" box_shadow_vertical_tablet=\"0px\" box_shadow_blur_tablet=\"40px\" box_shadow_spread_tablet=\"0px\" box_shadow_horizontal_image_tablet=\"0px\" box_shadow_vertical_image_tablet=\"0px\" box_shadow_blur_image_tablet=\"40px\" box_shadow_spread_image_tablet=\"0px\" box_shadow_horizontal_button_tablet=\"0px\" box_shadow_vertical_button_tablet=\"0px\" box_shadow_blur_button_tablet=\"40px\" box_shadow_spread_button_tablet=\"0px\" text_shadow_horizontal_length_tablet=\"0px\" text_shadow_vertical_length_tablet=\"0px\" text_shadow_blur_strength_tablet=\"1px\" disabled=\"on\" global_module=\"225963\" saved_tabs=\"all\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_2.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_3.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_4.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_5.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_6.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_7.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_8.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_9.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_10.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_11.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_12.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_13.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_16-1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_14-1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][et_pb_slide use_bg_overlay=\"off\" use_text_overlay=\"off\" _builder_version=\"3.26.4\" background_color=\"rgba(46,163,242,0)\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Gallery_TheEstate_July2019_15-1.jpg\" background_enable_image=\"on\" button_on_hover=\"on\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_slide][/et_pb_slider][et_pb_gallery gallery_ids=\"226119,226118,226117,226116,226115,226114,226113,226112,226111,226110,226109,226108,226107,226106,226105,226104\" admin_label=\"Estate Gallery\" _builder_version=\"4.1\" gallery_orderby=\"rand\" fullwidth=\"on\" width=\"100%\" max_width=\"100%\" hover_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" admin_label=\"Explore Story Section\" _builder_version=\"3.26.4\" custom_padding=\"1px|10%|24px|10%|false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Home_Video.mp4\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"3.26.4\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_galleryContactparalax.jpg\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"3.25\" module_alignment=\"center\" custom_padding=\"9.7%||9.7%||true|\" animation_style=\"fade\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" button_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r\n<p style=\"text-align: center;\">\r[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"]\r\n<p style=\"text-align: center;\">\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_galleryContactparalax.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r\n<p style=\"text-align: center;\">\r[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"]\r\n<p style=\"text-align: center;\">\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','gallery','','inherit','closed','closed','','223355-revision-v1','','','2020-01-17 09:10:05','2020-01-17 07:10:05','',223355,'https://stadsig.co.za/223355-revision-v1/',0,'revision','',0),(226230,1,'2020-01-17 09:19:03','2020-01-17 07:19:03','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.26.4\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_1920_homeHeader-1024x276.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Phone\" module_class=\"section\" _builder_version=\"3.26.4\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/HomeCover_Mobile_650.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"86px||64px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.26\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" admin_label=\"elevate your senses-Desktop\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#232323\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||-3px|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">elevate your senses</h1>[/et_pb_text][et_pb_text disabled_on=\"off|off|on\" admin_label=\"elevate your senses-Tablet-Phone\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#232323\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"35px||||false|false\"]<h1 style=\"text-align: center;\">elevate your senses</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"Explore Story Section - Desktop\" _builder_version=\"3.26\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25.3\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.29.3\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" custom_padding=\"|29%||29%||true\"]<p style=\"text-align: center;\">Listen to the breeze rustle the olives trees, watch the clouds drift over the Bainskloof Pass and feel the warmth of the sun shining down on Wellington’s premier lifestyle estate. The majestic Hawequa Mountains tower above, silent sentinels that hold your gaze and allow you to immerse yourself in the tranquility of Stadsig’s Cape Vernacular homes. Appreciate the stillness of this mountainous corner of the Cape Winelands, in the knowledge that Wellington town centre is just minutes from your stoep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|on\" admin_label=\"Explore Story Section - Tablet Phone\" _builder_version=\"3.26\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25.3\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.29.3\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" custom_padding=\"11px|14.4%||14.4%||true\"]<p style=\"text-align: center;\">Listen to the breeze rustle the olives trees, watch the clouds drift over the Bainskloof Pass and feel the warmth of the sun shining down on Wellington’s premier lifestyle estate. The majestic Hawequa Mountains tower above, silent sentinels that hold your gaze and allow you to immerse yourself in the tranquility of Stadsig’s Cape Vernacular homes. Appreciate the stillness of this mountainous corner of the Cape Winelands, in the knowledge that Wellington town centre is just minutes from your stoep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"Senses - Desktop Section\" _builder_version=\"3.26\" custom_padding=\"21px||0||false|false\"][et_pb_row admin_label=\"senses - blurb container - desktop\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb image=\"https://stadsig.co.za/wp-content/uploads/feather-2_450.png\" _builder_version=\"4.1\" header_level=\"h2\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" max_width=\"9%\" module_alignment=\"center\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|on\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.26\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"4px||6px||false|false\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/feather-2_450.png\" _builder_version=\"4.1\" custom_padding=\"|33vw||33vw|false|true\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Bainskloof - All devices Caption\" _builder_version=\"3.22.3\" custom_padding=\"1px||14px||false|false\"][et_pb_row admin_label=\"Article Title\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||23px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"tailored house plans\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_text_color=\"#575759\" header_font_size=\"25px\" header_2_font_size=\"30px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h2>tailored house plans</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"-17px|auto||auto|false|false\" custom_padding=\"|13%||13%|false|true\"][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/News_HouseImage1.jpg\" _builder_version=\"4.1\" width=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_HouseImage2.jpg\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_HouseImage3.jpg\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26\" custom_padding=\"10px||12px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.26\"][et_pb_text _builder_version=\"3.27.4\" text_font_size=\"20px\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"\" text_font_size_last_edited=\"on|desktop\" text_text_align=\"center\"]<p><a href=\"https://www.stadsig.co.za/house-plans/\">choose from 15 house types</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','58-revision-v1','','','2020-01-17 09:19:03','2020-01-17 07:19:03','',58,'https://stadsig.co.za/58-revision-v1/',0,'revision','',0),(226235,1,'2020-01-18 09:48:33','2020-01-18 07:48:33','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.26.4\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_1920_homeHeader-1024x276.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Phone\" module_class=\"section\" _builder_version=\"3.26.4\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/HomeCover_Mobile_650.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"86px||64px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.26\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" admin_label=\"elevate your senses-Desktop\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#232323\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||-3px|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">elevate your senses</h1>[/et_pb_text][et_pb_text disabled_on=\"off|off|on\" admin_label=\"elevate your senses-Tablet-Phone\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#232323\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"35px||||false|false\"]<h1 style=\"text-align: center;\">elevate your senses</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"Explore Story Section - Desktop\" _builder_version=\"3.26\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25.3\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.29.3\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" custom_padding=\"|29%||29%||true\"]<p style=\"text-align: center;\">Listen to the breeze rustle the olives trees, watch the clouds drift over the Bainskloof Pass and feel the warmth of the sun shining down on Wellington’s premier lifestyle estate. The majestic Hawequa Mountains tower above, silent sentinels that hold your gaze and allow you to immerse yourself in the tranquility of Stadsig’s Cape Vernacular homes. Appreciate the stillness of this mountainous corner of the Cape Winelands, in the knowledge that Wellington town centre is just minutes from your stoep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|on\" admin_label=\"Explore Story Section - Tablet Phone\" _builder_version=\"3.26\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25.3\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.29.3\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" custom_padding=\"11px|14.4%||14.4%||true\"]<p style=\"text-align: center;\">Listen to the breeze rustle the olives trees, watch the clouds drift over the Bainskloof Pass and feel the warmth of the sun shining down on Wellington’s premier lifestyle estate. The majestic Hawequa Mountains tower above, silent sentinels that hold your gaze and allow you to immerse yourself in the tranquility of Stadsig’s Cape Vernacular homes. Appreciate the stillness of this mountainous corner of the Cape Winelands, in the knowledge that Wellington town centre is just minutes from your stoep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"Senses - Desktop Section\" _builder_version=\"3.26\" custom_padding=\"21px||0||false|false\"][et_pb_row admin_label=\"senses - blurb container - desktop\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb image=\"https://stadsig.co.za/wp-content/uploads/feather-2_450.png\" _builder_version=\"4.1\" header_level=\"h2\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" max_width=\"9%\" module_alignment=\"center\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|on\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.26\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"4px||6px||false|false\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/feather-2_450.png\" _builder_version=\"4.1\" custom_padding=\"|33vw||33vw|false|true\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Bainskloof - All devices Caption\" _builder_version=\"3.22.3\" custom_padding=\"1px||14px||false|false\"][et_pb_row admin_label=\"Article Title\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||23px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"tailored house plans\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_text_color=\"#575759\" header_font_size=\"25px\" header_2_font_size=\"30px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h2>tailored house plans</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"-17px|auto||auto|false|false\" custom_padding=\"|13%||13%|false|true\"][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/News_HouseImage1.jpg\" _builder_version=\"4.1\" width=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_HouseImage2.jpg\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_HouseImage3.jpg\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26\" custom_padding=\"10px||12px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.26\"][et_pb_text _builder_version=\"3.27.4\" text_font_size=\"20px\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"\" text_font_size_last_edited=\"on|desktop\" text_text_align=\"center\"]<p><a href=\"https://www.stadsig.co.za/house-plans/\">choose from 15 house types</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','testheader','','publish','closed','closed','','testheader','','','2020-01-18 10:52:53','2020-01-18 08:52:53','',0,'https://stadsig.co.za/?page_id=226235',0,'page','',0),(226236,1,'2020-01-18 09:46:28','2020-01-18 07:46:28','','testheader','','inherit','closed','closed','','226235-revision-v1','','','2020-01-18 09:46:28','2020-01-18 07:46:28','',226235,'https://stadsig.co.za/226235-revision-v1/',0,'revision','',0),(226238,1,'2020-01-18 09:48:33','2020-01-18 07:48:33','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.26.4\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_Website_1920_homeHeader-1024x276.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Phone\" module_class=\"section\" _builder_version=\"3.26.4\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/HomeCover_Mobile_650.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"86px||64px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.26\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" admin_label=\"elevate your senses-Desktop\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#232323\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||-3px|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">elevate your senses</h1>[/et_pb_text][et_pb_text disabled_on=\"off|off|on\" admin_label=\"elevate your senses-Tablet-Phone\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#232323\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"35px||||false|false\"]<h1 style=\"text-align: center;\">elevate your senses</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"Explore Story Section - Desktop\" _builder_version=\"3.26\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25.3\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.29.3\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" custom_padding=\"|29%||29%||true\"]<p style=\"text-align: center;\">Listen to the breeze rustle the olives trees, watch the clouds drift over the Bainskloof Pass and feel the warmth of the sun shining down on Wellington’s premier lifestyle estate. The majestic Hawequa Mountains tower above, silent sentinels that hold your gaze and allow you to immerse yourself in the tranquility of Stadsig’s Cape Vernacular homes. Appreciate the stillness of this mountainous corner of the Cape Winelands, in the knowledge that Wellington town centre is just minutes from your stoep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|on\" admin_label=\"Explore Story Section - Tablet Phone\" _builder_version=\"3.26\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25.3\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.29.3\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" custom_padding=\"11px|14.4%||14.4%||true\"]<p style=\"text-align: center;\">Listen to the breeze rustle the olives trees, watch the clouds drift over the Bainskloof Pass and feel the warmth of the sun shining down on Wellington’s premier lifestyle estate. The majestic Hawequa Mountains tower above, silent sentinels that hold your gaze and allow you to immerse yourself in the tranquility of Stadsig’s Cape Vernacular homes. Appreciate the stillness of this mountainous corner of the Cape Winelands, in the knowledge that Wellington town centre is just minutes from your stoep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"Senses - Desktop Section\" _builder_version=\"3.26\" custom_padding=\"21px||0||false|false\"][et_pb_row admin_label=\"senses - blurb container - desktop\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb image=\"https://stadsig.co.za/wp-content/uploads/feather-2_450.png\" _builder_version=\"4.1\" header_level=\"h2\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" max_width=\"9%\" module_alignment=\"center\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|on\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.26\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"4px||6px||false|false\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/feather-2_450.png\" _builder_version=\"4.1\" custom_padding=\"|33vw||33vw|false|true\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Bainskloof - All devices Caption\" _builder_version=\"3.22.3\" custom_padding=\"1px||14px||false|false\"][et_pb_row admin_label=\"Article Title\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||23px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"tailored house plans\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_text_color=\"#575759\" header_font_size=\"25px\" header_2_font_size=\"30px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h2>tailored house plans</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"-17px|auto||auto|false|false\" custom_padding=\"|13%||13%|false|true\"][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/News_HouseImage1.jpg\" _builder_version=\"4.1\" width=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_HouseImage2.jpg\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_HouseImage3.jpg\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26\" custom_padding=\"10px||12px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.26\"][et_pb_text _builder_version=\"3.27.4\" text_font_size=\"20px\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"\" text_font_size_last_edited=\"on|desktop\" text_text_align=\"center\"]<p><a href=\"https://www.stadsig.co.za/house-plans/\">choose from 15 house types</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','testheader','','inherit','closed','closed','','226235-revision-v1','','','2020-01-18 09:48:33','2020-01-18 07:48:33','',226235,'https://stadsig.co.za/226235-revision-v1/',0,'revision','',0),(226240,1,'2020-01-18 10:59:39','2020-01-18 08:59:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','TestMenuHeader','','publish','closed','closed','','testmenuheader','','','2020-01-18 10:59:48','2020-01-18 08:59:48','',0,'https://stadsig.co.za/?page_id=226240',0,'page','',0),(226241,1,'2020-01-18 09:50:20','2020-01-18 07:50:20','','TestMenuHeader','','inherit','closed','closed','','226240-revision-v1','','','2020-01-18 09:50:20','2020-01-18 07:50:20','',226240,'https://stadsig.co.za/226240-revision-v1/',0,'revision','',0),(226242,1,'2020-01-18 09:54:02','2020-01-18 07:54:02','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" template_type=\"section\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_mhmm_inline_menu menu=\"main\" menu_item_alignment=\"center\" parent_icon=\"off\" submenu_transition=\"fade\" menu_item_color=\"#575759\" menu_item_hover_color=\"#a6bf96\" menu_item_active_color=\"#a6bf96\" advanced_media_query=\"on\" advanced_media_query_direction=\"below\" advanced_media_query_width=\"1115px\" _builder_version=\"3.15\" menu_item_font=\"Tajawal|200|||||||\" menu_item_font_size=\"22px\" menu_item_letter_spacing=\"2\" custom_margin=\"10px|||\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\" custom_css_menu_item_anchor=\"text-decoration:none;\"][/et_pb_mhmm_inline_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"85%\" max_width=\"85%\" module_alignment=\"center\" custom_padding=\"0|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"85%\" column_structure=\"1_3,2_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" module_class=\"logomobile\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" module_alignment=\"center\" custom_padding=\"15%|||\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"11%|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_mhmm_menu menu=\"main\" menu_style=\"full\" menu_button_color=\"#a6bf96\" menu_button_hover_color=\"#575759\" menu_close_button_color=\"#575759\" menu_close_button_hover_color=\"#a6bf96\" menu_button_style=\"square\" menu_button_alignment=\"right\" menu_item_color=\"#ffffff\" menu_item_background_color=\"rgba(166,191,150,0.81)\" advanced_media_query=\"on\" advanced_media_query_direction=\"above\" advanced_media_query_width=\"1115px\" module_class=\"mobiletop\" _builder_version=\"3.10.1\" menu_item_font=\"Tajawal||||||||\" menu_item_text_align=\"center\" menu_item_font_size=\"12px\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\"][/et_pb_mhmm_menu][et_pb_stop_stacking _builder_version=\"3.10.1\"][/et_pb_stop_stacking][et_pb_code]<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Large screens (1405px and above) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1405px ) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 200;<!-- [et_pb_line_break_holder] --> font-size: 22px;<!-- [et_pb_line_break_holder] --> letter-spacing: 2px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 20px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 20px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Laptops & Desktops (1115-1405px) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1115px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 300;<!-- [et_pb_line_break_holder] --> font-size: 20px;<!-- [et_pb_line_break_holder] --> letter-spacing: 1px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 10px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 10px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/*Tablets (0 - 1100px) */<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 1114px) and (min-width:786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 55%;<!-- [et_pb_line_break_holder] --> width: 31%;<!-- [et_pb_line_break_holder] --> top: 14%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96cf !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full .menu-button-close {<!-- [et_pb_line_break_holder] --> right: 7.5%;<!-- [et_pb_line_break_holder] --> top: 10.5%;<!-- [et_pb_line_break_holder] --> padding:14px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 20%;<!-- [et_pb_line_break_holder] --> width: 60%;<!-- [et_pb_line_break_holder] --> top: 10%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96e6 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mhmm-menu-active .et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> opacity: 1;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> overflow-y: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-button-close:before, .et_pb_mhmm_menu_0 .menu-button-close:after, .et_pb_mhmm_menu_0 .menu-button-close div {<!-- [et_pb_line_break_holder] --> background-color: #57575900 !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','MainMenu_2','','inherit','closed','closed','','215035-revision-v1','','','2020-01-18 09:54:02','2020-01-18 07:54:02','',215035,'https://stadsig.co.za/215035-revision-v1/',0,'revision','',0),(226244,1,'2020-01-18 10:02:02','2020-01-18 08:02:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_mhmm_inline_menu menu=\"main\" menu_item_alignment=\"center\" parent_icon=\"off\" submenu_transition=\"fade\" menu_item_color=\"#575759\" menu_item_hover_color=\"#a6bf96\" menu_item_active_color=\"#a6bf96\" advanced_media_query=\"on\" advanced_media_query_direction=\"below\" advanced_media_query_width=\"1115px\" _builder_version=\"3.15\" menu_item_font=\"Tajawal|200|||||||\" menu_item_font_size=\"22px\" menu_item_letter_spacing=\"2\" custom_margin=\"10px|||\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\" custom_css_menu_item_anchor=\"text-decoration:none;\" disabled_on=\"on|on|on\" disabled=\"on\"][/et_pb_mhmm_inline_menu][et_pb_menu _builder_version=\"4.2\" hover_enabled=\"0\" active_link_color=\"#575759\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"85%\" max_width=\"85%\" module_alignment=\"center\" custom_padding=\"0|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"85%\" column_structure=\"1_3,2_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" module_class=\"logomobile\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" module_alignment=\"center\" custom_padding=\"15%|||\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"11%|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_mhmm_menu menu=\"main\" menu_style=\"full\" menu_button_color=\"#a6bf96\" menu_button_hover_color=\"#575759\" menu_close_button_color=\"#575759\" menu_close_button_hover_color=\"#a6bf96\" menu_button_style=\"square\" menu_button_alignment=\"right\" menu_item_color=\"#ffffff\" menu_item_background_color=\"rgba(166,191,150,0.81)\" advanced_media_query=\"on\" advanced_media_query_direction=\"above\" advanced_media_query_width=\"1115px\" module_class=\"mobiletop\" _builder_version=\"3.10.1\" menu_item_font=\"Tajawal||||||||\" menu_item_text_align=\"center\" menu_item_font_size=\"12px\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\"][/et_pb_mhmm_menu][et_pb_stop_stacking _builder_version=\"3.10.1\"][/et_pb_stop_stacking][et_pb_code]<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Large screens (1405px and above) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1405px ) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 200;<!-- [et_pb_line_break_holder] --> font-size: 22px;<!-- [et_pb_line_break_holder] --> letter-spacing: 2px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 20px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 20px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Laptops & Desktops (1115-1405px) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1115px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 300;<!-- [et_pb_line_break_holder] --> font-size: 20px;<!-- [et_pb_line_break_holder] --> letter-spacing: 1px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 10px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 10px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/*Tablets (0 - 1100px) */<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 1114px) and (min-width:786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 55%;<!-- [et_pb_line_break_holder] --> width: 31%;<!-- [et_pb_line_break_holder] --> top: 14%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96cf !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full .menu-button-close {<!-- [et_pb_line_break_holder] --> right: 7.5%;<!-- [et_pb_line_break_holder] --> top: 10.5%;<!-- [et_pb_line_break_holder] --> padding:14px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 20%;<!-- [et_pb_line_break_holder] --> width: 60%;<!-- [et_pb_line_break_holder] --> top: 10%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96e6 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mhmm-menu-active .et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> opacity: 1;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> overflow-y: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-button-close:before, .et_pb_mhmm_menu_0 .menu-button-close:after, .et_pb_mhmm_menu_0 .menu-button-close div {<!-- [et_pb_line_break_holder] --> background-color: #57575900 !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','TestMenuHeader','','inherit','closed','closed','','226240-revision-v1','','','2020-01-18 10:02:02','2020-01-18 08:02:02','',226240,'https://stadsig.co.za/226240-revision-v1/',0,'revision','',0),(226246,1,'2020-01-18 10:03:57','2020-01-18 08:03:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_mhmm_inline_menu menu=\"main\" menu_item_alignment=\"center\" parent_icon=\"off\" submenu_transition=\"fade\" menu_item_color=\"#575759\" menu_item_hover_color=\"#a6bf96\" menu_item_active_color=\"#a6bf96\" advanced_media_query=\"on\" advanced_media_query_direction=\"below\" advanced_media_query_width=\"1115px\" disabled_on=\"on|on|on\" _builder_version=\"3.15\" menu_item_font=\"Tajawal|200|||||||\" menu_item_font_size=\"22px\" menu_item_letter_spacing=\"2\" custom_margin=\"10px|||\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\" custom_css_menu_item_anchor=\"text-decoration:none;\" disabled=\"on\"][/et_pb_mhmm_inline_menu][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"85%\" max_width=\"85%\" module_alignment=\"center\" custom_padding=\"0|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"85%\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logomobile\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" module_alignment=\"center\" custom_padding=\"15%|||\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"11%|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_mhmm_menu menu=\"main\" menu_style=\"full\" menu_button_color=\"#a6bf96\" menu_button_hover_color=\"#575759\" menu_close_button_color=\"#575759\" menu_close_button_hover_color=\"#a6bf96\" menu_button_style=\"square\" menu_button_alignment=\"right\" menu_item_color=\"#ffffff\" menu_item_background_color=\"rgba(166,191,150,0.81)\" advanced_media_query=\"on\" advanced_media_query_direction=\"above\" advanced_media_query_width=\"1115px\" module_class=\"mobiletop\" _builder_version=\"3.10.1\" menu_item_font=\"Tajawal||||||||\" menu_item_text_align=\"center\" menu_item_font_size=\"12px\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\"][/et_pb_mhmm_menu][et_pb_stop_stacking _builder_version=\"3.10.1\"][/et_pb_stop_stacking][et_pb_code]<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Large screens (1405px and above) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1405px ) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 200;<!-- [et_pb_line_break_holder] --> font-size: 22px;<!-- [et_pb_line_break_holder] --> letter-spacing: 2px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 20px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 20px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Laptops & Desktops (1115-1405px) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1115px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 300;<!-- [et_pb_line_break_holder] --> font-size: 20px;<!-- [et_pb_line_break_holder] --> letter-spacing: 1px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 10px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 10px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/*Tablets (0 - 1100px) */<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 1114px) and (min-width:786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 55%;<!-- [et_pb_line_break_holder] --> width: 31%;<!-- [et_pb_line_break_holder] --> top: 14%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96cf !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full .menu-button-close {<!-- [et_pb_line_break_holder] --> right: 7.5%;<!-- [et_pb_line_break_holder] --> top: 10.5%;<!-- [et_pb_line_break_holder] --> padding:14px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 20%;<!-- [et_pb_line_break_holder] --> width: 60%;<!-- [et_pb_line_break_holder] --> top: 10%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96e6 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mhmm-menu-active .et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> opacity: 1;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> overflow-y: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-button-close:before, .et_pb_mhmm_menu_0 .menu-button-close:after, .et_pb_mhmm_menu_0 .menu-button-close div {<!-- [et_pb_line_break_holder] --> background-color: #57575900 !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\" hover_enabled=\"0\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','TestMenuHeader','','inherit','closed','closed','','226240-revision-v1','','','2020-01-18 10:03:57','2020-01-18 08:03:57','',226240,'https://stadsig.co.za/226240-revision-v1/',0,'revision','',0),(226248,1,'2020-01-18 10:19:41','2020-01-18 08:19:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_mhmm_inline_menu menu=\"main\" menu_item_alignment=\"center\" parent_icon=\"off\" submenu_transition=\"fade\" menu_item_color=\"#575759\" menu_item_hover_color=\"#a6bf96\" menu_item_active_color=\"#a6bf96\" advanced_media_query=\"on\" advanced_media_query_direction=\"below\" advanced_media_query_width=\"1115px\" disabled_on=\"on|on|on\" _builder_version=\"3.15\" menu_item_font=\"Tajawal|200|||||||\" menu_item_font_size=\"22px\" menu_item_letter_spacing=\"2\" custom_margin=\"10px|||\" hover_enabled=\"0\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\" custom_css_menu_item_anchor=\"text-decoration:none;\" disabled=\"on\"][/et_pb_mhmm_inline_menu][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" hover_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" disabled_on=\"on|on|on\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"85%\" max_width=\"85%\" module_alignment=\"center\" custom_padding=\"0|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"85%\" disabled=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logomobile\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" module_alignment=\"center\" custom_padding=\"15%|||\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"11%|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_mhmm_menu menu=\"main\" menu_style=\"full\" menu_button_color=\"#a6bf96\" menu_button_hover_color=\"#575759\" menu_close_button_color=\"#575759\" menu_close_button_hover_color=\"#a6bf96\" menu_button_style=\"square\" menu_button_alignment=\"right\" menu_item_color=\"#ffffff\" menu_item_background_color=\"rgba(166,191,150,0.81)\" advanced_media_query=\"on\" advanced_media_query_direction=\"above\" advanced_media_query_width=\"1115px\" module_class=\"mobiletop\" _builder_version=\"3.10.1\" menu_item_font=\"Tajawal||||||||\" menu_item_text_align=\"center\" menu_item_font_size=\"12px\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\"][/et_pb_mhmm_menu][et_pb_stop_stacking _builder_version=\"3.10.1\"][/et_pb_stop_stacking][et_pb_code]<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Large screens (1405px and above) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1405px ) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 200;<!-- [et_pb_line_break_holder] --> font-size: 22px;<!-- [et_pb_line_break_holder] --> letter-spacing: 2px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 20px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 20px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Laptops & Desktops (1115-1405px) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1115px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 300;<!-- [et_pb_line_break_holder] --> font-size: 20px;<!-- [et_pb_line_break_holder] --> letter-spacing: 1px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 10px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 10px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/*Tablets (0 - 1100px) */<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 1114px) and (min-width:786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 55%;<!-- [et_pb_line_break_holder] --> width: 31%;<!-- [et_pb_line_break_holder] --> top: 14%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96cf !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full .menu-button-close {<!-- [et_pb_line_break_holder] --> right: 7.5%;<!-- [et_pb_line_break_holder] --> top: 10.5%;<!-- [et_pb_line_break_holder] --> padding:14px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 20%;<!-- [et_pb_line_break_holder] --> width: 60%;<!-- [et_pb_line_break_holder] --> top: 10%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96e6 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mhmm-menu-active .et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> opacity: 1;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> overflow-y: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-button-close:before, .et_pb_mhmm_menu_0 .menu-button-close:after, .et_pb_mhmm_menu_0 .menu-button-close div {<!-- [et_pb_line_break_holder] --> background-color: #57575900 !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','TestMenuHeader','','inherit','closed','closed','','226240-revision-v1','','','2020-01-18 10:19:41','2020-01-18 08:19:41','',226240,'https://stadsig.co.za/226240-revision-v1/',0,'revision','',0),(226250,1,'2020-01-18 10:26:40','2020-01-18 08:26:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_mhmm_inline_menu menu=\"main\" menu_item_alignment=\"center\" parent_icon=\"off\" submenu_transition=\"fade\" menu_item_color=\"#575759\" menu_item_hover_color=\"#a6bf96\" menu_item_active_color=\"#a6bf96\" advanced_media_query=\"on\" advanced_media_query_direction=\"below\" advanced_media_query_width=\"1115px\" disabled_on=\"on|on|on\" _builder_version=\"3.15\" menu_item_font=\"Tajawal|200|||||||\" menu_item_font_size=\"22px\" menu_item_letter_spacing=\"2\" custom_margin=\"10px|||\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\" custom_css_menu_item_anchor=\"text-decoration:none;\" disabled=\"on\"][/et_pb_mhmm_inline_menu][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" disabled_on=\"on|on|on\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"85%\" max_width=\"85%\" module_alignment=\"center\" custom_padding=\"0|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"85%\" disabled=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logomobile\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" module_alignment=\"center\" custom_padding=\"15%|||\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"11%|0px|0px|0px\" custom_padding__hover=\"|||\"][et_pb_mhmm_menu menu=\"main\" menu_style=\"full\" menu_button_color=\"#a6bf96\" menu_button_hover_color=\"#575759\" menu_close_button_color=\"#575759\" menu_close_button_hover_color=\"#a6bf96\" menu_button_style=\"square\" menu_button_alignment=\"right\" menu_item_color=\"#ffffff\" menu_item_background_color=\"rgba(166,191,150,0.81)\" advanced_media_query=\"on\" advanced_media_query_direction=\"above\" advanced_media_query_width=\"1115px\" module_class=\"mobiletop\" _builder_version=\"3.10.1\" menu_item_font=\"Tajawal||||||||\" menu_item_text_align=\"center\" menu_item_font_size=\"12px\" menu_item_font_size_tablet=\"51\" menu_item_line_height_tablet=\"2\" sub_menu_item_font_size_tablet=\"51\" sub_menu_item_line_height_tablet=\"2\"][/et_pb_mhmm_menu][et_pb_stop_stacking _builder_version=\"3.10.1\"][/et_pb_stop_stacking][et_pb_code]<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Large screens (1405px and above) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1405px ) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 200;<!-- [et_pb_line_break_holder] --> font-size: 22px;<!-- [et_pb_line_break_holder] --> letter-spacing: 2px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 20px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 20px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/* Laptops & Desktops (1115-1405px) */<!-- [et_pb_line_break_holder] -->@media only screen and (min-width: 1115px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_mhmm_inline_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-weight: 300;<!-- [et_pb_line_break_holder] --> font-size: 20px;<!-- [et_pb_line_break_holder] --> letter-spacing: 1px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_2.et_pb_row {<!-- [et_pb_line_break_holder] --> display: none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.logomobile {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_inline_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] --> padding-top: 10px;<!-- [et_pb_line_break_holder] --> padding-right: 10px;<!-- [et_pb_line_break_holder] --> padding-bottom: 10px;<!-- [et_pb_line_break_holder] --> padding-left: 10px;<!-- [et_pb_line_break_holder] --> color: #575759;<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,0);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->/*Tablets (0 - 1100px) */<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 1114px) and (min-width:786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 55%;<!-- [et_pb_line_break_holder] --> width: 31%;<!-- [et_pb_line_break_holder] --> top: 14%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96cf !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 16px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full .menu-button-close {<!-- [et_pb_line_break_holder] --> right: 7.5%;<!-- [et_pb_line_break_holder] --> top: 10.5%;<!-- [et_pb_line_break_holder] --> padding:14px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media only screen and (max-width: 786px) { <!-- [et_pb_line_break_holder] -->.logodesktop {<!-- [et_pb_line_break_holder] -->display:none;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row_0.et_pb_row {<!-- [et_pb_line_break_holder] --> padding-top: 0px !important;<!-- [et_pb_line_break_holder] --> padding-bottom: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_row {<!-- [et_pb_line_break_holder] --> padding: 1% 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mobiletop .et_pb_row .et_pb_row .et_pb_column:last-child {<!-- [et_pb_line_break_holder] --> margin-top: 11% !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> left: 20%;<!-- [et_pb_line_break_holder] --> width: 60%;<!-- [et_pb_line_break_holder] --> top: 10%;<!-- [et_pb_line_break_holder] --> opacity: 0;<!-- [et_pb_line_break_holder] --> visibility: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li a {<!-- [et_pb_line_break_holder] --> font-family: \'Tajawal\',Helvetica,Arial,Lucida,sans-serif;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #a6bf96e6 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 nav ul li.current-menu-item>a {<!-- [et_pb_line_break_holder] --> color: #ffffff !important;<!-- [et_pb_line_break_holder] --> background-color: #84a072 !important;<!-- [et_pb_line_break_holder] --> border-bottom: 1px solid #ffffff;<!-- [et_pb_line_break_holder] --> font-size: 22px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-overlay {<!-- [et_pb_line_break_holder] --> background-color: rgba(255,255,255,.2) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.mhmm-menu-active .et_pb_mhmm_menu.menu-style-full nav {<!-- [et_pb_line_break_holder] --> opacity: 1;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> overflow-y: hidden;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_mhmm_menu_0 .menu-button-close:before, .et_pb_mhmm_menu_0 .menu-button-close:after, .et_pb_mhmm_menu_0 .menu-button-close div {<!-- [et_pb_line_break_holder] --> background-color: #57575900 !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','TestMenuHeader','','inherit','closed','closed','','226240-revision-v1','','','2020-01-18 10:26:40','2020-01-18 08:26:40','',226240,'https://stadsig.co.za/226240-revision-v1/',0,'revision','',0),(226254,1,'2020-01-18 10:52:01','2020-01-18 08:52:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" template_type=\"section\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','TestMenuHeader','','publish','closed','closed','','testmenuheader','','','2020-01-18 10:52:01','2020-01-18 08:52:01','',0,'https://stadsig.co.za/et_pb_layout/testmenuheader/',0,'et_pb_layout','',0),(226256,1,'2020-01-18 10:55:15','2020-01-18 08:55:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\"][et_pb_row module_id=\"logomain\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\" hover_enabled=\"0\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\" module_id=\"myheader\"][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] --> 		padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout','','','2020-01-18 16:20:25','2020-01-18 14:20:25','',0,'https://stadsig.co.za/et_header_layout/theme-builder-layout/',0,'et_header_layout','',0),(226257,1,'2020-01-18 10:56:34','2020-01-18 08:56:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 10:56:34','2020-01-18 08:56:34','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226260,1,'2020-01-18 10:56:39','2020-01-18 08:56:39','','Default Website Template','','publish','closed','closed','','default-website-template','','','2020-01-18 10:56:39','2020-01-18 08:56:39','',0,'https://stadsig.co.za/et_template/default-website-template/',0,'et_template','',0),(226261,1,'2020-01-18 10:57:50','2020-01-18 08:57:50','','Theme Builder','','publish','closed','closed','','theme-builder','','','2020-01-18 10:57:50','2020-01-18 08:57:50','',0,'https://stadsig.co.za/et_theme_builder/theme-builder/',0,'et_theme_builder','',0),(226262,1,'2020-01-18 10:57:51','2020-01-18 08:57:51','','Default Website Template','','publish','closed','closed','','default-website-template-2','','','2020-01-18 17:14:11','2020-01-18 15:14:11','',0,'https://stadsig.co.za/et_template/default-website-template-2/',0,'et_template','',0),(226263,1,'2020-01-18 10:57:52','2020-01-18 08:57:52','','Specific Pages: testheader','','publish','closed','closed','','specific-pages-testmenuheader','','','2020-01-18 17:14:11','2020-01-18 15:14:11','',0,'https://stadsig.co.za/et_template/specific-pages-testmenuheader/',0,'et_template','',0),(226264,1,'2020-01-18 10:58:32','2020-01-18 08:58:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','TestMenuHeader','','inherit','closed','closed','','226240-revision-v1','','','2020-01-18 10:58:32','2020-01-18 08:58:32','',226240,'https://stadsig.co.za/226240-revision-v1/',0,'revision','',0),(226265,1,'2020-01-18 11:00:43','2020-01-18 09:00:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','TestMenuHeader','','inherit','closed','closed','','226240-autosave-v1','','','2020-01-18 11:00:43','2020-01-18 09:00:43','',226240,'https://stadsig.co.za/226240-autosave-v1/',0,'revision','',0),(226267,1,'2020-01-18 11:14:10','2020-01-18 09:14:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] -->  padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 11:14:10','2020-01-18 09:14:10','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226269,1,'2020-01-18 11:18:58','2020-01-18 09:18:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] -->  padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 11:18:58','2020-01-18 09:18:58','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226271,1,'2020-01-18 13:23:37','2020-01-18 11:23:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li>a {<!-- [et_pb_line_break_holder] -->  padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 13:23:37','2020-01-18 11:23:37','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226273,1,'2020-01-18 13:29:12','2020-01-18 11:29:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu nav>ul>li>a {<!-- [et_pb_line_break_holder] -->  padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] -->  padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 13:29:12','2020-01-18 11:29:12','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226275,1,'2020-01-18 13:29:59','2020-01-18 11:29:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] --> 		padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 13:29:59','2020-01-18 11:29:59','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226277,1,'2020-01-18 13:38:24','2020-01-18 11:38:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] --> 		padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->      var height = $(\"#main-image\").height() - $(\"#title\").height();<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->        $(window).scroll(function(){<!-- [et_pb_line_break_holder] -->            //added ending ) after height<!-- [et_pb_line_break_holder] -->            if($(this).scrollTop() > height) {<!-- [et_pb_line_break_holder] -->                $(\"#title\").css({\'display\': \'none\'});<!-- [et_pb_line_break_holder] -->            }<!-- [et_pb_line_break_holder] -->        });<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 13:38:24','2020-01-18 11:38:24','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226279,1,'2020-01-18 13:41:37','2020-01-18 11:41:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\" module_id=\"menu-height\"][et_pb_row module_id=\"logomain\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\" module_id=\"items-height\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] --> 		padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->      var height = $(\"#menu-height\").height() - $(\"#items-height\").height();<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->        $(window).scroll(function(){<!-- [et_pb_line_break_holder] -->            //added ending ) after height<!-- [et_pb_line_break_holder] -->            if($(this).scrollTop() > height) {<!-- [et_pb_line_break_holder] -->                $(\"#items-height\").css({\'display\': \'none\'});<!-- [et_pb_line_break_holder] -->            }<!-- [et_pb_line_break_holder] -->        });<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 13:41:37','2020-01-18 11:41:37','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226281,1,'2020-01-18 13:43:28','2020-01-18 11:43:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\" module_id=\"menu-height\"][et_pb_row module_id=\"logomain\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\" module_id=\"items-height\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] --> 		padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->      var height = $(\"#menu-height\").height() - $(\"#items-height\").height();<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->        $(window).scroll(function(){<!-- [et_pb_line_break_holder] -->            //added ending ) after height<!-- [et_pb_line_break_holder] -->            if($(this).scrollTop() > height) {<!-- [et_pb_line_break_holder] -->                $(\"#menu-height\").css({\'display\': \'none\'});<!-- [et_pb_line_break_holder] -->            }<!-- [et_pb_line_break_holder] -->        });<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 13:43:28','2020-01-18 11:43:28','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226283,1,'2020-01-18 15:37:06','2020-01-18 13:37:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\"][et_pb_row module_id=\"logomain\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\" module_id=\"items-height\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] --> 		padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->      $(function() {<!-- [et_pb_line_break_holder] --> $(\'#logomain\').hide();<!-- [et_pb_line_break_holder] --> $(window).scroll(function() {<!-- [et_pb_line_break_holder] -->	var scroll = $(window).scrollTop();<!-- [et_pb_line_break_holder] -->		if (scroll >= 100) {<!-- [et_pb_line_break_holder] -->		  $(\'#logomain\').hide();<!-- [et_pb_line_break_holder] -->	 } else {<!-- [et_pb_line_break_holder] -->		 $(\'#logomain\').show();<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --> });<!-- [et_pb_line_break_holder] -->})<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 15:37:06','2020-01-18 13:37:06','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226285,1,'2020-01-18 15:39:52','2020-01-18 13:39:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\"][et_pb_row module_id=\"logomain\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] --> 		padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->      $(function() {<!-- [et_pb_line_break_holder] --> $(\'#logomain\').hide();<!-- [et_pb_line_break_holder] --> $(window).scroll(function() {<!-- [et_pb_line_break_holder] -->	var scroll = $(window).scrollTop();<!-- [et_pb_line_break_holder] -->		if (scroll >= 400) {<!-- [et_pb_line_break_holder] -->		  $(\'#logomain\').hide();<!-- [et_pb_line_break_holder] -->	 } else {<!-- [et_pb_line_break_holder] -->		 $(\'#logomain\').show();<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --> });<!-- [et_pb_line_break_holder] -->})<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 15:39:52','2020-01-18 13:39:52','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226288,1,'2020-01-18 16:15:36','2020-01-18 14:15:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\"][et_pb_row module_id=\"logomain\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\" hover_enabled=\"0\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\" module_id=\"myheader\"][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] --> 		padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 16:15:36','2020-01-18 14:15:36','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226289,1,'2020-01-18 16:17:15','2020-01-18 14:17:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\"][et_pb_row module_id=\"logomain\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\" hover_enabled=\"0\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\" module_id=\"myheader\" custom_css_main_element=\"position:fixed;||width:100%;||top:0;||z-index:999;\"][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] --> 		padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 16:17:15','2020-01-18 14:17:15','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226291,1,'2020-01-18 16:20:25','2020-01-18 14:20:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\"][et_pb_row module_id=\"logomain\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\" hover_enabled=\"0\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" hover_enabled=\"0\" module_id=\"myheader\"][et_pb_row _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_margin=\"0px||0px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"||-1px|||\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et-menu>li, .et_pb_menu .et-menu>li {<!-- [et_pb_line_break_holder] -->    padding-right: 0px !important;<!-- [et_pb_line_break_holder] -->    padding-left: 0px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0_tb_header.et_pb_menu ul li a {<!-- [et_pb_line_break_holder] -->    font-size: 1.15vw !important;<!-- [et_pb_line_break_holder] -->    letter-spacing: 2px !important;<!-- [et_pb_line_break_holder] -->    font-weight: 400 !important;<!-- [et_pb_line_break_holder] --> 		padding:10px 20px !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et-menu a:hover {<!-- [et_pb_line_break_holder] -->  	color: #a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_menu_0 nav>ul>li.current-menu-item>a {<!-- [et_pb_line_break_holder] -->  color:#a6bf96;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226256-revision-v1','','','2020-01-18 16:20:25','2020-01-18 14:20:25','',226256,'https://stadsig.co.za/226256-revision-v1/',0,'revision','',0),(226292,1,'2020-01-18 17:13:39','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" hover_enabled=\"0\" collapsed=\"off\"][/et_pb_section]','air_heating','','draft','closed','closed','','','','','2020-01-18 17:13:39','2020-01-18 15:13:39','',0,'https://stadsig.co.za/?page_id=226292',0,'page','',0),(226293,1,'2020-01-18 16:35:33','2020-01-18 14:35:33','','air_heating','','inherit','closed','closed','','226292-revision-v1','','','2020-01-18 16:35:33','2020-01-18 14:35:33','',226292,'https://stadsig.co.za/226292-revision-v1/',0,'revision','',0),(226295,1,'2020-01-18 16:54:56','2020-01-18 14:54:56','','airHeat','','publish','closed','closed','','airheat','','','2020-01-18 16:54:56','2020-01-18 14:54:56','',0,'https://stadsig.co.za/et_pb_layout/airheat/',0,'et_pb_layout','',0),(226296,1,'2020-01-18 16:56:56','2020-01-18 14:56:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" hover_enabled=\"0\"][/et_pb_section]','airHeat','','inherit','closed','closed','','226295-autosave-v1','','','2020-01-18 16:56:56','2020-01-18 14:56:56','',226295,'https://stadsig.co.za/226295-autosave-v1/',0,'revision','',0),(226298,1,'2020-01-18 16:59:50','2020-01-18 14:59:50','','Default Website Template','','publish','closed','closed','','default-website-template-3','','','2020-01-18 17:11:50','2020-01-18 15:11:50','',0,'https://stadsig.co.za/et_template/default-website-template-3/',0,'et_template','',0),(226299,1,'2020-01-18 16:59:50','2020-01-18 14:59:50','','Specific Pages: testheader','','publish','closed','closed','','specific-pages-testheader','','','2020-01-18 17:11:50','2020-01-18 15:11:50','',0,'https://stadsig.co.za/et_template/specific-pages-testheader/',0,'et_template','',0),(226300,1,'2020-01-18 16:59:51','2020-01-18 14:59:51','','All Pages','','publish','closed','closed','','all-pages','','','2020-01-18 17:11:52','2020-01-18 15:11:52','',0,'https://stadsig.co.za/et_template/all-pages/',0,'et_template','',0),(226301,1,'2020-01-18 17:09:39','2020-01-18 15:09:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" module_class=\"headcolor\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\" module_alignment=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->    <!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->  $(function() {<!-- [et_pb_line_break_holder] -->   $(window).scroll(function () {<!-- [et_pb_line_break_holder] -->      if ($(this).scrollTop() > 50) {<!-- [et_pb_line_break_holder] -->         $(‘.headcolor’).addClass(‘active’)<!-- [et_pb_line_break_holder] -->      }<!-- [et_pb_line_break_holder] -->      if ($(this).scrollTop() < 50) {<!-- [et_pb_line_break_holder] -->         $(‘.headcolor’).removeClass(‘active’)<!-- [et_pb_line_break_holder] -->      }<!-- [et_pb_line_break_holder] -->   });<!-- [et_pb_line_break_holder] -->});<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 50px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 10px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->  .headcolor.active {<!-- [et_pb_line_break_holder] -->    background:red;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout-2','','','2020-01-18 18:56:27','2020-01-18 16:56:27','',0,'https://stadsig.co.za/et_header_layout/theme-builder-layout-2/',0,'et_header_layout','',0);
INSERT INTO `sts_posts` VALUES (226302,1,'2020-01-18 17:11:41','2020-01-18 15:11:41','[et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" _builder_version=\"4.0.1\" background_color=\"#e2e2e2\" custom_padding=\"10px||20px||false|false\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.1\" custom_padding=\"16px||0px|||\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.1\"][et_pb_blurb use_icon=\"on\" font_icon=\"%%132%%\" icon_color=\"#ff5b5b\" icon_placement=\"left\" _builder_version=\"4.0.1\" body_font=\"|800|||||||\" body_font_size=\"17px\" body_line_height=\"2em\"]<p>0800 123 456</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.1\"][et_pb_blurb use_icon=\"on\" font_icon=\"%%86%%\" icon_color=\"#ff5b5b\" icon_placement=\"left\" _builder_version=\"4.0.1\" body_line_height=\"2em\"]<p><strong>WhatsApp</strong> my.id.here</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.1\"][et_pb_blurb use_icon=\"on\" font_icon=\"%%329%%\" icon_color=\"#ff5b5b\" icon_placement=\"left\" _builder_version=\"4.0.1\" body_line_height=\"2em\"]<p> <strong>Skype</strong> my.id.here</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.1\"][et_pb_blurb use_icon=\"on\" font_icon=\"%%250%%\" icon_color=\"#ff5b5b\" icon_placement=\"left\" _builder_version=\"4.0.1\" body_line_height=\"2em\"]<p>123 Main Street, London</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.0.1\" custom_padding=\"0px||0px|||\" custom_css_main_element=\"||width:100%;||top:0;||z-index:999;\" box_shadow_style=\"preset1\"][et_pb_row column_structure=\"3_4,1_4\" _builder_version=\"4.0.1\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"3_4\" _builder_version=\"4.0.1\"][et_pb_menu logo=\"https://www.diviexamples.com/wp-content/uploads/2019/10/logo-xx.png\" _builder_version=\"4.0.1\" text_orientation=\"right\"][/et_pb_menu][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.1\"][et_pb_social_media_follow disabled_on=\"on|on|off\" _builder_version=\"4.0.1\" custom_margin=\"20px||||false|false\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.0.1\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.0.1\" background_color=\"#00aced\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.0.1\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"linkedin\" _builder_version=\"4.0.1\" background_color=\"#007bb6\" follow_button=\"off\" url_new_window=\"on\"]linkedin[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.1\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.0.1\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.1\"][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:11:41','2020-01-18 15:11:41','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226304,1,'2020-01-18 17:14:13','2020-01-18 15:14:13','','All Pages','','publish','closed','closed','','all-pages-2','','','2020-01-18 17:14:13','2020-01-18 15:14:13','',0,'https://stadsig.co.za/et_template/all-pages-2/',0,'et_template','',0),(226306,1,'2020-01-18 17:19:02','2020-01-18 15:19:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" locked=\"off\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.0.1\" custom_padding=\"0px||0px|||\" custom_css_main_element=\"||width:100%;||top:0;||z-index:999;\" box_shadow_style=\"preset1\"][et_pb_row column_structure=\"3_4,1_4\" _builder_version=\"4.0.1\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"3_4\" _builder_version=\"4.0.1\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" locked=\"off\"][/et_pb_menu][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.1\"][et_pb_social_media_follow disabled_on=\"on|on|off\" _builder_version=\"4.0.1\" custom_margin=\"20px||||false|false\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.0.1\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.0.1\" background_color=\"#00aced\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"4.0.1\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"linkedin\" _builder_version=\"4.0.1\" background_color=\"#007bb6\" follow_button=\"off\" url_new_window=\"on\"]linkedin[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.1\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.0.1\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.1\"][et_pb_code _builder_version=\"4.2\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:19:02','2020-01-18 15:19:02','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226308,1,'2020-01-18 17:21:21','2020-01-18 15:21:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"9px||9px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" locked=\"off\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.10.1\" height=\"6px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.1\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.0.1\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.1\"][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 250 || document.documentElement.scrollTop > 250) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:21:21','2020-01-18 15:21:21','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226310,1,'2020-01-18 17:25:18','2020-01-18 15:25:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" module_id=\"myheader\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" text_orientation=\"center\" locked=\"off\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 250 || document.documentElement.scrollTop > 250) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:25:18','2020-01-18 15:25:18','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226313,1,'2020-01-18 17:29:29','2020-01-18 15:29:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:29:29','2020-01-18 15:29:29','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226315,1,'2020-01-18 17:30:15','2020-01-18 15:30:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:30:15','2020-01-18 15:30:15','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226317,1,'2020-01-18 17:44:48','2020-01-18 15:44:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 150 || document.documentElement.scrollTop > 150) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:44:48','2020-01-18 15:44:48','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226319,1,'2020-01-18 17:48:02','2020-01-18 15:48:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 150 || document.documentElement.scrollTop > 150) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 20px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 20px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:48:02','2020-01-18 15:48:02','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226321,1,'2020-01-18 17:50:24','2020-01-18 15:50:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 150 || document.documentElement.scrollTop > 150) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 20px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 20px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:50:24','2020-01-18 15:50:24','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226323,1,'2020-01-18 17:54:35','2020-01-18 15:54:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 20px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 20px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:54:35','2020-01-18 15:54:35','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226324,1,'2020-01-18 17:56:06','2020-01-18 15:56:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 220 || document.documentElement.scrollTop > 220) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 20px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 20px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:56:06','2020-01-18 15:56:06','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226326,1,'2020-01-18 17:59:00','2020-01-18 15:59:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\" module_alignment=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 500) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 50px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 10px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 17:59:00','2020-01-18 15:59:00','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226328,1,'2020-01-18 18:00:30','2020-01-18 16:00:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\" module_alignment=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 50px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 10px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 18:00:30','2020-01-18 16:00:30','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226330,1,'2020-01-18 18:17:15','2020-01-18 16:17:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\" module_alignment=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->    document.body.css(\'backgound-color\', \'blue\';<!-- [et_pb_line_break_holder] -->   <!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 50px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 10px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 18:17:15','2020-01-18 16:17:15','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226332,1,'2020-01-18 18:20:16','2020-01-18 16:20:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\" module_alignment=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->    document.body.css(\"backgound-color\", \"blue\";<!-- [et_pb_line_break_holder] -->   <!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 50px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 10px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 18:20:16','2020-01-18 16:20:16','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226334,1,'2020-01-18 18:21:17','2020-01-18 16:21:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\" module_alignment=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->    <!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 50px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 10px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 18:21:17','2020-01-18 16:21:17','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226336,1,'2020-01-18 18:30:14','2020-01-18 16:30:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\" module_alignment=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->    <!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->  $(window).on(\"scroll\", function() {<!-- [et_pb_line_break_holder] -->    if($(window).scrollTop() > 50) {<!-- [et_pb_line_break_holder] -->        $(\"#myheader\").addClass(\"active\");<!-- [et_pb_line_break_holder] -->    } else {<!-- [et_pb_line_break_holder] -->        //remove the background property so it comes transparent again (defined in your css)<!-- [et_pb_line_break_holder] -->       $(\"#myheader\").removeClass(\"active\");<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->});<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 50px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 10px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->  #myheader.active {<!-- [et_pb_line_break_holder] -->    background:red;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 18:30:14','2020-01-18 16:30:14','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226338,1,'2020-01-18 18:35:08','2020-01-18 16:35:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" module_class=\"header\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\" module_alignment=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->    <!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->  $(window).on(\"scroll\", function() {<!-- [et_pb_line_break_holder] -->    if($(window).scrollTop() > 50) {<!-- [et_pb_line_break_holder] -->        $(\".header\").addClass(\"active\");<!-- [et_pb_line_break_holder] -->    } else {<!-- [et_pb_line_break_holder] -->        //remove the background property so it comes transparent again (defined in your css)<!-- [et_pb_line_break_holder] -->       $(\".myheader\").removeClass(\"active\");<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->});<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 50px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 10px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->  .myheader.active {<!-- [et_pb_line_break_holder] -->    background:red;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 18:35:08','2020-01-18 16:35:08','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226340,1,'2020-01-18 18:49:02','2020-01-18 16:49:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" module_class=\"header\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\" module_alignment=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->    <!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->  $(function() {<!-- [et_pb_line_break_holder] -->  $(window).scroll (function () {<!-- [et_pb_line_break_holder] -->    	if ($(this).scrollTop() > 50 {<!-- [et_pb_line_break_holder] -->        $(\'.header\').addClass(\'active\')<!-- [et_pb_line_break_holder] -->    }  	<!-- [et_pb_line_break_holder] -->      if ($(this).scrollTop() < 50 {<!-- [et_pb_line_break_holder] -->        $(\'.header\').addClass(\'active\')<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->});<!-- [et_pb_line_break_holder] -->  });<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 50px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 10px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->  .myheader.active {<!-- [et_pb_line_break_holder] -->    background:red;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 18:49:02','2020-01-18 16:49:02','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226342,1,'2020-01-18 18:56:26','2020-01-18 16:56:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" module_class=\"headcolor\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\" module_alignment=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->    <!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->  $(function() {<!-- [et_pb_line_break_holder] -->   $(window).scroll(function () {<!-- [et_pb_line_break_holder] -->      if ($(this).scrollTop() > 50) {<!-- [et_pb_line_break_holder] -->         $(‘.headcolor’).addClass(‘active’)<!-- [et_pb_line_break_holder] -->      }<!-- [et_pb_line_break_holder] -->      if ($(this).scrollTop() < 50) {<!-- [et_pb_line_break_holder] -->         $(‘.headcolor’).removeClass(‘active’)<!-- [et_pb_line_break_holder] -->      }<!-- [et_pb_line_break_holder] -->   });<!-- [et_pb_line_break_holder] -->});<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 50px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 10px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->  .headcolor.active {<!-- [et_pb_line_break_holder] -->    background:red;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','226301-revision-v1','','','2020-01-18 18:56:26','2020-01-18 16:56:26','',226301,'https://stadsig.co.za/226301-revision-v1/',0,'revision','',0),(226343,1,'2020-01-18 18:56:38','2020-01-18 16:56:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"rgba(255,255,255,0.8)\" custom_padding=\"0|0px|0|0px|false|false\" locked=\"off\"][et_pb_row module_id=\"logomain\" _builder_version=\"3.25\" background_color=\"rgba(255,255,255,0)\" width=\"16%\" max_width=\"16%\" module_alignment=\"center\" custom_padding=\"12px||12px|\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"16%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewLogo.png\" show_bottom_space=\"off\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" module_class=\"logodesktop\" _builder_version=\"3.23\" background_color=\"rgba(0,0,0,0)\" max_width=\"80%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"myheader\" _builder_version=\"4.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" module_class=\"headcolor\"][et_pb_row _builder_version=\"4.2\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_menu active_link_color=\"#575759\" _builder_version=\"4.2\" menu_font_size=\"22px\" menu_letter_spacing=\"2px\" hover_enabled=\"0\" locked=\"off\" menu_style=\"centered\" module_alignment=\"center\"][/et_pb_menu][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"]<script><!-- [et_pb_line_break_holder] -->// When the user scrolls down 50px from the top of the document, resize the header\'s font size<!-- [et_pb_line_break_holder] -->window.onscroll = function() {scrollFunction()};<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function scrollFunction() {<!-- [et_pb_line_break_holder] -->  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"fixed\";<!-- [et_pb_line_break_holder] -->    <!-- [et_pb_line_break_holder] -->  } else {<!-- [et_pb_line_break_holder] -->    document.getElementById(\"myheader\").style.position = \"\";<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->  $(function() {<!-- [et_pb_line_break_holder] -->   $(window).scroll(function () {<!-- [et_pb_line_break_holder] -->      if ($(this).scrollTop() > 50) {<!-- [et_pb_line_break_holder] -->         $(‘.headcolor’).addClass(‘active’)<!-- [et_pb_line_break_holder] -->      }<!-- [et_pb_line_break_holder] -->      if ($(this).scrollTop() < 50) {<!-- [et_pb_line_break_holder] -->         $(‘.headcolor’).removeClass(‘active’)<!-- [et_pb_line_break_holder] -->      }<!-- [et_pb_line_break_holder] -->   });<!-- [et_pb_line_break_holder] -->});<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] --><style><!-- [et_pb_line_break_holder] -->.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {<!-- [et_pb_line_break_holder] -->    padding-top: 50px;<!-- [et_pb_line_break_holder] -->    padding-bottom: 10px;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  .et_pb_gutters3 .et_pb_column_4_4 .et_pb_module, .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_module {<!-- [et_pb_line_break_holder] -->    margin-bottom: 0%;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->  .headcolor.active {<!-- [et_pb_line_break_holder] -->    background:red;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','226301-autosave-v1','','','2020-01-18 18:56:38','2020-01-18 16:56:38','',226301,'https://stadsig.co.za/226301-autosave-v1/',0,'revision','',0),(226347,1,'2020-03-05 11:58:27','2020-03-05 09:58:27','','','','inherit','open','closed','','stadsig_home','','','2020-03-05 11:58:37','2020-03-05 09:58:37','',58,'https://stadsig.co.za/wp-content/uploads/Stadsig_Home.jpg',0,'attachment','image/jpeg',0),(226348,1,'2020-03-05 11:58:50','2020-03-05 09:58:50','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.26.4\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" hover_enabled=\"0\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_Home.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Phone\" module_class=\"section\" _builder_version=\"3.26.4\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/HomeCover_Mobile_650.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"86px||64px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.26\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" admin_label=\"elevate your senses-Desktop\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#232323\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"||-3px|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">elevate your senses</h1>[/et_pb_text][et_pb_text disabled_on=\"off|off|on\" admin_label=\"elevate your senses-Tablet-Phone\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_text_color=\"#232323\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"35px||||false|false\"]<h1 style=\"text-align: center;\">elevate your senses</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"Explore Story Section - Desktop\" _builder_version=\"3.26\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25.3\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.29.3\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" custom_padding=\"|29%||29%||true\"]<p style=\"text-align: center;\">Listen to the breeze rustle the olives trees, watch the clouds drift over the Bainskloof Pass and feel the warmth of the sun shining down on Wellington’s premier lifestyle estate. The majestic Hawequa Mountains tower above, silent sentinels that hold your gaze and allow you to immerse yourself in the tranquility of Stadsig’s Cape Vernacular homes. Appreciate the stillness of this mountainous corner of the Cape Winelands, in the knowledge that Wellington town centre is just minutes from your stoep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|on\" admin_label=\"Explore Story Section - Tablet Phone\" _builder_version=\"3.26\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25.3\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.29.3\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" custom_padding=\"11px|14.4%||14.4%||true\"]<p style=\"text-align: center;\">Listen to the breeze rustle the olives trees, watch the clouds drift over the Bainskloof Pass and feel the warmth of the sun shining down on Wellington’s premier lifestyle estate. The majestic Hawequa Mountains tower above, silent sentinels that hold your gaze and allow you to immerse yourself in the tranquility of Stadsig’s Cape Vernacular homes. Appreciate the stillness of this mountainous corner of the Cape Winelands, in the knowledge that Wellington town centre is just minutes from your stoep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|off\" admin_label=\"Senses - Desktop Section\" _builder_version=\"3.26\" custom_padding=\"21px||0||false|false\"][et_pb_row admin_label=\"senses - blurb container - desktop\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb image=\"https://stadsig.co.za/wp-content/uploads/feather-2_450.png\" _builder_version=\"4.1\" header_level=\"h2\" header_font=\"||||||||\" header_text_align=\"center\" header_text_color=\"#232323\" header_font_size=\"21px\" header_letter_spacing=\"2px\" header_line_height=\"1.1em\" max_width=\"9%\" module_alignment=\"center\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|on\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.26\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"4px||6px||false|false\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/feather-2_450.png\" _builder_version=\"4.1\" custom_padding=\"|33vw||33vw|false|true\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Bainskloof - All devices Caption\" _builder_version=\"3.22.3\" custom_padding=\"1px||14px||false|false\"][et_pb_row admin_label=\"Article Title\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||23px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"tailored house plans\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_text_color=\"#575759\" header_font_size=\"25px\" header_2_font_size=\"30px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h2>tailored house plans</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"-17px|auto||auto|false|false\" custom_padding=\"|13%||13%|false|true\"][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/News_HouseImage1.jpg\" _builder_version=\"4.1\" width=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_HouseImage2.jpg\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_HouseImage3.jpg\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26\" custom_padding=\"10px||12px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.26\"][et_pb_text _builder_version=\"3.27.4\" text_font_size=\"20px\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"\" text_font_size_last_edited=\"on|desktop\" text_text_align=\"center\"]<p><a href=\"https://www.stadsig.co.za/house-plans/\">choose from 15 house types</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','58-revision-v1','','','2020-03-05 11:58:50','2020-03-05 09:58:50','',58,'https://stadsig.co.za/58-revision-v1/',0,'revision','',0),(226350,1,'2020-03-05 12:05:40','2020-03-05 10:05:40','','','','inherit','open','closed','','stadsig_area','','','2020-03-05 12:05:48','2020-03-05 10:05:48','',223333,'https://stadsig.co.za/wp-content/uploads/Stadsig_Area.jpg',0,'attachment','image/jpeg',0),(226351,1,'2020-03-05 12:06:00','2020-03-05 10:06:00','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_Area.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.15\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaLifestyle_header_Mobile.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||87px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22.3\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_sentinels.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"elevate your senses\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font=\"||||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">silence of the sentinels</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.22.3\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||59px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"|8%||8%\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">When it’s time to relax, the Winelands region offers a lifetime’s worth of historic wineries, gourmet restaurants and outdoor activities between its vineyard-clad mountains. Driving north from Stadsig, you cross the nearby Bainskloof Pass to mountain-ringed Tulbagh or head straight up Route 44 to Riebeek-Kasteel and the open skies of the Swartland. Wellington also offers numerous activities in the immediate surroundings, including hiking and mountain biking trails, horse riding, and even game drives at Bontebok Ridge Reserve. If you’re feeling adventurous, hike the kloofs of rugged Limietberg Nature Reserve to swim in rock pools and discover Khoisan cave paintings. Then again, Stadsig’s scenic location at the foot of Groenberg mountain makes sitting on the stoep a tempting option, perhaps sipping a wine from the picturesque Bovlei Valley on the estate’s doorstep.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.22.3\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_map-1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaThumb1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaThumb2.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_AreaThumb3.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','the area','','inherit','closed','closed','','223333-revision-v1','','','2020-03-05 12:06:00','2020-03-05 10:06:00','',223333,'https://stadsig.co.za/223333-revision-v1/',0,'revision','',0),(226353,1,'2020-03-05 12:08:20','2020-03-05 10:08:20','','Stadsig_EstateOverview','','inherit','open','closed','','stadsig_estateoverview','','','2020-03-05 12:08:20','2020-03-05 10:08:20','',223340,'https://stadsig.co.za/wp-content/uploads/Stadsig_EstateOverview.jpg',0,'attachment','image/jpeg',0),(226354,1,'2020-03-05 12:08:39','2020-03-05 10:08:39','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_EstateOverview.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage2.jpg\" background_size=\"contain\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0||122px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22.3\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_breathe.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"room to breathe\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">room to breathe</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.22.3\" custom_padding=\"1px||15px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"|8%||8%\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">The town centre’s shops and schools are just a few minutes’ drive away, but out here, where the road rises towards the famous Bainskloof Pass, Stadsig’s white garden walls, trellises and indigenous flowers enjoy a rejuvenating environment of birdsong and fresh country air. Reached through garden gates, the open-plan interiors bring contemporary aesthetics and conveniences to Stadsig’s bucolic setting. Features include tiled or carpeted floors, Bosch built-in appliances, Hansgrohe brassware, fireplaces, and easy access to stoeps overlooking landscaped gardens of fynbos and olive trees. The two- and three-bedroom homes are available in cool or warm finishes, with numerous layouts and add-ons also on offer. Important practical details, such as the electrified perimeter security wall and fencing, guard house and access control, have all been taken care of, allowing you to concentrate on expressing your taste and planning your family’s future.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"23px||3px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0||29px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|0px||0px\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on||\" _builder_version=\"3.27.4\" text_font=\"Tajawal|500|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"right\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|2%||\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_RegionalLocalLocation.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">regional &amp; local location</span></a><span style=\"color: #ffffff;\">_____</span><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_SDP_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">master site development plan</span></a><span style=\"color: #ffffff;\">_____</span><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_UnitTypeAllocation_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">unit allocation plan</span></a><span style=\"color: #ffffff;\">_____</span><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_SubdivisionPhasing_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">sub-division &amp; phasing plan</span></a></p>[/et_pb_text][et_pb_text disabled_on=\"|on|on\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"right\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|2%||\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_RegionalLocalLocation.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline;\">regional &amp; local location</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_MasterSDP.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline;\">master SDP</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnitAllocationPlan.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline;\">unit allocation plan</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SubDPhasing_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline;\">sub-division &amp; phasing plan</span></a></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_estateOverviewMap.jpg\" custom_margin=\"||36px|\" custom_padding=\"0px||0||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0|0px|false|false\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider color=\"rgba(46,163,242,0)\" _builder_version=\"3.15\" custom_margin=\"|||\" custom_padding=\"22%||22%||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" custom_padding=\"54px|0px|54px|0px|false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage2.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage3.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','estate overview','','inherit','closed','closed','','223340-revision-v1','','','2020-03-05 12:08:39','2020-03-05 10:08:39','',223340,'https://stadsig.co.za/223340-revision-v1/',0,'revision','',0),(226357,1,'2020-03-05 12:10:46','2020-03-05 10:10:46','','Stadsig_HousePlans','','inherit','open','closed','','stadsig_houseplans','','','2020-03-05 12:10:46','2020-03-05 10:10:46','',223346,'https://stadsig.co.za/wp-content/uploads/Stadsig_HousePlans.jpg',0,'attachment','image/jpeg',0),(226358,1,'2020-03-05 12:11:03','2020-03-05 10:11:03','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - DesktopTablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_HousePlans.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" disabled_on=\"off|on|on\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_HousePlans_header_Mobile.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"35px||114px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22.3\" custom_padding=\"71px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_strelitzia.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\" max_width=\"9%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"your taste manifested\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">harmonious cape homes</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"on|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||0||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"60%\" max_width=\"60%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"60%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs module_class=\"equal-tabs\" _builder_version=\"4.1\" body_font=\"||||||||\" custom_margin=\"|0px||0px\" custom_padding=\"|0px||0px\" border_width_all=\"0px\"][et_pb_tab title=\"unit 1\" _builder_version=\"4.1\" body_font=\"||||||||\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 1</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-226143 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit1_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></p>[/et_pb_tab][et_pb_tab title=\"unit 2\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 2</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p><img class=\"alignnone wp-image-226145 size-full\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit2_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></p>[/et_pb_tab][et_pb_tab title=\"unit 3\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 3</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226147 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit3_full.jpg\" alt=\"\" width=\"1298\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 4\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 4</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 156,9m<sup>2</sup> | OUTSIDE COVERED AREA 23,9m<sup>2</sup> | TOTAL 180,8m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226149 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit4_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 5\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 5</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 160m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 184m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226151 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit5_full.jpg\" alt=\"\" width=\"1297\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 6\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 6</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 162,8m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 186,8m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226153 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit6_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 7\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 7</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 164,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 188,3m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226155 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit7_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 8\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 8</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 166,1m<sup>2</sup> | OUTSIDE COVERED AREA 25,5m<sup>2</sup> | TOTAL 191,6m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226157 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit8_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 9\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 9</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 185,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 209,3m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226159 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit9_full.jpg\" alt=\"\" width=\"1298\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 10\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 10</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 210,4m<sup>2</sup> | OUTSIDE COVERED AREA 23,5m<sup>2</sup> | TOTAL 233,9m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226161 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit10_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][et_pb_tab title=\"unit 11\" _builder_version=\"4.1\" tab_font=\"Tajawal|300|||||||\" tab_font_size=\"16\" tab_font_size_tablet=\"16\" tab_font_size_phone=\"16\"]<h3 style=\"text-align: center;\">unit type 11</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 275,7m<sup>2</sup> | OUTSIDE COVERED AREA 22,7m<sup>2</sup> | TOTAL 298,4m<sup>2</sup></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: none; border-bottom: 1px solid #5757599e;\"><img class=\"alignnone wp-image-226163 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit11_full.jpg\" alt=\"\" width=\"1299\" height=\"485\" /></span></p>[/et_pb_tab][/et_pb_tabs][et_pb_code]<style><!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 9%; /*change width of tabs here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->@media screen and (max-width: 768px){ /*change device breakpoint here depending on the number of tabs you have*/<!-- [et_pb_line_break_holder] -->.equal-tabs .et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] --> width: 100%; <!-- [et_pb_line_break_holder] --> text-align: center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->/*-------Tab Colors ----------------*/<!-- [et_pb_line_break_holder] -->li.et_pb_tab_0 {<!-- [et_pb_line_break_holder] --> background-color: #B9A5C6;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_1 {<!-- [et_pb_line_break_holder] --> background-color: #FDE9CF;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_2 {<!-- [et_pb_line_break_holder] --> background-color: #FBA7B2;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_3 {<!-- [et_pb_line_break_holder] --> background-color: #B2FA8E;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_4 {<!-- [et_pb_line_break_holder] --> background-color: #F8D2F9;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_5 {<!-- [et_pb_line_break_holder] --> background-color: #BAE3BC;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_6{<!-- [et_pb_line_break_holder] --> background-color: #A7C9FB;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_7 {<!-- [et_pb_line_break_holder] --> background-color: #FBBC6A;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_8 {<!-- [et_pb_line_break_holder] --> background-color: #BDFEFA;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_9 {<!-- [et_pb_line_break_holder] --> background-color: #F2F2F2;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->li.et_pb_tab_10 {<!-- [et_pb_line_break_holder] --> background-color: #F8EA7C;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls:after {<!-- [et_pb_line_break_holder] --> display: block;<!-- [et_pb_line_break_holder] --> visibility: visible;<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> z-index: 9;<!-- [et_pb_line_break_holder] --> top: -1px;<!-- [et_pb_line_break_holder] --> border-top: none;<!-- [et_pb_line_break_holder] --> content: \"\";<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tabs_controls li {<!-- [et_pb_line_break_holder] -->border-right: 1px solid #ffffff !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->ul.et_pb_tabs_controls {<!-- [et_pb_line_break_holder] -->background-color: rgba(255,255,255,0) !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_pb_tab {<!-- [et_pb_line_break_holder] --> padding: 24px 0px;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|on|on\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"92%\" max_width=\"92%\" custom_padding=\"0px||0px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"92%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_toggle title=\"unit type 1\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#b9a5c6\" icon_color=\"#ffffff\" admin_label=\"Toggle 1\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 1</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,2m<sup>2</sup> | OUTSIDE COVERED AREA 22,2m<sup>2</sup> | TOTAL 132,4m<sup>2</sup></p>\n<p><img class=\"wp-image-226144 size-full aligncenter\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit1_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 2\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fde9cf\" icon_color=\"#ffffff\" admin_label=\"Toggle 2\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 2</h3>\n<p style=\"text-align: center;\">2 Bed | 1 Bath | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 110,3m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 134,4m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226146 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit2_mobile.jpg\" alt=\"\" width=\"573\" height=\"388\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 3\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fba7b2\" icon_color=\"#ffffff\" admin_label=\"Toggle 3\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 3</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 138,7m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 162,7m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226148 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit3_mobile.jpg\" alt=\"\" width=\"558\" height=\"403\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 4\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#b2fa8e\" icon_color=\"#ffffff\" admin_label=\"Toggle 4\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 4</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 156,9m<sup>2</sup> | OUTSIDE COVERED AREA 23,9m<sup>2</sup> | TOTAL 180,8m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226150 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit4_mobile.jpg\" alt=\"\" width=\"525\" height=\"372\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 5\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f8d2f9\" icon_color=\"#ffffff\" admin_label=\"Toggle 5\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 5</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 160m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 184m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226152 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit5_mobile.jpg\" alt=\"\" width=\"513\" height=\"389\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 6\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#bae3bc\" icon_color=\"#ffffff\" admin_label=\"Toggle 6\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 6</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 162,8m<sup>2</sup> | OUTSIDE COVERED AREA 24m<sup>2</sup> | TOTAL 186,8m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226154 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit6_mobile.jpg\" alt=\"\" width=\"558\" height=\"403\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 7\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#a7c9fb\" icon_color=\"#ffffff\" admin_label=\"Toggle 7\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 7</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 1 Garage | 1 Garage</p>\n<p style=\"text-align: center;\">FLOOR AREA 164,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 188,3m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226156 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit7_mobile.jpg\" alt=\"\" width=\"581\" height=\"419\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 8\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#fbbc6a\" icon_color=\"#ffffff\" admin_label=\"Toggle 8\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 8</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet</p>\n<p style=\"text-align: center;\">FLOOR AREA 166,1m<sup>2</sup> | OUTSIDE COVERED AREA 25,5m<sup>2</sup> | TOTAL 191,6m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226158 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit8_mobile.jpg\" alt=\"\" width=\"626\" height=\"372\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 9\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#bdfefa\" icon_color=\"#ffffff\" admin_label=\"Toggle 9\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 9</h3>\n<p style=\"text-align: center;\">3 Bed | 1 Bath | 1 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 185,2m<sup>2</sup> | OUTSIDE COVERED AREA 24,1m<sup>2</sup> | TOTAL 209,3m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226160 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit9_mobile.jpg\" alt=\"\" width=\"568\" height=\"401\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 10\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f2f2f2\" icon_color=\"#ffffff\" admin_label=\"Toggle 10\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 10</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 210,4m<sup>2</sup> | OUTSIDE COVERED AREA 23,5m<sup>2</sup> | TOTAL 233,9m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226162 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit10_mobile.jpg\" alt=\"\" width=\"576\" height=\"403\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_toggle title=\"unit type 11\" closed_toggle_text_color=\"#0c0000\" closed_toggle_background_color=\"#f8ea7c\" icon_color=\"#ffffff\" admin_label=\"Toggle 11\" module_class=\"toggle_custom_3\" _builder_version=\"4.1\" title_text_color=\"#ffffff\" title_font=\"Tajawal|300|||||||\" title_text_align=\"center\" title_letter_spacing=\"-1px\" custom_margin=\"0px||0px|\" custom_padding=\"11px||11px||true\" title_font_size_tablet=\"\" title_font_size_phone=\"\" title_font_size_last_edited=\"on|phone\" title_letter_spacing_tablet=\"\" title_letter_spacing_phone=\"1px\" title_letter_spacing_last_edited=\"on|phone\" custom_css_toggle_title=\"padding-top:0px !important;||padding-bottom:0px !important;\"]<h3 style=\"text-align: center;\">unit type 11</h3>\n<p style=\"text-align: center;\">4 Bed | 1 Bath | 2 En-Suite | 1 Guest Toilet | 2 Garages</p>\n<p style=\"text-align: center;\">FLOOR AREA 275,7m<sup>2</sup> | OUTSIDE COVERED AREA 22,7m<sup>2</sup> | TOTAL 298,4m<sup>2</sup></p>\n<p><img class=\"aligncenter wp-image-226164 size-full\" src=\"https://stadsig.co.za/wp-content/uploads/New_StadsigUnit11_mobile.jpg\" alt=\"\" width=\"548\" height=\"389\" /></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 400;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigWebPlans_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">download floorplan</a></p>[/et_pb_toggle][et_pb_code]<style><!-- [et_pb_line_break_holder] -->/**************************** toggle custom 3 **************************/<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle {<!-- [et_pb_line_break_holder] --> border: none;<!-- [et_pb_line_break_holder] --> transition: 0.4s<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3 .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> font-size: 30px !important ;<!-- [et_pb_line_break_holder] --> content: \"3\" !important;<!-- [et_pb_line_break_holder] --> -webkit-transition: 0.3s;<!-- [et_pb_line_break_holder] --> transition: 0.3s;<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->.toggle_custom_3.et_pb_toggle_open .et_pb_toggle_title:before {<!-- [et_pb_line_break_holder] --> color: #939692;<!-- [et_pb_line_break_holder] --> -ms-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> -webkit-transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> transform: rotate(180deg);<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] -->.et_pb_accordion .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left .et_pb_toggle_title, .et_pb_accordion.et_pb_text_align_left h5.et_pb_toggle_title, .et_pb_toggle .et_pb_toggle_title, .et_pb_toggle h5.et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left .et_pb_toggle_title, .et_pb_toggle.et_pb_text_align_left h5.et_pb_toggle_title {<!-- [et_pb_line_break_holder] --> position: relative;<!-- [et_pb_line_break_holder] --> padding: 50px;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration-color: #5757596b !important;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][et_pb_divider color=\"rgba(46,163,242,0)\" _builder_version=\"3.15\" height=\"25px\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" _builder_version=\"3.22.3\" custom_margin=\"0px|0px|0px|0px\" custom_padding=\"0px|0px|0px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" width=\"60%\" max_width=\"60%\" module_alignment=\"center\" custom_padding=\"27px|0px|2px|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"60%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"14px\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\"]<h3 style=\"text-align: center;\">download documents</h3>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" max_width=\"80%\" module_alignment=\"center\" custom_padding=\"21px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on||\" _builder_version=\"3.27.4\" text_font=\"Tajawal|500|||||||\" text_font_size=\"15px\"]<p style=\"text-align: center;\"><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_GeneralSpecifications_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">general specifications</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">interior finishes</a><span style=\"color: #ffffff;\">_____</span><a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HOA</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">optional extras</a><span style=\"color: #ffffff;\">______</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigPricelistJuly2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">price list</a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_1octFinal.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">deed of sale</a> <span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">building agreement </a><span style=\"color: #ffffff;\">_____</span><a style=\"font-size: 17px; font-weight: 500;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">house plans 1-11</a></p>\r[/et_pb_text][et_pb_text disabled_on=\"off|on|on\" _builder_version=\"3.27.4\" text_font=\"Tajawal|200|||||||\" text_font_size=\"15px\" custom_padding=\"15px|||\"]<p style=\"text-align: center;\"><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_GeneralSpecifications_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">general specifications</a><span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">interior finishes</a><span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HOA</a><span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">optional extras</a><span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_SalesPrices_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">price list</a><span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_1octFinal.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">deed of sale</a> <span style=\"color: #ffffff;\">\r\n</span><a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">building agreement </a>\r\n<a style=\"font-size: 16px; font-weight: 400;\" href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HousePlans_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">house plans 1-11</a></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Explore Story Section\" _builder_version=\"3.22.3\" custom_padding=\"1px||15px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"35px|||\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"|8%||8%\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Pitched roofs, neutral tones, plastered walls and vertically proportioned windows are found throughout Stadsig’s freestanding units, which are all in Cape Vernacular style, that uniquely South African fusion of Cape Dutch and contemporary elements. Core buildings are clearly articulated in the traditional ‘letter of the alphabet’ form developed centuries ago by the Dutch, balanced by single-storey abutments behind parapet walls. Each house is carefully placed and oriented to maximise views, privacy and natural light, while offering protection from prevailing winds. Roof overhangs, pergolas with deciduous planting and functional shutters are attractive architectural responses to the hot local climate. The considered combination of covered parking bays with garages set back behind screening pergolas, low garden walls and landscaping elements contribute to qualitative internal streets and squares. Homes cater to modern tastes, with open-plan kitchens and spacious covered entertainment areas with built-in braais - flexibly designed to allow optional stacking doors – all opening onto private gardens. Scale, proportion, detailing and colours create a harmonious and attractive composition, set in a secure family-friendly environment with indigenous planting and mature olive trees.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage4.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage5.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage6.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','house plans','','inherit','closed','closed','','223346-revision-v1','','','2020-03-05 12:11:03','2020-03-05 10:11:03','',223346,'https://stadsig.co.za/223346-revision-v1/',0,'revision','',0),(226360,1,'2020-03-05 12:12:57','2020-03-05 10:12:57','','Stadsig_Developer','','inherit','open','closed','','stadsig_developer','','','2020-03-05 12:12:57','2020-03-05 10:12:57','',223349,'https://stadsig.co.za/wp-content/uploads/Stadsig_Developer.jpg',0,'attachment','image/jpeg',0),(226361,1,'2020-03-05 12:13:16','2020-03-05 10:13:16','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"off|desktop\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_Developer.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"414px||456px||false|false\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Page4_Main_Mobile.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||86px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||37px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"the developer\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">the developer</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Explore Story Section\" _builder_version=\"3.22.3\" custom_padding=\"1px||23px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||10px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">ATVANTAGE is a multi-faceted group of build environment professional services companies. We are an experienced, dynamic and well-qualified team with a 23 year proven local and international track record in the provision of services to the residential, retail, commercial, industrial, government and leisure fields. Ours is a cause, not a service.</p>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|33%||33%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"font-size: 17px; font-weight: 400;\" href=\"https://www.atvantage.co.za\" target=\"_blank\" rel=\"noopener noreferrer\">w w w . a t v a n t a g e . c o . z a</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|off|off\" _builder_version=\"3.22.3\" custom_padding=\"23px|0px|0|0px|false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.25\" width=\"70%\" max_width=\"70%\" module_alignment=\"center\" custom_padding=\"18px|0px|27px|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"70%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_developer1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_developer2.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_developer3.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" disabled_on=\"off|on|on\" _builder_version=\"3.25\" width=\"70%\" max_width=\"70%\" module_alignment=\"center\" custom_padding=\"18px|0px|27px|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"70%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_developer1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_padding=\"5px||5px||true\"]&nbsp;\r[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_developer2.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_padding=\"5px||5px||true\"]&nbsp;\r[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_developer3.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_padding=\"5px||5px||true\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"28px||27px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"the developer\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">the designers</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section - divider - All devices\" _builder_version=\"3.22.3\" custom_padding=\"1px||0||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0||46px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|29%||29%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Dennis Moss Partnership is a multi-disciplinary practice established in 1983 and based in Stellenbosch, South Africa. The office integrates the disciplines of architecture, urban design, regional and environmental planning and landscape architecture as one functional entity, with its focus on promoting and achieving the principles of sustainable development. Each project is viewed as part of a greater system, where support may be required on various scales ranging from the international sphere to the site specific level. Projects range from complex integrated development planning strategies to award-winning residential estates, commercial and mixed-use developments, golf estates, hotels, office parks and public housing.</p>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|33%||33%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a target=\"_blank\" rel=\"noopener noreferrer\">w w w . d m p . c o . z a</a></span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.22.3\" custom_padding=\"0|0px|17px|0px|false|false\" collapsed=\"on\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"0|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>\r[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','the team','','inherit','closed','closed','','223349-revision-v1','','','2020-03-05 12:13:16','2020-03-05 10:13:16','',223349,'https://stadsig.co.za/223349-revision-v1/',0,'revision','',0),(226364,1,'2020-03-05 12:15:02','2020-03-05 10:15:02','','Stadsig_Documentation','','inherit','open','closed','','stadsig_documentation','','','2020-03-05 12:15:02','2020-03-05 10:15:02','',225551,'https://stadsig.co.za/wp-content/uploads/Stadsig_Documentation.jpg',0,'attachment','image/jpeg',0),(226365,1,'2020-03-05 12:15:16','2020-03-05 10:15:16','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"off|desktop\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_Documentation.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"298px||319px||false|false\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_DocumentationHeader-1024x336.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||86px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22.3\" custom_padding=\"78px||6px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_DocumentationIcon.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"on|off|off\" _builder_version=\"4.1\" max_width=\"9%\" module_alignment=\"center\"][/et_pb_image][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_DocumentationIcon.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off|on|on\" _builder_version=\"4.1\" max_width_tablet=\"\" max_width_phone=\"20%\" max_width_last_edited=\"on|phone\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"17px||37px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"documentation\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">documentation</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Downloads Desktop/Tablet\" _builder_version=\"3.22.3\" custom_padding=\"1px||23px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" admin_label=\"Text Area\" _builder_version=\"3.25\" max_width=\"1152px\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"0||10px||false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"\" use_custom_width=\"on\" custom_width_px=\"1152px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||20%\" custom_css_main_element=\"||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|0%||0%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_RegionalLocalLocation.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">regional &amp; local location</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_SDP_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">master site development plan</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_UnitTypeAllocation_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">unit allocation plan</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_SubdivisionPhasing_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">sub-division &amp; phasing plan</span></a></p>\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_GeneralSpecifications_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">general specifications</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">interior finishes</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">HOA</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">optional extras</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigPricelistJuly2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">price list</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">deed of sale</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_25June2019.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">building agreement</span></a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|20%||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|0%||0%||true\" custom_padding_tablet=\"|6%||6%\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 1</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 2</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 3</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 4</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 5</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 6</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 7</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 8</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 9</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 10</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 11</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 1-11</span></a></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Downloads Phone\" _builder_version=\"3.22.3\" custom_padding=\"1px||23px||false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"off|desktop\" admin_label=\"Text Area\" _builder_version=\"3.25\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0||10px||false|true\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"90%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_css_main_element=\"||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|0%||0%||true\" custom_padding_tablet=\"|||\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_RegionalLocalLocation.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">regional &amp; local location</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigDocuments_MasterSDP.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">master site development plan</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/StadsigUnitAllocationPlan.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">unit allocation plan</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SubDPhasing_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">sub-division &amp; phasing plan</span></a></p>\r\n<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_GeneralSpecifications_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">general specifications</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_InteriorFinishes_2oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">interior finishes</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_HOAConstitution.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">HOA</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_OptionalExtras_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">optional extras</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_SalesPrices_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">price list</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_DeedOfSale_1octFinal.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">deed of sale</span></a>\r\n<a href=\"https://www.stadsig.co.za/wp-content/uploads/STADSIG_BuildingAgreement_1oct.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">building agreement</span></a></p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"|0%||0%||true\" custom_padding_tablet=\"|||\" custom_padding_phone=\"16px||\" custom_padding_last_edited=\"on|phone\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center; font-size: 16px; font-weight: 500;\"><a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part1.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 1</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part2.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 2</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part3.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 3</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part4.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 4</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part5.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 5</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part6.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 6</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part7.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 7</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part8.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 8</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part9.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 9</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part10.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 10</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00_Part11.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plan 11</span></a><br /> <a href=\"https://www.stadsig.co.za/wp-content/uploads/6.-HOUSE-TYPE-1-11_-REV00.pdf\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"text-decoration: underline; font-size: 16px; font-weight: 500;\">house plans 1-11</span></a></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" custom_padding=\"1px|0px|50px|0px|false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage7.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage8.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_LifestyleCollage9.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.22.3\" custom_padding=\"0|0px|17px|0px|false|false\" collapsed=\"on\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"0|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]&nbsp;\r[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','documentation','','inherit','closed','closed','','225551-revision-v1','','','2020-03-05 12:15:16','2020-03-05 10:15:16','',225551,'https://stadsig.co.za/225551-revision-v1/',0,'revision','',0),(226367,1,'2020-03-05 12:16:42','2020-03-05 10:16:42','','Stadsig_News','','inherit','open','closed','','stadsig_news','','','2020-03-05 12:16:42','2020-03-05 10:16:42','',223363,'https://stadsig.co.za/wp-content/uploads/Stadsig_News.jpg',0,'attachment','image/jpeg',0),(226368,1,'2020-03-05 12:17:03','2020-03-05 10:17:03','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_News.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"114px|0px|0|0px|false|false\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Page5_Main_1_Mobile.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"94px||54px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" custom_padding=\"7px|0px|54px|0px|false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_2_font_size=\"30px\"]<h2 style=\"text-align: center;\">latest news</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.25\" max_width=\"80%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_News1.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_Website_News2.jpg\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.1\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.25\" max_width=\"80%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" header_font=\"||||||||\" header_3_font=\"||||||||\"]<h3 style=\"text-align: center;\">STADSIG COUNTRY ESTATE SET<br />FOR IMMINENT REJUVENATION</h3>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"15px\" custom_padding=\"|10%||10%||true\" text_font_size_tablet=\"\" text_font_size_phone=\"\" text_font_size_last_edited=\"on|desktop\"]<p>The intrigue and disappointment surrounding the picturesque residential development of Stadsig in Wellington, has finally come to an end after many years of uncertainty. The further development of the estate has been taken over by ATVANTAGE, a multi-faceted group of built environment professional services and development companies.</p>[/et_pb_text][et_pb_button button_url=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PressArticle1.pdf\" url_new_window=\"on\" button_text=\"read more\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#a6bf96\" button_font=\"||||||||\" button_icon=\"%%20%%\" button_icon_color=\"#ffffff\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" locked=\"off\"]<h3 style=\"text-align: center;\">FURTHER DEVELOPMENT OF STADSIG \nCOUNTRY ESTATE ADVANCING POSITIVELY</h3>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"15px\" custom_padding=\"|10%||10%||true\" text_font_size_tablet=\"\" text_font_size_phone=\"\" text_font_size_last_edited=\"on|desktop\" locked=\"off\"]<p>The further development of the scenic residential Stadsig Country Estate is advancing positively since it was taken over by ATVANTAGE, a multi-faceted group of built environment professional services and development companies.<br /><br /></p>[/et_pb_text][et_pb_button button_url=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PressArticle2.pdf\" url_new_window=\"on\" button_text=\"read more\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#a6bf96\" button_font=\"||||||||\" button_icon=\"%%20%%\" button_icon_color=\"#ffffff\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223327\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"135px|0px|113px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" global_module=\"223328\" collapsed=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_NewContactParalax_1280-300x158.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','news','','inherit','closed','closed','','223363-revision-v1','','','2020-03-05 12:17:03','2020-03-05 10:17:03','',223363,'https://stadsig.co.za/223363-revision-v1/',0,'revision','',0),(226371,1,'2020-03-05 12:17:27','2020-03-05 10:17:27','','Stadsig_Contact','','inherit','open','closed','','stadsig_contact','','','2020-03-05 12:17:27','2020-03-05 10:17:27','',223369,'https://stadsig.co.za/wp-content/uploads/Stadsig_Contact.jpg',0,'attachment','image/jpeg',0),(226372,1,'2020-03-05 12:17:56','2020-03-05 10:17:56','[et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Hero Main Image - Desktop/Tablet\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.2\" background_image=\"https://stadsig.co.za/wp-content/uploads/Stadsig_Contact.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"623px|0px|0|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"76px||345px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.10.1\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Hero Main Image - Mobile\" module_class=\"section\" _builder_version=\"3.22.3\" custom_margin=\"|||\" custom_padding=\"0||2px||false|false\" animation_style=\"fade\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\"][et_pb_row custom_padding_last_edited=\"on|phone\" admin_label=\"Hero Image - All Devices\" _builder_version=\"4.1\" background_image=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_contactHeaderMobile.jpg\" width=\"100%\" max_width=\"100%\" custom_margin=\"2px||0px|\" custom_padding=\"114px|0px|329px|0px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"126px||122px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_divider divider_style=\"none\" _builder_version=\"3.15\" height=\"54px\" custom_padding=\"11px||11px||true\"]&nbsp;\r[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"Senses Image - Tablet/Phone\" _builder_version=\"3.22.3\" custom_padding=\"57px||24px||false|false\" custom_padding_tablet=\"37px||6px|\" custom_padding_phone=\"23px|||\"][et_pb_row admin_label=\"Image\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_nature.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"]&nbsp;\r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" disabled_on=\"off|off|off\" admin_label=\"H1 Caption - All Devices\" _builder_version=\"3.22.3\" custom_padding=\"47px||38px||false|false\" custom_padding_tablet=\"8px||6px|\" custom_padding_phone=\"7px|||\"][et_pb_row admin_label=\"H1 Caption\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px||2px||false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"in touch with nature\" _builder_version=\"3.27.4\" text_font=\"Open Sans||||||||\" text_font_size=\"18px\" link_font=\"Open Sans||||||||\" link_text_color=\"#0099e5\" link_font_size=\"18px\" header_font=\"|300|||||||\" header_2_font_size=\"25px\" header_2_letter_spacing=\"1px\" text_orientation=\"center\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\"]<h1 style=\"text-align: center;\">in touch with nature</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|off|off\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22.3\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\"][et_pb_row column_structure=\"2_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"3.25\" parallax=\"on\" parallax_method=\"off\" width=\"70%\" max_width=\"70%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"70%\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_css_main_element=\"max-height:200%;||height:150%;\" custom_padding__hover=\"|||\"][et_pb_code]<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3321.7665561255903!2d19.02167231580225!3d-33.63729441451314!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1dcd08c85e59e965%3A0x73d35e69c70026e0!2sStadsig+Estate!5e0!3m2!1sen!2sza!4v1540278951257\" width=\"850\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>[/et_pb_code][et_pb_map address=\"1987 Church St, Wellington, 7654, South Africa\" zoom_level=\"15\" address_lat=\"-33.63760531451644\" address_lng=\"19.020183425220466\" disabled_on=\"on|on|on\" _builder_version=\"3.17.1\" disabled=\"on\"][et_pb_map_pin title=\"Stadsig Estate\" pin_address=\"1987 Church St, Wellington, 7654, South Africa\" pin_address_lat=\"-33.6372615140971\" pin_address_lng=\"19.023757184130886\" _builder_version=\"3.17.1\"]1987 Church Street\r\nWellington\r\nWestern Cape\r[/et_pb_map_pin][/et_pb_map][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_css_main_element=\"text-align:center !important;\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">1987 Church St.\r\nWellington. 7654</p>\r[/et_pb_text][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|84px||84px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"] [/et_pb_text][et_pb_code]<html><!-- [et_pb_line_break_holder] --><div style=\"padding-left:17px;\"><!-- [et_pb_line_break_holder] -->[et_social_follow icon_style=\"darken\" icon_shape=\"rounded\" icons_location=\"top\" col_number=\"auto\" custom_colors=\"true\" bg_color=\"#a6bf96\" bg_color_hover=\"#ffffff\" icon_color=\"#ffffff\" icon_color_hover=\"#a6bf96\" outer_color=\"dark\" network_names=\"true\"]<!-- [et_pb_line_break_holder] --></div><!-- [et_pb_line_break_holder] --></html>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"off|on|on\" admin_label=\"Contact Desktop/Tablet\" _builder_version=\"3.22.3\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Desktop/Tablet\" module_class=\"element\" _builder_version=\"3.25\" parallax=\"on\" parallax_method=\"off\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"90%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_css_main_element=\"max-height:200%;||height:150%;\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" text_orientation=\"center\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Stadsig Private Contry Estate\r\n1987 Church Street\r\nWellington. 7654</p>\r\n<p style=\"text-align: center;\">[/et_pb_text][et_pb_text admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"11px|34px|11px|34px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r\n<p style=\"text-align: center;\">[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"]</p>\r\n<p style=\"text-align: center;\">[/et_pb_text][et_pb_code]<html><!-- [et_pb_line_break_holder] --><div style=\"padding-left:35px;\"><!-- [et_pb_line_break_holder] -->[et_social_follow icon_style=\"darken\" icon_shape=\"rounded\" icons_location=\"top\" col_number=\"auto\" custom_colors=\"true\" bg_color=\"#a6bf96\" bg_color_hover=\"#ffffff\" icon_color=\"#ffffff\" icon_color_hover=\"#a6bf96\" outer_color=\"dark\" network_names=\"true\"]<!-- [et_pb_line_break_holder] --></div><!-- [et_pb_line_break_holder] --></html>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" disabled_on=\"on|on|on\" admin_label=\"Contact Phone\" _builder_version=\"3.22.3\" parallax=\"on\" parallax_method=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"2px||1px|\" custom_padding_tablet=\"2px||2px|\" custom_padding_phone=\"\" border_radii=\"on|0px|0px|0px|0px\" border_style_all=\"none\" border_width_top=\"1px\" border_color_top=\"#a6bf96\" border_style_top=\"solid\" border_width_bottom=\"1px\" border_color_bottom=\"#a6bf96\" border_style_bottom=\"solid\" disabled=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Contact Phone\" module_class=\"element\" _builder_version=\"3.25\" background_image=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_contactParalax1920.jpg\" parallax=\"on\" parallax_method=\"off\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"58px|0px|29px|0px|false|false\" custom_padding_tablet=\"0px||0px|\" custom_padding_phone=\"\" border_color_all=\"#a7bf95\" border_style_all=\"none\" border_style_top=\"solid\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"off|on|on\" admin_label=\"Contact Us\" _builder_version=\"3.27.4\" text_font=\"Tajawal-light|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"45px\" background_color=\"#a6bf96\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"11px|17px|11px|17px||true\" custom_margin_tablet=\"11px|190px|11px|190px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"15px||8px|\" custom_padding_tablet=\"13px||13px||true\" custom_padding_phone=\"11px||11px||true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\"]<h2 style=\"text-align: center;\">get in touch</h2>\r\n<p style=\"text-align: center;\">[/et_pb_text][et_pb_text admin_label=\"Form\" _builder_version=\"3.27.4\" custom_padding=\"|17px||17px||true\" custom_padding_tablet=\"|94px||94px||true\" custom_padding_phone=\"|37px||37px||true\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">[formidable id=\"6\"]</p>\r\n<p style=\"text-align: center;\">[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_id=\"ssfoot-desk\" _builder_version=\"3.15\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223313\" collapsed=\"off\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|off|off\" admin_label=\"Footer - Desktop\" module_class=\"footer-desktop\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_padding=\"40px|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"|300|||||||\" text_text_color=\"#232323\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" custom_margin=\"-20px|||\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br /> <a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:lynette.kannemeyer@pamgolding.co.za\"><span style=\"text-decoration: underline;\">email Lynette</span></a><br /> Erika Odendaal 082 412 6964<br /> <span style=\"text-decoration: underline;\"><a style=\"font-size: 16px; font-weight: 500;\" href=\"mailto:erika.odendaal@pamgolding.co.za\">email Erika</a></span></p>[/et_pb_text][et_pb_code]<style><!-- [et_pb_line_break_holder] --> @media only screen and (min-width: 1110px) and (max-width: 1405px) { <!-- [et_pb_line_break_holder] --> .et_pb_row_18 {<!-- [et_pb_line_break_holder] --> max-width: 100% !important;<!-- [et_pb_line_break_holder] --> width: 90% !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> .et_pb_text_11 {<!-- [et_pb_line_break_holder] --> font-size: 14px !important;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> <!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\" max_width=\"80%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|off\" admin_label=\"Bottom Footer - Desktop\" module_class=\"bottom-desktop\" _builder_version=\"3.22.3\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223310\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Desktop\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_SS.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Logo\" _builder_version=\"3.23\" module_alignment=\"right\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"15px\" text_orientation=\"center\" background_layout=\"dark\" custom_padding=\"6px|||\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><a style=\"color: #ffffff !important; text-decoration: underline;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://stadsig.co.za/wp-content/uploads/New_Stadsig_copyright.png\" align=\"right\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Copyright\" _builder_version=\"4.1\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" module_id=\"ssfoot-tab\" _builder_version=\"3.10.2\" custom_padding=\"0|0px|17px|0px|false|false\" disabled=\"on\" global_module=\"223314\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Tablet\" module_class=\"footer-tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />Erika Odendaal 082 412 6964</p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PamGoldingLogo-1.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo_Atvatage.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" disabled_on=\"off||\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" disabled_on=\"on|on|on\" admin_label=\"Footer - Tablet\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" disabled=\"on\"][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"https://www.atvantage.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" max_width=\"93%\" module_alignment=\"center\"]<p> </p>[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" module_class=\"columnd size-lof2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_DMLogo-1.png\" url=\"http://www.dmp.co.za/\" url_new_window=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|off|on\" admin_label=\"Bottom Footer - Tablet\" module_class=\"bottom-tablet\" _builder_version=\"3.10.2\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223311\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Footer - Phone\" module_class=\"footer-phone\" _builder_version=\"3.17.1\" custom_padding=\"0|0px|17px|0px|false|false\" global_module=\"223315\" locked=\"off\" collapsed=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Footer - Phobe\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"74%\" max_width=\"74%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"74%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" custom_padding=\"22px|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Sales\" _builder_version=\"3.27.4\" text_font=\"Tajawal|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" animation_style=\"fold\" animation_direction=\"bottom\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\"]<p style=\"text-align: center;\">Lynette Kannemeyer 082 672 1022<br />email <a href=\"mailto:lynette.kannemeyer@pamgolding.co.za\">Lynette</a><br />Erika Odendaal 082 412 6964<br />email <a href=\"mailto:erika.odendaal@pamgolding.co.za\">Erika</a></p>[/et_pb_text][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_PGP_logo.png\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Pam Golding\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/Stadsig_AtvantageLogo-1.png\" url=\"http://www.atvantage.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Atvantage\" _builder_version=\"3.23\" module_alignment=\"center\"]<p> </p>[/et_pb_image][et_pb_image src=\"https://www.stadsig.co.za/wp-content/uploads/DennisMoss_logo.png\" url=\"http://www.dmp.co.za\" url_new_window=\"on\" align=\"center\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" admin_label=\"Dennis Moss\" _builder_version=\"3.23\"]<p> </p>[/et_pb_image][et_pb_code]<style><!-- [et_pb_line_break_holder] -->a {<!-- [et_pb_line_break_holder] -->text-decoration:underline;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" admin_label=\"Bottom Footer - Phone\" module_class=\"bottom-mobile\" _builder_version=\"3.17.1\" background_color=\"#a6bf96\" custom_padding=\"0|0px|0|0px|false|false\" global_module=\"223312\" collapsed=\"on\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Bottom Footer - Phone\" _builder_version=\"3.25\" custom_padding=\"15px|0px|11px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Tajawal||||||||\" text_font_size=\"17px\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<p><img class=\"wp-image-215020 aligncenter size-full\" src=\"https://www.stadsig.co.za/wp-content/uploads/Footer_Copyrite.png\" alt=\"\" width=\"144\" height=\"57\" /></p>\n<p style=\"text-align: center;\"><a style=\"color: #ffffff;\" href=\"http://www.stadsig.co.za/disclaimer\">disclaimer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','contact','','inherit','closed','closed','','223369-revision-v1','','','2020-03-05 12:17:56','2020-03-05 10:17:56','',223369,'https://stadsig.co.za/223369-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `sts_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_smush_dir_images`
--

DROP TABLE IF EXISTS `sts_smush_dir_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_smush_dir_images` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `path` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `path_hash` char(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `resize` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lossy` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `error` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image_size` int(10) unsigned DEFAULT NULL,
  `orig_size` int(10) unsigned DEFAULT NULL,
  `file_time` int(10) unsigned DEFAULT NULL,
  `last_scan` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `meta` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `path_hash` (`path_hash`),
  KEY `image_size` (`image_size`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_smush_dir_images`
--

LOCK TABLES `sts_smush_dir_images` WRITE;
/*!40000 ALTER TABLE `sts_smush_dir_images` DISABLE KEYS */;
/*!40000 ALTER TABLE `sts_smush_dir_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_term_relationships`
--

DROP TABLE IF EXISTS `sts_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_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 `sts_term_relationships`
--

LOCK TABLES `sts_term_relationships` WRITE;
/*!40000 ALTER TABLE `sts_term_relationships` DISABLE KEYS */;
INSERT INTO `sts_term_relationships` VALUES (1345,7,0),(1460,3,0),(1460,6,0),(1460,8,0),(1460,9,0),(1463,2,0),(1463,3,0),(1463,6,0),(1463,8,0),(1463,9,0),(214969,12,0),(214969,13,0),(214983,14,0),(214983,16,0),(214985,13,0),(214985,15,0),(215008,6,0),(215008,8,0),(215008,9,0),(215035,2,0),(215035,6,0),(215035,8,0),(215035,9,0),(215056,25,0),(215056,34,0),(215056,42,0),(215058,25,0),(215058,34,0),(215058,42,0),(215059,25,0),(215059,34,0),(215059,42,0),(215060,25,0),(215060,34,0),(215060,42,0),(215061,25,0),(215061,34,0),(215061,42,0),(215071,35,0),(215071,36,0),(215071,42,0),(215151,35,0),(215151,36,0),(215151,42,0),(215152,35,0),(215152,36,0),(215152,42,0),(223310,6,0),(223310,8,0),(223310,9,0),(223310,19,0),(223311,6,0),(223311,8,0),(223311,9,0),(223311,19,0),(223312,6,0),(223312,8,0),(223312,9,0),(223312,19,0),(223313,6,0),(223313,8,0),(223313,9,0),(223313,19,0),(223314,6,0),(223314,8,0),(223314,9,0),(223314,19,0),(223315,6,0),(223315,8,0),(223315,9,0),(223315,19,0),(223327,6,0),(223327,8,0),(223327,9,0),(223327,20,0),(223328,6,0),(223328,8,0),(223328,9,0),(223328,20,0),(223373,7,0),(223374,7,0),(223375,7,0),(223377,7,0),(223378,7,0),(223379,7,0),(223383,27,0),(223383,33,0),(223383,42,0),(223384,28,0),(223384,33,0),(223384,42,0),(223389,29,0),(223389,33,0),(223389,42,0),(223390,31,0),(223390,33,0),(223390,42,0),(223393,26,0),(223393,38,0),(223393,42,0),(223394,26,0),(223394,38,0),(223394,42,0),(223395,26,0),(223395,38,0),(223395,42,0),(223396,26,0),(223396,33,0),(223396,42,0),(224147,32,0),(224147,33,0),(224147,42,0),(224273,31,0),(224273,33,0),(224273,35,0),(224273,42,0),(224288,35,0),(224288,36,0),(224288,42,0),(224305,12,0),(224305,13,0),(224422,25,0),(224422,33,0),(224422,42,0),(224423,26,0),(224423,37,0),(224423,42,0),(224428,27,0),(224428,33,0),(224428,40,0),(224428,42,0),(224537,28,0),(224537,34,0),(224537,42,0),(224682,33,0),(224682,38,0),(224682,42,0),(224683,38,0),(224683,42,0),(224684,27,0),(224684,33,0),(224684,42,0),(224685,28,0),(224685,33,0),(224685,42,0),(224945,28,0),(224945,43,0),(224946,28,0),(224946,43,0),(224948,28,0),(224948,43,0),(224959,28,0),(224959,43,0),(224972,28,0),(224972,39,0),(224972,43,0),(224973,28,0),(224973,39,0),(224973,43,0),(224974,28,0),(224974,39,0),(224974,43,0),(224975,28,0),(224975,39,0),(224975,43,0),(224976,28,0),(224976,39,0),(224976,43,0),(224977,28,0),(224977,39,0),(224977,43,0),(224978,28,0),(224978,39,0),(224978,43,0),(224979,28,0),(224979,39,0),(224979,43,0),(224980,28,0),(224980,39,0),(224980,43,0),(224981,28,0),(224981,39,0),(224981,43,0),(224985,28,0),(224985,39,0),(224985,43,0),(225028,28,0),(225028,43,0),(225029,28,0),(225029,43,0),(225062,28,0),(225062,43,0),(225435,28,0),(225435,43,0),(225437,28,0),(225437,43,0),(225438,28,0),(225438,43,0),(225480,28,0),(225480,42,0),(225480,43,0),(225525,31,0),(225525,33,0),(225525,42,0),(225526,26,0),(225526,33,0),(225526,42,0),(225533,5,0),(225533,6,0),(225533,9,0),(225533,22,0),(225593,7,0),(225754,25,0),(225754,36,0),(225804,7,0),(225902,4,0),(225902,5,0),(225902,6,0),(226007,4,0),(226007,5,0),(226007,6,0),(226008,4,0),(226008,5,0),(226008,6,0),(226009,5,0),(226009,6,0),(226009,9,0),(226010,5,0),(226010,6,0),(226010,9,0),(226015,4,0),(226015,5,0),(226015,6,0),(226254,5,0),(226254,6,0),(226254,9,0),(226256,4,0),(226295,4,0),(226295,5,0),(226295,6,0),(226301,4,0);
/*!40000 ALTER TABLE `sts_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_term_taxonomy`
--

DROP TABLE IF EXISTS `sts_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_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=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_term_taxonomy`
--

LOCK TABLES `sts_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `sts_term_taxonomy` DISABLE KEYS */;
INSERT INTO `sts_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'layout_category','',0,2),(3,3,'layout_category','',0,2),(4,4,'layout_type','',0,5),(5,5,'scope','',0,9),(6,6,'module_width','',0,21),(7,7,'nav_menu','',0,9),(8,8,'scope','',0,12),(9,9,'layout_type','',0,16),(10,10,'layout_category','',0,0),(11,11,'layout_category','',0,0),(12,12,'category','',0,2),(13,13,'category','',0,3),(14,14,'category','',0,1),(15,15,'category','',0,1),(16,16,'category','',0,1),(17,17,'layout_category','',0,0),(18,18,'layout_category','',0,0),(19,19,'layout_category','',0,6),(20,20,'layout_category','',0,2),(21,21,'layout_category','',0,0),(22,22,'layout_category','',0,1),(23,23,'layout_type','',0,0),(24,24,'layout_category','',0,0),(25,25,'media_category','',0,7),(26,26,'media_category','',0,6),(27,27,'media_category','',0,3),(28,28,'media_category','',0,25),(29,29,'media_category','',0,1),(30,30,'media_category','',0,0),(31,31,'media_category','',0,3),(32,32,'media_category','',0,1),(33,33,'media_category','',0,14),(34,34,'media_category','',0,6),(35,35,'media_category','',0,5),(36,36,'media_category','',0,5),(37,37,'media_category','',0,1),(38,38,'media_category','',0,5),(39,39,'media_category','',0,11),(40,40,'media_category','',0,1),(41,41,'media_category','',0,0),(42,42,'media_category','',0,30),(43,43,'media_category','',0,22);
/*!40000 ALTER TABLE `sts_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_termmeta`
--

DROP TABLE IF EXISTS `sts_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_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 DEFAULT NULL,
  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 `sts_termmeta`
--

LOCK TABLES `sts_termmeta` WRITE;
/*!40000 ALTER TABLE `sts_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `sts_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_terms`
--

DROP TABLE IF EXISTS `sts_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_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=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_terms`
--

LOCK TABLES `sts_terms` WRITE;
/*!40000 ALTER TABLE `sts_terms` DISABLE KEYS */;
INSERT INTO `sts_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Header Layouts','mhmm_headers',0),(3,'Menu Layouts','mhmm_menus',0),(4,'layout','layout',0),(5,'not_global','not_global',0),(6,'regular','regular',0),(7,'Main','main',0),(8,'global','global',0),(9,'section','section',0),(10,'Falkor Bundle','falkor-bundle',0),(11,'Divi Den','divi-den',0),(12,'about','about',0),(13,'developer','developer',0),(14,'landscape','landscape',0),(15,'phase 1','phase-1',0),(16,'designs','designs',0),(17,'12 Days of Christmas','12-days-of-christmas',0),(18,'Unicorn Bundle','unicorn-bundle',0),(19,'Footer','footer',0),(20,'Contact','contact',0),(21,'Sigmund Collection','sigmund-collection',0),(22,'modules','modules',0),(23,'module','module',0),(24,'Tab Content','tab-content',0),(25,'Home','home',0),(26,'The Area','the-area',0),(27,'Estate Overview','estate-overview',0),(28,'House Plans','house-plans',0),(29,'The Team','the-team',0),(30,'Gallery','gallery',0),(31,'News','news',0),(32,'Contact','contact',0),(33,'Hero Images','hero-images',0),(34,'Emblems','emblems',0),(35,'Footer','footer',0),(36,'Logos','logos',0),(37,'Maps','maps',0),(38,'Lifestyle','lifestyle',0),(39,'Floor Plans','floor-plans',0),(40,'Site Plans','site-plans',0),(41,'Tabs','tabs',0),(42,'Active','active',0),(43,'Documents','documents',0);
/*!40000 ALTER TABLE `sts_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_tm_taskmeta`
--

DROP TABLE IF EXISTS `sts_tm_taskmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_tm_taskmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `task_id` bigint(20) NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `task_id` (`task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_tm_taskmeta`
--

LOCK TABLES `sts_tm_taskmeta` WRITE;
/*!40000 ALTER TABLE `sts_tm_taskmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `sts_tm_taskmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_tm_tasks`
--

DROP TABLE IF EXISTS `sts_tm_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_tm_tasks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `type` varchar(300) COLLATE utf8mb4_unicode_ci NOT NULL,
  `class_identifier` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT '0',
  `attempts` int(11) DEFAULT 0,
  `description` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time_created` timestamp NOT NULL DEFAULT current_timestamp(),
  `last_locked_at` bigint(20) DEFAULT 0,
  `status` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`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 `sts_tm_tasks`
--

LOCK TABLES `sts_tm_tasks` WRITE;
/*!40000 ALTER TABLE `sts_tm_tasks` DISABLE KEYS */;
/*!40000 ALTER TABLE `sts_tm_tasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_usermeta`
--

DROP TABLE IF EXISTS `sts_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_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 DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_usermeta`
--

LOCK TABLES `sts_usermeta` WRITE;
/*!40000 ALTER TABLE `sts_usermeta` DISABLE KEYS */;
INSERT INTO `sts_usermeta` VALUES (1,1,'nickname','STadSIG_AdMin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'sts_capabilities','a:7:{s:13:\"administrator\";b:1;s:14:\"frm_view_forms\";b:1;s:14:\"frm_edit_forms\";b:1;s:16:\"frm_delete_forms\";b:1;s:19:\"frm_change_settings\";b:1;s:16:\"frm_view_entries\";b:1;s:18:\"frm_delete_entries\";b:1;}'),(13,1,'sts_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy,theme_editor_notice'),(15,1,'show_welcome_panel','1'),(17,1,'sts_dashboard_quick_press_last_post_id','226373'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"129.205.136.0\";}'),(19,1,'frm_ignore_tour','1'),(20,1,'sts_user-settings','editor=html&libraryContent=browse&imgsize=large&posts_list_mode=list&hidetb=1'),(21,1,'sts_user-settings-time','1579165757'),(22,1,'_application_passwords','a:0:{}'),(23,1,'closedpostboxes_post','a:0:{}'),(24,1,'metaboxhidden_post','a:1:{i:0;s:12:\"et_pb_layout\";}'),(25,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(26,1,'metaboxhidden_nav-menus','a:6:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:11:\"add-frm_tag\";i:4;s:20:\"add-project_category\";i:5;s:15:\"add-project_tag\";}'),(27,1,'sts_media_library_mode','list'),(28,1,'upload_per_page','500'),(29,1,'closedpostboxes_page','a:1:{i:0;s:12:\"revisionsdiv\";}'),(30,1,'metaboxhidden_page','a:4:{i:0;s:16:\"commentstatusdiv\";i:1;s:11:\"commentsdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(31,1,'nav_menu_recently_edited','7'),(32,2,'nickname','stAdsIG_Entries'),(33,2,'first_name','Johandre'),(34,2,'last_name','Le Roux'),(35,2,'description',''),(36,2,'rich_editing','true'),(37,2,'syntax_highlighting','true'),(38,2,'comment_shortcuts','false'),(39,2,'admin_color','fresh'),(40,2,'use_ssl','0'),(41,2,'show_admin_bar_front','false'),(42,2,'locale',''),(43,2,'sts_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(44,2,'sts_user_level','10'),(45,2,'dismissed_wp_pointers','wp496_privacy'),(47,2,'sts_dashboard_quick_press_last_post_id','224250'),(48,2,'community-events-location','a:1:{s:2:\"ip\";s:13:\"129.205.143.0\";}'),(52,2,'sts_user-settings','editor=html'),(53,2,'sts_user-settings-time','1533203483'),(54,2,'session_tokens','a:1:{s:64:\"5d2fa0a596f83d82ed95bb67b8abeacc2b1f8a2960b53d33fd0ec6a2a99249cd\";a:4:{s:10:\"expiration\";i:1538039387;s:2:\"ip\";s:13:\"41.13.238.152\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36\";s:5:\"login\";i:1537866587;}}'),(55,1,'closedpostboxes_et_pb_layout','a:0:{}'),(56,1,'metaboxhidden_et_pb_layout','a:1:{i:0;s:7:\"slugdiv\";}'),(57,1,'edit_et_pb_layout_per_page','54'),(59,1,'frm_reviewed','a:3:{s:4:\"time\";i:1562581559;s:9:\"dismissed\";b:0;s:5:\"asked\";i:0;}'),(60,1,'closedpostboxes_divi_overlay','a:1:{i:0;s:10:\"postcustom\";}'),(61,1,'metaboxhidden_divi_overlay','a:2:{i:0;s:7:\"slugdiv\";i:1;s:9:\"authordiv\";}'),(62,1,'a3_lazy_load-plugin_framework_global_box-opened','1'),(63,1,'a3_lazy_load-a3_lazy_load_global_settings','a:9:{i:0;s:20:\"lazy_load_enable_box\";i:1;s:23:\"a3l_apply_to_images_box\";i:2;s:23:\"a3l_apply_to_videos_box\";i:3;s:15:\"a3l_exclude_box\";i:4;s:32:\"a3l_script_load_optimization_box\";i:5;s:33:\"a3l_wordpress_mobile_template_box\";i:6;s:22:\"a3l_settings_style_box\";i:7;s:27:\"a3l_image_load_theshold_box\";i:8;s:29:\"a3l_jetpack_compatibility_box\";}'),(64,1,'session_tokens','a:1:{s:64:\"0f12261e7db840fffbedff108f5ae11ff4b9c92712213d8c19f6525a2a850cd2\";a:4:{s:10:\"expiration\";i:1587716995;s:2:\"ip\";s:14:\"129.205.136.34\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36/null\";s:5:\"login\";i:1587544195;}}');
/*!40000 ALTER TABLE `sts_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sts_users`
--

DROP TABLE IF EXISTS `sts_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sts_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=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sts_users`
--

LOCK TABLES `sts_users` WRITE;
/*!40000 ALTER TABLE `sts_users` DISABLE KEYS */;
INSERT INTO `sts_users` VALUES (1,'STadSIG_AdMin','$P$BSA2GM9Q1o0xzc.nSQOcEQtTqD8Lmz0','stadsig_admin','info@stadsig.co.za','','2018-07-16 10:52:19','',0,'STadSIG_AdMin'),(2,'stAdsIG_Entries','$P$BZo3D93UC8JXk3LTt5oaQEVmIYvnpJ/','stadsig_entries','johandre@atvantage.co.za','https://stadsig.co.za','2018-08-02 07:17:48','1533194271:$P$B.Sl2XKbUCenINOoH6NsoNVDWGIXor1',0,'Johandre Le Roux');
/*!40000 ALTER TABLE `sts_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2022-08-23 22:49:27