-- MySQL dump 10.16  Distrib 10.2.25-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: buildi27_bgri880
-- ------------------------------------------------------
-- Server version	10.2.12-MariaDB-log

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

--
-- Table structure for table `wpym_commentmeta`
--

DROP TABLE IF EXISTS `wpym_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpym_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpym_commentmeta`
--

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

--
-- Table structure for table `wpym_comments`
--

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

--
-- Dumping data for table `wpym_comments`
--

LOCK TABLES `wpym_comments` WRITE;
/*!40000 ALTER TABLE `wpym_comments` DISABLE KEYS */;
INSERT INTO `wpym_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2019-08-29 15:54:58','2019-08-29 15:54:58','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'post-trashed','','',0,0);
/*!40000 ALTER TABLE `wpym_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpym_links`
--

DROP TABLE IF EXISTS `wpym_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpym_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpym_links`
--

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

--
-- Table structure for table `wpym_options`
--

DROP TABLE IF EXISTS `wpym_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpym_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=734 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpym_options`
--

LOCK TABLES `wpym_options` WRITE;
/*!40000 ALTER TABLE `wpym_options` DISABLE KEYS */;
INSERT INTO `wpym_options` VALUES (1,'siteurl','http://dev.buildingsystemsgroup.com','yes'),(2,'home','http://dev.buildingsystemsgroup.com','yes'),(3,'blogname','Building Systems Group, Inc','yes'),(4,'blogdescription','NVESTIGATION - COMMISSIONING - VERIFICATION','yes'),(252,'boldgrid_installed_page_ids','a:3:{i:210;i:18;i:1;i:20;i:2;i:22;}','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','brent.capps@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:151:{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:13:\"^attribution$\";s:36:\"index.php?bg_attribution=attribution\";s:21:\"^attribution-staging$\";s:44:\"index.php?bg_attribution=attribution-staging\";s:40:\"./(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"./(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:16:\"./(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:28:\"./(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:10:\"./(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:57:\"wpforms_log_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpforms_log_type=$matches[1]&feed=$matches[2]\";s:52:\"wpforms_log_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpforms_log_type=$matches[1]&feed=$matches[2]\";s:33:\"wpforms_log_type/([^/]+)/embed/?$\";s:49:\"index.php?wpforms_log_type=$matches[1]&embed=true\";s:45:\"wpforms_log_type/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?wpforms_log_type=$matches[1]&paged=$matches[2]\";s:27:\"wpforms_log_type/([^/]+)/?$\";s:38:\"index.php?wpforms_log_type=$matches[1]\";s:42:\"bg_attribution/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"bg_attribution/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"bg_attribution/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"bg_attribution/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"bg_attribution/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"bg_attribution/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"bg_attribution/([^/]+)/embed/?$\";s:47:\"index.php?bg_attribution=$matches[1]&embed=true\";s:35:\"bg_attribution/([^/]+)/trackback/?$\";s:41:\"index.php?bg_attribution=$matches[1]&tb=1\";s:43:\"bg_attribution/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?bg_attribution=$matches[1]&paged=$matches[2]\";s:50:\"bg_attribution/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?bg_attribution=$matches[1]&cpage=$matches[2]\";s:39:\"bg_attribution/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?bg_attribution=$matches[1]&page=$matches[2]\";s:31:\"bg_attribution/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"bg_attribution/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"bg_attribution/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"bg_attribution/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"bg_attribution/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"bg_attribution/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"bg-block-types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?bg_block_type=$matches[1]&feed=$matches[2]\";s:50:\"bg-block-types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?bg_block_type=$matches[1]&feed=$matches[2]\";s:31:\"bg-block-types/([^/]+)/embed/?$\";s:46:\"index.php?bg_block_type=$matches[1]&embed=true\";s:43:\"bg-block-types/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?bg_block_type=$matches[1]&paged=$matches[2]\";s:25:\"bg-block-types/([^/]+)/?$\";s:35:\"index.php?bg_block_type=$matches[1]\";s:36:\"bg-block/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"bg-block/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"bg-block/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"bg-block/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"bg-block/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"bg-block/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"bg-block/([^/]+)/embed/?$\";s:41:\"index.php?bg_block=$matches[1]&embed=true\";s:29:\"bg-block/([^/]+)/trackback/?$\";s:35:\"index.php?bg_block=$matches[1]&tb=1\";s:37:\"bg-block/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?bg_block=$matches[1]&paged=$matches[2]\";s:44:\"bg-block/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?bg_block=$matches[1]&cpage=$matches[2]\";s:33:\"bg-block/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?bg_block=$matches[1]&page=$matches[2]\";s:25:\"bg-block/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"bg-block/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"bg-block/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"bg-block/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"bg-block/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"bg-block/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"amn_wpforms-lite/([^/]+)/embed/?$\";s:49:\"index.php?amn_wpforms-lite=$matches[1]&embed=true\";s:37:\"amn_wpforms-lite/([^/]+)/trackback/?$\";s:43:\"index.php?amn_wpforms-lite=$matches[1]&tb=1\";s:45:\"amn_wpforms-lite/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?amn_wpforms-lite=$matches[1]&paged=$matches[2]\";s:52:\"amn_wpforms-lite/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?amn_wpforms-lite=$matches[1]&cpage=$matches[2]\";s:41:\"amn_wpforms-lite/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?amn_wpforms-lite=$matches[1]&page=$matches[2]\";s:33:\"amn_wpforms-lite/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"amn_wpforms-lite/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"amn_wpforms-lite/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"amn_wpforms-lite/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"amn_wpforms-lite/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"amn_wpforms-lite/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=18&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:7:{i:0;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:1;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:2;s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";i:3;s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";i:4;s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";i:5;s:47:\"post-and-page-builder/post-and-page-builder.php\";i:6;s:24:\"wpforms-lite/wpforms.php\";}','yes'),(34,'category_base','.','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','boldgrid-vacation','yes'),(41,'stylesheet','boldgrid-vacation','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a: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:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','18','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','80','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'initial_db_version','44719','yes'),(94,'wpym_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:14:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:17:\"boldgrid-widget-1\";a:1:{i:0;s:22:\"black-studio-tinymce-3\";}s:17:\"boldgrid-widget-2\";a:0:{}s:17:\"boldgrid-widget-3\";a:0:{}s:8:\"header-1\";a:0:{}s:8:\"header-2\";a:0:{}s:8:\"header-3\";a:0:{}s:8:\"header-4\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,'cron','a:7:{i:1567108498;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:1567137298;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1567180838;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:1567180850;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567180856;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:1567432800;a:1:{s:28:\"wpforms_email_summaries_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:30:\"wpforms_email_summaries_weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(103,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'boldgrid_settings','a:3:{s:7:\"library\";a:3:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:8:\"2.10.0.0\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:8:\"2.10.0.0\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:7:\"2.9.2.0\";}s:15:\"plugins_checked\";a:6:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:2:{s:6:\"1.10.6\";i:1567095258;s:6:\"1.11.0\";i:1567102823;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.1.2\";i:1567102823;}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";a:2:{s:5:\"2.0.6\";i:1567095258;s:5:\"2.1.0\";i:1567102823;}s:47:\"post-and-page-builder/post-and-page-builder.php\";a:2:{s:6:\"1.10.6\";i:1567095258;s:6:\"1.11.0\";i:1567102823;}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";a:1:{s:5:\"1.0.2\";i:1567102823;}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";a:1:{s:5:\"1.6.3\";i:1567102823;}}s:20:\"boldgrid_menu_option\";s:1:\"1\";}','yes'),(567,'_site_transient_boldgrid_plugins_filtered','a:6:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:11:{s:4:\"Name\";s:15:\"BoldGrid Backup\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:6:\"1.11.0\";s:11:\"Description\";s:162:\"Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. BoldGrid Backup is the backup solution you need.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:15:\"BoldGrid Backup\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:11:{s:4:\"Name\";s:23:\"BoldGrid Backup Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.1.2\";s:11:\"Description\";s:49:\"Premium extension for the BoldGrid Backup plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:23:\"BoldGrid Backup Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";a:11:{s:4:\"Name\";s:17:\"BoldGrid Easy SEO\";s:9:\"PluginURI\";s:38:\"https://www.boldgrid.com/boldgrid-seo/\";s:7:\"Version\";s:5:\"1.6.3\";s:11:\"Description\";s:82:\"Easily manage your website\'s search engine optimization with Easy SEO by BoldGrid!\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:5:\"bgseo\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:17:\"BoldGrid Easy SEO\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";a:11:{s:4:\"Name\";s:21:\"BoldGrid Inspirations\";s:9:\"PluginURI\";s:47:\"https://www.boldgrid.com/boldgrid-inspirations/\";s:7:\"Version\";s:5:\"2.1.0\";s:11:\"Description\";s:177:\"Find inspiration, customize, and launch! BoldGrid Inspirations includes FREE WordPress themes and is the easiest way to launch a new WordPress site complete with custom content.\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:21:\"boldgrid-inspirations\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:21:\"BoldGrid Inspirations\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:47:\"post-and-page-builder/post-and-page-builder.php\";a:11:{s:4:\"Name\";s:21:\"Post and Page Builder\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-editor/\";s:7:\"Version\";s:6:\"1.11.0\";s:11:\"Description\";s:175:\"Customized drag and drop editing for posts and pages. The Post and Page Builder adds functionality to the existing TinyMCE Editor to give you easier control over your content.\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-editor\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:21:\"Post and Page Builder\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";a:11:{s:4:\"Name\";s:29:\"Post and Page Builder Premium\";s:9:\"PluginURI\";s:60:\"https://www.boldgrid.com/wordpress-page-builder-by-boldgrid/\";s:7:\"Version\";s:5:\"1.0.2\";s:11:\"Description\";s:48:\"Premium extension for the Post and Page Builder.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:28:\"post-and-page-buider-premium\";s:10:\"DomainPath\";s:11:\"/languagesD\";s:7:\"Network\";b:0;s:5:\"Title\";s:29:\"Post and Page Builder Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(165,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1567137658','no'),(166,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1567137658','no'),(167,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1567094458','no'),(168,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1567137658','no'),(169,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/08/people-of-wordpress-amanda-rush/\'>People of WordPress: Amanda Rush</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://buddypress.org/2019/08/buddypress-5-0-0-beta1/\'>BuddyPress: BuddyPress 5.0.0-beta1</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/standardjs-pauses-experiment-with-ads-in-the-terminal-after-linode-pulls-sponsorship\'>WPTavern: StandardJS Pauses Experiment with Ads in the Terminal after Linode Pulls Sponsorship</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/top-fifty-wp-new-website-ranks-plugins-by-downloads-per-day\'>WPTavern: Top Fifty WP: New Website Ranks Plugins by Downloads per Day</a></li></ul></div>','no'),(700,'_site_transient_timeout_theme_roots','1567108947','no'),(701,'_site_transient_theme_roots','a:4:{s:17:\"boldgrid-vacation\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(118,'widget_boldgrid_component_post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_boldgrid_component_postlist','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'boldgrid_backup_id','0daefccc','no'),(121,'boldgrid_backup_settings','a:12:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:4;s:5:\"tod_m\";i:23;s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:21:\"brent.capps@gmail.com\";s:13:\"notifications\";a:3:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;s:10:\"site_check\";b:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:0:{}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:10:\"site_check\";a:4:{s:7:\"enabled\";b:1;s:6:\"logger\";b:1;s:13:\"auto_recovery\";b:0;s:8:\"interval\";i:15;}s:16:\"backup_directory\";s:30:\"/home/buildi27/boldgrid_backup\";}','no'),(122,'boldgrid_attribution_rebuild','1','yes'),(123,'boldgrid_staging_boldgrid_attribution_rebuild','1','yes'),(124,'boldgrid_attribution_upgraded_to_cpt','1','yes'),(125,'boldgrid_editor','a:7:{s:19:\"has_flushed_rewrite\";b:1;s:19:\"has_checked_version\";i:1;s:15:\"preview_page_id\";i:51;s:7:\"notices\";a:1:{s:13:\"editor_choice\";a:1:{s:9:\"dismissed\";b:1;}}s:21:\"displayed_v1.3_notice\";i:1;s:12:\"preview_meta\";a:2:{s:8:\"template\";s:13:\"page_home.php\";s:24:\"boldgrid_hide_page_title\";i:0;}s:13:\"custom_colors\";a:0:{}}','yes'),(232,'boldgrid_survey','a:5:{s:8:\"blogname\";a:1:{s:5:\"value\";s:27:\"Building Systems Group, Inc\";}s:5:\"email\";a:1:{s:5:\"value\";s:29:\"info@buildingsystemsgroup.com\";}s:5:\"phone\";a:1:{s:5:\"value\";s:13:\"(757)581-5898\";}s:7:\"address\";a:1:{s:5:\"value\";s:42:\"3324 Kline Drive, Virginia Beach, VA 23452\";}s:6:\"social\";a:1:{s:14:\"do-not-display\";b:1;}}','yes'),(274,'boldgrid_easy_seo_version','1.6.3','no'),(235,'boldgrid_install_options','a:20:{s:11:\"author_type\";N;s:11:\"language_id\";N;s:14:\"theme_group_id\";N;s:8:\"theme_id\";i:38;s:18:\"theme_version_type\";s:6:\"stable\";s:11:\"category_id\";i:1;s:14:\"subcategory_id\";i:11;s:11:\"page_set_id\";i:15;s:21:\"page_set_version_type\";s:6:\"stable\";s:3:\"pde\";a:1:{i:0;a:2:{s:13:\"pde_type_name\";s:16:\"background_image\";s:14:\"pde_curated_id\";i:101;}}s:8:\"new_path\";s:19:\"0090229001567095058\";s:13:\"ticket_number\";s:0:\"\";s:16:\"build_profile_id\";i:901784;s:12:\"custom_pages\";N;s:12:\"install_blog\";b:0;s:17:\"install_timestamp\";i:1567095210;s:15:\"subcategory_key\";s:6:\"Design\";s:16:\"subcategory_name\";s:6:\"Design\";s:15:\"is_base_pageset\";b:1;s:20:\"parent_category_name\";s:9:\"Portfolio\";}','yes'),(126,'theme_mods_twentynineteen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1567095244;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(128,'_site_transient_timeout_boldgrid_ppbp_version_data','1567123241','no'),(129,'_site_transient_boldgrid_ppbp_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:29:\"Post and Page Builder Premium\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"asset_id\";i:971100;s:12:\"release_date\";s:19:\"2018-12-05 21:19:32\";s:19:\"requires_wp_version\";s:3:\"4.7\";s:17:\"tested_wp_version\";s:3:\"5.1\";s:8:\"sections\";s:7060:\"{\"description\":\"<h4>What is the Post and Page Builder by BoldGrid?<\\/h4>\\n\\n<p>The Post and Page Builder is an intuitive drag and drop editor plugin and the easiest way to create and edit pages for any theme. Whether you are new to WordPress or consider yourself a pro, BoldGrid solutions will make your WordPress life better. Stop dealing with site-breaking shortcodes and theme restricted editors. You are going to love just how fast and easily you can create beautiful websites now.<\\/p>\\n\\n<p>Try out the <a href=\\\"https:\\/\\/www.boldgrid.com\\/central\\/get-it-now?redirect_url=wp-admin%2Fpost-new.php%3Fpost_type%3Dpage&amp;plugins=post-and-page-builder\\\">BoldGrid Demo<\\/a> on Cloud WordPress to see for yourself!<\\/p>\\n\\n<p>[youtube https:\\/\\/youtu.be\\/QoIb7OhV9ys?rel=0]<\\/p>\\n\\n<h4>Features<\\/h4>\\n\\n<ul>\\n<li><strong>Drag and Drop Editing<\\/strong> - Create simple or complex layouts with our unique editing experience<\\/li>\\n<li><strong>BoldGrid Blocks<\\/strong> - Hundreds of professional layout designs to work from<\\/li>\\n<li><strong>100% Mobile-friendly<\\/strong> - Responsive layouts and controls to change the design per device<\\/li>\\n<li><strong>Google Fonts<\\/strong> - Change font family, font size, font color, letter spacing, line height and more<\\/li>\\n<li><strong>Theme Compatibility<\\/strong> - Our WordPress Page Builder is designed to work with any WordPress Theme<\\/li>\\n<li><strong>Custom Backgrounds<\\/strong> - Add background images, gradient backgrounds, patterns, overlays, and background colors<\\/li>\\n<li><strong>Fast and Free Support<\\/strong> - Growing Community and knowledge base<\\/li>\\n<li><strong>Animations<\\/strong> - Add effects as the user scrolls down the page with Animate.css or background parallax scroll effects<\\/li>\\n<li><strong>Advanced Controls<\\/strong> - Add margin, padding, box shadows, borders, alignment and more to almost any element<\\/li>\\n<li><strong>Bootstrap Grid<\\/strong> - Drag and drop controls for bootstrap rows and columns elements<\\/li>\\n<li><strong>Add Custom CSS Classes<\\/strong> - Complete control over any element<\\/li>\\n<li><strong>Clean, Simple Markup<\\/strong> - Easily create a professionally coded template without experience<\\/li>\\n<li><strong>Google Maps<\\/strong> - Embed and customize maps into your post or page<\\/li>\\n<li><strong>Web Components<\\/strong> - High quality reusable and customizable HTML elements<\\/li>\\n<li><strong>Font Awesome Icons<\\/strong> - Insert and customize any Font Awesome icons<\\/li>\\n<li><strong>CSS Grid<\\/strong> - Full width, column and row based layouts<\\/li>\\n<li><strong>Image Editing<\\/strong> - Apply image filters and automatically crop images<\\/li>\\n<li><strong>Button Designs<\\/strong> - Fully customizable button designs<\\/li>\\n<li><strong>Custom Post Types<\\/strong> - Save and reuse full page layouts or BoldGrid Block designs<\\/li>\\n<li><strong>WordPress Editor Integration<\\/strong> - Integrated into TinyMCE so you can keep the same workflow<\\/li>\\n<li><strong>No Need for Shortcodes!<\\/strong> - Faster page loads by saving your custom HTML5 elements<\\/li>\\n<\\/ul>\\n\\n<p>Additional Features when used with other BoldGrid plugins:<\\/p>\\n\\n<ul>\\n<li>Dozens of free layout templates<\\/li>\\n<li>Integrated with professional image banks<\\/li>\\n<li>Contact Forms<\\/li>\\n<li>On-page SEO recommendations for targeted search phrase<\\/li>\\n<\\/ul>\\n\\n<p>Visit our website to learn more about additional <a href=\\\"https:\\/\\/www.boldgrid.com\\/wordpress-plugins\\/\\\">BoldGrid plugins<\\/a> to further improve your WordPress experience!<\\/p>\\n\\n<h4>People Love BoldGrid<\\/h4>\\n\\n<p>\\\"It\'s really the perfect starting point for just about any web project, allowing users to get their site up and running in very short time. \\\" - Digital.com<\\/p>\\n\\n<p>\\\"BoldGrid is a great extension to WordPress that will make my job a lot easier and faster while creating custom layouts and pages.\\\" - Webhostingmedia.net<\\/p>\\n\\n<p>\\\"Well, I have seen many site builders but this is the only one that provides so many features.\\\" - Woblogger.com<\\/p>\\n\\n<h4>A Post and Page Builder That Works With Your Theme and Plugins<\\/h4>\\n\\n<p>The Post and Page Builder by BoldGrid is designed to work with almost any WordPress theme. Add it to your existing website today, or try a BoldGrid theme for your new website. Alternatively, consider upgrading and using the powerful BoldGrid framework theme (available in Premium subscription) as an excellent time saver for agencies and developers.<\\/p>\\n\\n<h4>A Post and Page Builder Stuffed With Pre-Designed Templates &amp; Blocks<\\/h4>\\n\\n<p>Create layouts and pages faster and easier than ever with Blocks by BoldGrid. Blocks are pre-built page sections consisting of various layouts of rows and columns prepopulated with content that can be edited visually or with HTML and CSS. Blocks utilize a wide variety of content that can be completely customized to fit your needs such as icons, buttons, free and premium images, font packs, and more.<\\/p>\\n\\n<h4>A Post and Page Builder That Is Faster Than The Rest<\\/h4>\\n\\n<p>The Post and Page Builder by BoldGrid is designed to create pages that load fast. BoldGrid ditches shortcodes in favor of clean markup that can be served quickly. That also means BoldGrid code is easy to assess and customize.<\\/p>\\n\\n<h4>Coming Soon \\/ Maintenance Page<\\/h4>\\n\\n<p>Great for making \\\"under construction\\\" or \\\"coming soon\\\" pages. You can create a simple page within minutes by using free professionally designed WordPress Blocks.<\\/p>\\n\\n<h4>Bootstrap WYSIWYG Post &amp; Page Builder for WordPress<\\/h4>\\n\\n<p>Our drag and drop system is built on the Bootstrap Grid. You can drag columns, rows, and containers around your pages to make quick updates to pages.  Advanced CSS controls allow you to make pixel perfect designs.<\\/p>\\n\\n<h4>Create Custom Color Palette<\\/h4>\\n\\n<p>Choose your brand\'s colors and we\'ll help your design stay unified. Our unique color palette system is built with SASS and allows you to change all the colors on your site. You don\'t have to choose from a few presets anymore!<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP version 5.4 or greater<\\/li>\\n<li>WordPress 4.4 or greater<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire post-and-page-builder folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\\n<p>You will find a \'Post and Page Builder\' menu in your WordPress admin panel and find most features within the\\nWordPress Editor.<\\/p>\\n\",\"changelog\":\"<h4>1.0.2<\\/h4>\\n\\n<p>Release date: December 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed updating plugin via ajax<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<p>Release Date: December 4th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug Fix: Fixing post excerpt wrapping element<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<p>Release Date: October 16th, 2018<\\/p>\\n\\n<ul>\\n<li>New feature: Slider Components<\\/li>\\n<li>New feature: Post List Widget<\\/li>\\n<li>New feature: Single Post Widget<\\/li>\\n<\\/ul>\\n\"}\";s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:4493:\"{\"4.9.8\":{\"1.0.0-alpha.0\":[100,12],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.9\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.8\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.9\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.8\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.11\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.10\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]},\"4.6.12\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:153:\"{\"boldgrid\":\"Boldgrid\",\"page builder\":\"Page builder\",\"drag and drop\":\"Drag and drop\",\"tinymce\":\"Tinymce\",\"editor\":\"Editor\",\"landing page\":\"Landing page\"}\";s:7:\"banners\";s:137:\"{\"low\":\"//ps.w.org/post-and-page-builder/assets/banner-772x250.png\",\"high\":\"//ps.w.org/post-and-page-builder/assets/banner-1544x500.png\"}\";}}s:7:\"updated\";i:1567094441;}','no'),(130,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.2\";s:7:\"version\";s:5:\"5.2.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1567104928;s:15:\"version_checked\";s:5:\"5.2.2\";s:12:\"translations\";a:0:{}}','no'),(138,'bglib_activity','a:1:{s:5:\"bgppb\";a:1:{s:14:\"dedicated_user\";i:2;}}','yes'),(139,'bglib_rating_prompt','a:1:{i:0;a:5:{s:6:\"plugin\";s:5:\"bgppb\";s:4:\"name\";s:14:\"dedicated_user\";s:6:\"slides\";a:4:{s:5:\"start\";a:2:{s:4:\"text\";s:238:\"Great job keeping your plugin up to date and thank you for being a dedicated BoldGrid user. If you feel you\'re getting really good value from the Post and Page Builder by BoldGrid, could you do us a favor and rate us 5 stars on WordPress?\";s:9:\"decisions\";a:3:{s:9:\"sure_will\";a:3:{s:4:\"text\";s:17:\"Yes, I sure will!\";s:4:\"link\";s:67:\"https://wordpress.org/support/plugin/post-and-page-builder/reviews/\";s:5:\"slide\";s:6:\"thanks\";}s:19:\"maybe_still_testing\";a:3:{s:4:\"text\";s:42:\"Maybe later, I\'m still testing the plugin.\";s:6:\"snooze\";i:604800;s:5:\"slide\";s:11:\"maybe_later\";}s:11:\"already_did\";a:2:{s:4:\"text\";s:13:\"I already did\";s:5:\"slide\";s:11:\"already_did\";}}}s:6:\"thanks\";a:1:{s:4:\"text\";s:405:\"Thanks! A new page should have opened to the Post and Page Builder ratings page on WordPress.org. You will need to log in to your WordPress.org account before you can post a review. If the page didn\'t open, please click the following link: <a href=\"https://wordpress.org/support/plugin/post-and-page-builder/reviews/\" target=\"_blank\">https://wordpress.org/support/plugin/post-and-page-builder/reviews/</a>\";}s:11:\"maybe_later\";a:1:{s:4:\"text\";s:240:\"No problem, maybe now is not a good time. We want to be your WordPress page builder of choice. If you\'re experiencing a problem or want to make a suggestion, please <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">click here</a>.\";}s:11:\"already_did\";a:1:{s:4:\"text\";s:280:\"Thank you for the previous rating! You can help us to continue improving the Post and Page Builder by reporting any bugs or submitting feature requests <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">here</a>. Thank you for using the Post and Page Builder by BoldGrid!\";}}s:10:\"time_added\";i:1567094450;s:14:\"time_dismissed\";i:1567096407;}}','yes'),(132,'recovery_keys','a:0:{}','yes'),(240,'current_theme','Vacation','yes'),(241,'theme_switched','','yes'),(242,'boldgrid_backup_history','a:7:{i:0;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1567095244;s:7:\"message\";s:48:\"Twenty Nineteen theme (version 1.4) deactivated.\";}i:1;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1567095244;s:7:\"message\";s:42:\"Vacation theme (version 1.24.4) activated.\";}i:2;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1567095248;s:7:\"message\";s:46:\"WPForms Lite plugin (version 1.5.5) activated.\";}i:3;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1567095256;s:7:\"message\";s:51:\"BoldGrid Easy SEO plugin (version 1.6.3) activated.\";}i:4;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1567102799;s:7:\"message\";s:50:\"BoldGrid Backup plugin upgraded to version 1.11.0.\";}i:5;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1567102799;s:7:\"message\";s:55:\"BoldGrid Inspirations plugin upgraded to version 2.1.0.\";}i:6;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1567102799;s:7:\"message\";s:56:\"Post and Page Builder plugin upgraded to version 1.11.0.\";}}','no'),(277,'boldgrid_widgets_created','a:1:{s:14:\"call_to_action\";s:22:\"black-studio-tinymce-0\";}','yes'),(246,'wpforms_version','1.5.5','yes'),(247,'wpforms_activated','a:1:{s:4:\"lite\";i:1567095248;}','yes'),(298,'_transient_timeout_wpforms_dash_widget_lite_entries_by_form','1567123202','no'),(250,'_site_transient_timeout_boldgrid_wpforms','1567138448','no'),(251,'_site_transient_boldgrid_wpforms','a:12:{i:0;a:2:{s:7:\"form_id\";s:1:\"1\";s:4:\"json\";s:1351:\"{\"id\":\"\",\"field_id\":4,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 1\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 1 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}i:1;a:2:{s:7:\"form_id\";s:1:\"2\";s:4:\"json\";s:5165:\"{\"id\":\"\",\"field_id\":14,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"12\":{\"id\":\"12\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"13\":{\"id\":\"13\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 2\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 2 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}i:2;a:2:{s:7:\"form_id\";s:1:\"3\";s:4:\"json\";s:5857:\"{\"id\":\"\",\"field_id\":17,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"12\":{\"id\":\"12\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"14\":{\"id\":\"14\",\"type\":\"text\",\"label\":\"Alternate Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"15\":{\"id\":\"15\",\"type\":\"radio\",\"label\":\"When is the best time to contact you?\",\"choices\":{\"1\":{\"label\":\"Morning\",\"value\":\"Morning\"},\"2\":{\"label\":\"Afternoon\",\"value\":\"Afternoon\"},\"3\":{\"label\":\"Evening\",\"value\":\"Evening\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"16\":{\"id\":\"16\",\"type\":\"radio\",\"label\":\"What is the best way to contact you?\",\"choices\":{\"1\":{\"label\":\"Phone\",\"value\":\"Phone\"},\"2\":{\"label\":\"Email\",\"value\":\"Email\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"13\":{\"id\":\"13\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 3\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 3 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}i:3;a:2:{s:7:\"form_id\";s:1:\"4\";s:4:\"json\";s:4740:\"{\"id\":\"\",\"field_id\":14,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State / Province\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Address Form (International)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Address Form (International) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}i:4;a:2:{s:7:\"form_id\";s:1:\"5\";s:4:\"json\";s:4580:\"{\"id\":\"\",\"field_id\":14,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Address Form (US)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Address Form (US) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}i:5;a:2:{s:7:\"form_id\";s:1:\"6\";s:4:\"json\";s:1508:\"{\"id\":\"\",\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Body\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Email Form (Traditional)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Email Form (Traditional) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}i:6;a:2:{s:7:\"form_id\";s:1:\"7\";s:4:\"json\";s:1576:\"{\"id\":\"\",\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"number\",\"label\":\"Group Size\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Special Instructions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Event Registration Form (Group Support)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Register\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Event Registration Form (Group Support) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}i:7;a:2:{s:7:\"form_id\";s:1:\"8\";s:4:\"json\";s:1399:\"{\"id\":\"\",\"field_id\":4,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"textarea\",\"label\":\"Special Instructions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Event Registration Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Register\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Event Registration Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}i:8;a:2:{s:7:\"form_id\";s:1:\"9\";s:4:\"json\";s:1549:\"{\"id\":\"\",\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Information Request Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Information Request Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}i:9;a:2:{s:7:\"form_id\";s:2:\"10\";s:4:\"json\";s:5010:\"{\"id\":\"\",\"field_id\":17,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"14\":{\"id\":\"14\",\"type\":\"text\",\"label\":\"Company Name\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"15\":{\"id\":\"15\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"16\":{\"id\":\"16\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Shipping Information Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Shipping Information Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}i:10;a:2:{s:7:\"form_id\";s:2:\"11\";s:4:\"json\";s:1257:\"{\"id\":\"\",\"field_id\":3,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Sign Up Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Sign Up\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Sign Up Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}i:11;a:2:{s:7:\"form_id\";s:2:\"12\";s:4:\"json\";s:3187:\"{\"id\":\"\",\"field_id\":9,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"On a scale of 1 to 5, how would you rate your experience with our product / service?\",\"choices\":{\"1\":{\"label\":\"1 (poor)\",\"value\":\"1\"},\"2\":{\"label\":\"2 (mediocre)\",\"value\":\"2\"},\"3\":{\"label\":\"3 (average)\",\"value\":\"3\"},\"4\":{\"label\":\"4 (fair)\",\"value\":\"4\"},\"5\":{\"label\":\"5 (excellent)\",\"value\":\"5\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"radio\",\"label\":\"How likely are you to recommend our product / service to people you know?\",\"choices\":{\"1\":{\"label\":\"Likely\",\"value\":\"Likely\"},\"2\":{\"label\":\"Somewhat Likely\",\"value\":\"Somewhat Likely\"},\"3\":{\"label\":\"Somewhat Unlikely\",\"value\":\"Somewhat Unlikely\"},\"4\":{\"label\":\"Unlikely\",\"value\":\"Unlikely\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"radio\",\"label\":\"Would you use our product / service in the future?\",\"choices\":{\"1\":{\"label\":\"Yes\",\"value\":\"Yes\"},\"2\":{\"label\":\"No\",\"value\":\"No\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"select\",\"label\":\"How long have you used our product / service?\",\"choices\":{\"1\":{\"label\":\"Select...\",\"value\":\"\"},\"6\":{\"label\":\"Less than a month\",\"value\":\"Less than a month\"},\"2\":{\"label\":\"1 Month - 11 Months\",\"value\":\"1 Month - 11 Months\"},\"3\":{\"label\":\"1 Year - 2 Years\",\"value\":\"1 Year - 2 Years\"},\"5\":{\"label\":\"3 Years - 5 Years\",\"value\":\"3 Years - 5 Years\"},\"4\":{\"label\":\"Over 5 Years\",\"value\":\"Over 5 Years\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"textarea\",\"label\":\"Please tell us what you liked or disliked about our product / service\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"},\"8\":{\"id\":\"8\",\"type\":\"textarea\",\"label\":\"Additional Comments\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Customer Feedback Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Customer Feedback Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=\\\"nf-drawer-content\\\"><span class=\\\"nf-setting-groups\\\"><span class=\\\"nf-field-settings\\\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}\";}}','no'),(149,'_site_transient_browser_01b80466de9751fc3c1cfc72f0950804','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"68.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(721,'_transient_is_multi_author','0','yes'),(576,'_site_transient_timeout_boldgrid_plugins','1567131627','no'),(577,'_site_transient_boldgrid_plugins','O:8:\"stdClass\":4:{s:21:\"boldgrid-inspirations\";O:8:\"stdClass\":24:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"2.1.0\";s:8:\"asset_id\";i:1017199;s:12:\"release_date\";s:19:\"2019-08-29 15:10:19\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.2\";s:8:\"sections\";a:4:{s:11:\"description\";s:377:\"<p>BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.</p>\n<p>The first phase is Inspiration; the guided tool creates your base website. If you already have a website, then you can skip this step.</p>\n<p>The second phase is Customization; tools to transform your website into your vision.</p>\n\";s:12:\"installation\";s:283:\"<ol>\n<li><p>Upload the entire boldgrid-inspirations folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n<li><p>You will find the Inspirations menu in your WordPress Dashboard / admin panel.</p></li>\n</ol>\n\";s:9:\"changelog\";s:38819:\"<h4>2.1.0</h4>\n<p>Release date: August 29th, 2019</p>\n<ul>\n<li>Update: Removed the \"Welcome to BoldGrid\" dashboard widget.</li>\n<li>Update: Add notice to dashboard widget.</li>\n<li>Update: Remove news widget from dashboard.</li>\n</ul>\n<h4>2.0.7</h4>\n<p>Release date: August 16, 2019</p>\n<ul>\n<li>Bug fix: Fixing compact warnings</li>\n</ul>\n<h4>2.0.6</h4>\n<p>Release date: August 1st, 2019</p>\n<ul>\n<li>Update: Updated dependencies</li>\n</ul>\n<h4>2.0.5</h4>\n<p>Release date: July 25th, 2019</p>\n<ul>\n<li>Update: Added a switch for toggling branding of the login page.</li>\n<li>Update: Cleaned up logic on purchase coins page.</li>\n<li>Update: Updated dependencies</li>\n</ul>\n<h4>2.0.4</h4>\n<p>Release date: July 2nd, 2019</p>\n<ul>\n<li>Update: Replaced the BoldGrid RSS feed widget on the dashboard with one in the updated library package.</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.0.3</h4>\n<p>Release date: May 21st, 2019</p>\n<ul>\n<li>Bug fix: Fixing \"Call to undefined method getAttribute\" error.</li>\n<li>Bug fix: Replacing deprecated filter on login: login<em>headertitle / login</em>headertext.</li>\n</ul>\n<h4>2.0.2</h4>\n<p>Release date: Apr 23nd, 2019</p>\n<ul>\n<li>Bug fix: Fixing usage of php\'s empty function for php < 5.5</li>\n</ul>\n<h4>2.0.1</h4>\n<p>Release date: Apr 19th, 2019</p>\n<ul>\n<li>Bug fix: Fixing class property declaration for php < 5.6</li>\n</ul>\n<h4>2.0.0</h4>\n<p>Release date: Apr 16th, 2019</p>\n<ul>\n<li>Update: Made translation ready. Text domain is boldgrid-inspirations.</li>\n<li>Update: Inspirations process with full screen mode and design updates.</li>\n<li>New feature: Inspirations dashboard.</li>\n<li>New feature: German translations added - de_DE.</li>\n</ul>\n<h4>1.6.5</h4>\n<p>Release date: Jan 29th, 2019</p>\n<ul>\n<li>Bug fix: Pages fail to install on Pages > Add New.</li>\n</ul>\n<h4>1.6.4</h4>\n<p>Release date: Dec 5th, 2018</p>\n<ul>\n<li>Bug fix: Unable to save \"boldgrid<em>menu</em>option\" on settings page.</li>\n<li>Bug fix: Fixed updating plugin via ajax.</li>\n</ul>\n<h4>1.6.3</h4>\n<p>Release date: Dec 4th, 2018</p>\n<ul>\n<li>Bug fix: Coin Budget help was not toggling when clicked.</li>\n</ul>\n<h4>1.6.2</h4>\n<p>Release date: Nov 26th, 2018</p>\n<ul>\n<li>Bug fix: JIRA BGINSP-33 Fixed missing build for library dependencies; Updated production build process to use composer post-autoload-dump hook.</li>\n</ul>\n<h4>1.6.1</h4>\n<p>Release date: Nov 20th, 2018</p>\n<ul>\n<li>Update: JIRA BGCONN-20 Removed update settings; have been moved to the BoldGrid Library packages.</li>\n<li>Bug fix: JIRA BGTHEME-558 Fixed conflict between tgmpa plugin installer and the BoldGrid custom update classes.</li>\n<li>Bug fix: BoldGrid Connect Search / WP 5.0 fix.</li>\n<li>Bug fix: Attribution page not being rebuilt / WP 5.0 fix.</li>\n<li>Bug fix: BoldGrid Connect Search in the Customizer / WP 5.0 fix.</li>\n<li>Bug fix: Recommended image sizes not working as expected.</li>\n</ul>\n<h4>1.6.0</h4>\n<ul>\n<li>Update: Updated BoldGrid library to version 2.4.2.</li>\n<li>New feature: JIRA BGINSP-24 Log data when there may be a connection or Ajax error.</li>\n</ul>\n<h4>1.5.8</h4>\n<ul>\n<li>Bug fix: JIRA BGINSP-16 Warnings and notices within inspiration w/ Crio theme</li>\n<li>Bug fix: JIRA BGINSP-23 Fixed issue: Connect Search may load with connection notice.</li>\n</ul>\n<h4>1.5.7</h4>\n<ul>\n<li>Update: Updated to library version 2.3.5.</li>\n</ul>\n<h4>1.5.6</h4>\n<ul>\n<li>Bug fix: JIRA BGINSP-14 Fatal in PHP >=7.1.0 when creating internal preview builds.</li>\n<li>Bug fix: JIRA WPB-3767 Prevent invalid API calls for check-version.</li>\n<li>Update: JIRA BGBKUP-180 Auto update code moved to library and removed from Inspirations.</li>\n<li>Update: JIRA WPB-3730 Updated library dependency to ^2.0.0.</li>\n<li>Update: JIRA BGINSP-3 Forcing display of Connect Key prompt admin notice on the Inspirations page, even if dismissed, until key is entered.</li>\n<li>Update: JIRA WPB-3684 Updated composer.json, due to package changes.</li>\n<li>New feature: JIRA BGCNTRL-46 Added filters for manipulating Dashboard help in trial sites.</li>\n</ul>\n<h4>1.5.5</h4>\n<ul>\n<li>Bug fix: JIRA BGSTAGE-32 Fixed staging plugin install.</li>\n</ul>\n<h4>1.5.4</h4>\n<ul>\n<li>Update: JIRA BGINSP-4 Removed admin notice recommending plugin installations.</li>\n</ul>\n<h4>1.5.3</h4>\n<ul>\n<li>New feature: JIRA WPB-3643 Ensure that deployment does not install new wporg plugins if old ones are installed.</li>\n</ul>\n<h4>1.5.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3587 Menu assignment after deployment broken in WP 4.9.</li>\n<li>Bug fix: JIRA WPB-3570 Inspirations Select button misplaced in WP 4.9.</li>\n<li>Bug fix: JIRA WPB-3593 Changes require to help Staging support new Customizer scheduler.</li>\n</ul>\n<h4>1.5.1</h4>\n<ul>\n<li>Update: Updates to library.</li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.11</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3336 All and Default categories do not align.</li>\n<li>Bug fix: JIRA WPB-3337 On a fresh install, Pages - New From GridBlocks fails.</li>\n<li>Bug fix: JIRA WPB-3333 Image search only searching one provider instead of all.</li>\n<li>Bug fix: JIRA WPB-3346 Edit Image button not working for attachment.</li>\n<li>Bug fix: JIRA WPB-3387 Loading GridBlocks just spins.</li>\n<li>Update: JIRA WPB-3352 Purchase coins through BoldGrid Central.</li>\n<li>Update: JIRA WPB-3355 Add data-image-url attribute.</li>\n<li>Update: JIRA WPB-3382 More descriptive creative commons icon.</li>\n<li>Update: JIRA WPB-3384 Add License details to attachment details.</li>\n<li>Update: JIRA WPB-3383 Filter out boldgrid-gridblock-set-preview-page.</li>\n</ul>\n<h4>1.4.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3318 When forcing a preferred form plugin install, first check if plugin is installed before trying to activate.</li>\n<li>Bug fix: JIRA WPB-3312 Ensure activation of preferred form plugin. Added filter for preferred slug.</li>\n<li>Bug fix: JIRA WPB-3317 New page from GridBlocks not working.</li>\n<li>Update: JIRA WPB-3252 Disable \'default\' category and configure \'showcase\'.</li>\n<li>Bug fix: JIRA WPB-3332 New from gridblocks button not showing.</li>\n</ul>\n<h4>1.4.8</h4>\n<ul>\n<li>New feature: JIRA WPB-3200 Added WPForms support.</li>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n<li>Update: JIRA WPB-3296 Add Inspirations as first menu item child.</li>\n<li>Bug Fix: JIRA WPB-3274 Plugins > Add New Updates fail in modals.</li>\n<li>New feature: JIRA WPB-3293 Resize images during deployment vs imgr server.</li>\n</ul>\n<h4>1.4.7</h4>\n<ul>\n<li>Update: JIRA WPB-3243 Change feedback admin notice display frequency.</li>\n<li>Update: JIRA WPB-3264 Adding twitch social media option.</li>\n<li>New Feature: Added BoldGrid Library to plugin.</li>\n</ul>\n<h4>1.4.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3179 Gradient style being lost during normal deployment.</li>\n<li>Bug fix: JIRA WPB-3180 Open WordPress/BoldGrid links in attribution page in new tab.</li>\n</ul>\n<h4>1.4.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n<li>Bug fix: JIRA WPB-3162 Fixed issue creating .htaccess file in deployment.</li>\n<li>Bug fix: JIRA WPB-3171 As an author, when installing a site I do not want background images to be processed.</li>\n<li>Bug fix: JIRA WPB-3176 Background gradient / url bug during deplyment.</li>\n</ul>\n<h4>1.4.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Bug fix: JIRA WPB-3141 Fixed invalid updates for BoldGrid Prime theme.</li>\n<li>Bug fix: JIRA WPB-3158 Deployment\'s gallery updates are not saved.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>New feature: JIRA WPB-3106 As an Author, I can set background images for elements.</li>\n<li>New feature: JIRA WPB-3095 Update generic builds to display per theme channel.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2745 Fixed upgrade notices displaying when activation version was not recorded.</li>\n<li>Update: JIRA WPB-3019 Updating attribution link creation.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>New feature: JIRA WPB-3044 Automatically get Unsplash attribution.</li>\n<li>Update: JIRA WPB-3043 Updating plugin description.</li>\n</ul>\n<h4>1.4.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3232 Deploy Staging menu item missing.</li>\n<li>Bug fix: JIRA WPB-3233 BoldGrid Connect Search missing from new image widget.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Update: JIRA WPB-2936 Updating YouTube videos for BoldGrid Dashboard\'s new release.</li>\n<li>Bug fix: JIRA WPB-2927 Social media menu disappears.</li>\n<li>Update: JIRA WPB-2949 Configure blog using categories.</li>\n<li>Bug fix: JIRA WPB-2950 Added max height for reseller logos on login page.</li>\n<li>Bug fix: JIRA WPB-2925 Sidebar widgets don\'t match between preview and installed site.</li>\n<li>Bug fix: JIRA WPB-2951 Images in staging posts not being downloaded.</li>\n<li>Bug fix: JIRA WPB-2955 Backwards compatibility - maps taking up 200px empty space.</li>\n<li>Bug fix: JIRA WPB-2984 Attribution page 404.</li>\n</ul>\n<h4>1.3.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n<li>Bug fix: JIRA WPB-2916 Inspirations deploy fatal error if an old forked plugin had the original installed.</li>\n<li>Bug fix: JIRA WPB-2905 If installing via Author, do not update pages with survey data.</li>\n<li>Bug fix: JIRA WPB-2910 Unterminated entity reference bug.</li>\n<li>Update: JIRA WPB-2913 Validate email address in survey.</li>\n<li>Bug fix: JIRA WPB-2404 iframe timeout in step 2 of Inspirations.</li>\n<li>Bug fix: JIRA WPB-2173 Error deleting image and redownloading.</li>\n<li>Bug fix: JIRA WPB-2635 Start over staging affecting active site.</li>\n<li>Bug fix: JIRA WPB-2493 Publish private posts during staging deployment.</li>\n<li>Bug fix: JIRA WPB-2796 Social media urls end in /username, go to 404s.</li>\n</ul>\n<h4>1.3.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n<li>Update: JIRA WPB-2900 Update verbiage of build coin cost.</li>\n<li>Bug fix: JIRA WPB-2901 Scroll bars not visible on preview iframe in Chrome.</li>\n<li>Bug fix: Removing CTA hooks.</li>\n</ul>\n<h4>1.3.7</h4>\n<ul>\n<li>Update: JIRA WPB-2819 Use switch instead of checkbox for Demo.</li>\n<li>Bug fix: JIRA WPB-2780 Theme screenshots opening directly, rather than within gallery.</li>\n<li>Update: JIRA WPB-2825 Adjust do not display formatting.</li>\n<li>Update: JIRA WPB-2829 Updating hook to resolve BoldGrid SEO plugin conflicts.</li>\n<li>Update: JIRA WPB-2837 Remove loading image after selecting theme in Gallery.</li>\n<li>Update: JIRA WPB-2839 Minor verbiage change for Add a blog.</li>\n<li>Update: JIRA WPB-2785 Entering words with apostrophe in it for Site title displays with a Backslash.</li>\n<li>Bug fix: JIRA WPB-2848 Customize link takes users back to Inspirations.</li>\n<li>Bug fix: JIRA WPB-2527 \'New from GridBlocks\' preview page appearing in cart.</li>\n<li>Bug fix: JIRA WPB-2862 Survey, invalid argument supplied for foreach.</li>\n<li>Bug fix: JIRA WPB-2601 Inspirations Internet Explorer/ Stuck on loading themes.</li>\n<li>Bug fix: JIRA WPB-2854 Downloading Image spinner never stops spinning.</li>\n</ul>\n<h4>1.3.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2772 PHP warnings on deploy in WordPress 4.3.7.</li>\n<li>Bug fix: JIRA WPB-2766 Plesk and WP-CLI were not getting private repo updates.</li>\n<li>Update: JIRA WPB-2763 Update email and address on Contact Us page.</li>\n<li>Update: JIRA WPB-2764 Remove option to add a map.</li>\n<li>Update: JIRA WPB-2765 Allow iframes for preview builds.</li>\n<li>New feature: JIRA WPB-2771 Update footer-company-details widget with survey data.</li>\n<li>New feature: JIRA WPB-2777 Add an Install sample blog checkbox.</li>\n<li>New feature: JIRA WPB-2778 Setup a blog during deployment.</li>\n<li>Bug fix: JIRA WPB-2792 Staged posts (private posts) are trashed when starting over active site.</li>\n<li>Update: JIRA WPB-2800 Ensure \'Install a blog\' works with Staging.</li>\n<li>Update: JIRA WPB-2801 Remove milestones classes.</li>\n<li>Bug fix: JIRA WPB-2779 Survey not working with Staging.</li>\n<li>Update: JIRA WPB-2805 Preview builds w & w/o blogs.</li>\n<li>New feature: JIRA WPB-2806 Add filter for Inspirations configs.</li>\n<li>Bug fix: JIRA WPB-2808 Do not request generic builds when requesting blog as well.</li>\n</ul>\n<h4>1.3.5</h4>\n<ul>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Update: JIRA WPB-2376 Filter the bgtfw contact blocks.</li>\n<li>Update: JIRA WPB-2476 Update case of Company name.</li>\n<li>Update: JIRA WPB-2747 Update Add a map verbiage.</li>\n<li>Update: JIRA WPB-2749 Add a map to my Contact page.</li>\n<li>Bug fix: JIRA WPB-2658 Fix spacing issues atop Inspirations.</li>\n<li>Bug fix: JIRA WPB-2751 Show all in the smaller view of inspirations doesn\'t work anymore.</li>\n<li>Bug fix: JIRA WPB-2757 Apostrophe and other strange characters installed via Inspirations.</li>\n<li>Bug fix: JIRA WPB-2759 DOMDocument::loadHTML(): htmlParseEntityRef: expecting \';\'.</li>\n</ul>\n<h4>1.3.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2696 Remove placeholders from survey.</li>\n<li>New feature: JIRA WPB-2697 Update phone numbers in widgets.</li>\n<li>New feature: JIRA WPB-2699 Use phone number entered during survey.</li>\n<li>Update: JIRA WPB-2704 Adjust format of how social media icons are saved.</li>\n<li>New feature: JIRA WPB-2705 Use survey social media items when creating menu.</li>\n<li>Update: JIRA WPB-2711 Show optional message in survey.</li>\n<li>Update: JIRA WPB-2712 Have plus sign toggle more social icons.</li>\n<li>Update: JIRA WPB-2723 Update phone in pages.</li>\n</ul>\n<h4>1.3.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2627 Back / next buttons should not be clickable.</li>\n<li>Bug fix: JIRA WPB-2625 Behavior of last image\'s next button in Inspirations.</li>\n</ul>\n<h4>1.3.2</h4>\n<ul>\n<li>Update: JIRA WPB-2582 Always show arrows in Inspirations gallery.</li>\n<li>Update: JIRA WPB-2583 Ensure first letter in theme\'s title attribute is capitalized.</li>\n<li>Update: JIRA WPB-2599 Add placeholder for 4th step to Inspirations.</li>\n<li>Update: JIRA WPB-2551 Duplicate images.</li>\n<li>New feature: JIRA WPB-2603 Add initial version of survey.</li>\n<li>Bug fix: JIRA WPB-2622 Inspirations - Step 4 - Go back button installs site.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n<li>Bug fix: JIRA WPB-2539 Fix possible duplicate connection issue notice from ajax.js call.</li>\n<li>Bug fix: JIRA WPB-2558 Don\'t display feedback widget if user hasn\'t entered their key.</li>\n<li>Bug fix: JIRA WPB-2559 Don\'t allow widgets to drag into welcome box area.</li>\n<li>Bug fix: JIRA WPB-2555 Images in search results flicker.</li>\n<li>Update: JIRA WPB-2563 Convert Attribution page to use custom post type.</li>\n<li>Update: JIRA WPB-2568 Added fancybox and large previews to Inspirations.</li>\n<li>Update: JIRA WPB-2570 Milestone blogname change.</li>\n<li>Update: JIRA WPB-2574 Milestone Social Media Change.</li>\n<li>Update: JIRA WPB-2578 Milestone Contact Info Footer Change.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2544 Disable \'Install\' button after clicking it.</li>\n</ul>\n<h4>1.2.13</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2531 Javascript error checking needed for mine count.</li>\n</ul>\n<h4>1.2.12</h4>\n<ul>\n<li>Update: JIRA WPB-2472 Added update notice for 1.3.</li>\n<li>Bug fix: JIRA WPB-2486 Incorrect page count on All Pages.</li>\n<li>Bug fix: JIRA WPB-2467 With staging disabled, Customize goes to \"Change Themes\".</li>\n<li>Update: JIRA WPB-2488 Remove \'Permanently delete pages instead of sending to trash\'.</li>\n<li>Update: JIRA WPB-2490 Move default option to \'install as staging\'.</li>\n<li>Update: JIRA WPB-2491 Add \'Customize > Active Theme\' navigation to Inspirations.</li>\n<li>Bug fix: JIRA WPB-2496 Require comment text in feedback form.</li>\n<li>Update: JIRA WPB-2229 Update error reporting when purchasing images.</li>\n<li>Update: JIRA WPB-2498 Change \'Company Name\' to theme name.</li>\n<li>Update: JIRA WPB-2497 Add new dashboard videos.</li>\n<li>Bug fix: JIRA WPB-2376 \'No search results\' method is not cleared in BGCS.</li>\n</ul>\n<h4>1.2.11</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2468 Switching between boldgrid admin menu and standard wp menu no longer works.</li>\n<li>Bug fix: JIRA WPB-2477 If you have an existing site non BG, no route for staging exists.</li>\n</ul>\n<h4>1.2.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2446 Fixed missing build id passed on site install.</li>\n<li>Bug fix: JIRA WPB-2426 Insert Gridblock button is missing.</li>\n<li>Bug fix: JIRA WPB-2443 When starting over, I get a blank page.</li>\n<li>Bug fix: JIRA WBP-2445 Inspirations is not fetching cached themes.</li>\n<li>Update: JIRA WPB-2458 Update \'Recommended\' verbiage in last step of Inspirations.</li>\n</ul>\n<h4>1.2.9</h4>\n<ul>\n<li>Misc: JIRA WPB-2420 Added EOF line breaks.</li>\n<li>Bug fix: JIRA WPB-2387 Fixed issue with AJAX theme updates and BG theme slugs duplicated in the WP repo.</li>\n<li>Bug fix: JIRA WPB-2324 Attribution should not show in 404 sitemap.</li>\n<li>Bug fix: JIRA WPB-2403 No plugins recommended still showing notice.</li>\n<li>Update: JIRA WPB-2416 Text changes for confirmation section of Inspirations.</li>\n<li>Update: JIRA WPB-2417 Add additional text to deployment success page for staging.</li>\n<li>Bug fix: JIRA WPB-2421 Message showing when it shouldn\'t - We\'ve recognized that you haven\'t installed...</li>\n<li>Bug fix: JIRA WPB-2112 BoldGrid Connect Search missing for galleries.</li>\n<li>Bug fix: JIRA WPB-2422 Fixed CSS Loading graphic animation in chrome to display properly.</li>\n<li>Bug fix: JIRA WPB-2401 Gallery not displaying correctly in Chrome && FF.</li>\n<li>Bug fix: JIRA WPB-2423 Trying to get property of non-object in ...stock-photography.php.</li>\n</ul>\n<h4>1.2.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2398 Error requesting free key.</li>\n<li>Bug fix: JIRA WPB-2399 Only show feedback widget to admins.</li>\n</ul>\n<h4>1.2.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2389 Fixed saving BoldGrid Settings.</li>\n<li>Bug fix: JIRA WPB-2388 Removed duplicate boldgrid_activate().</li>\n<li>Update: JIRA WPB-2390 Update verbiage for inspirations install success.</li>\n<li>Bug fix: JIRA WPB-2391 Hide BoldGrid Welcome Panel if key isn\'t entered yet.</li>\n<li>Bug fix: JIRA WPB-2392 If key is less than 32 char don\'t make call to validate.</li>\n<li>Bug fix: JIRA WPB-2393 Error messages should be removed when resubmitting keys.</li>\n<li>Bug fix: JIRA WPB-2394 Cursor for show/hide log should be a pointer.</li>\n<li>Update: JIRA WPB-2395 Update login page styling.</li>\n<li>Bug fix: JIRA WPB-2396 Remove staging from recommended plugin notices.</li>\n<li>Bug fix: JIRA WPB-2327 Check if framework is handling plugin recommendations before recommending.</li>\n</ul>\n<h4>1.2.6</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Bug fix: JIRA WPB-2248 Removed \'New From GridBlocks\' button on edit submission page.</li>\n<li>Bug fix: JIRA WPB-2332 Reset scroll position on step 2 of Inspirations to top.</li>\n<li>Bug fix: JIRA WPB-2339 Remove notices from Inspirations page.</li>\n<li>Update: JIRA WPB-2208 Removed tutorials from Inspirations.</li>\n<li>Update: JIRA WPB-2359 Order \'Category Filter\' by category display order.</li>\n<li>Update: JIRA WPB-2360 Sort themes by category and then order within category.</li>\n<li>Update: JIRA WPB-2368 Read version constant from plugin file.</li>\n<li>Update: JIRA WPB-2361 Add BoldGrid Connect Search to Editor\'s background image tool.</li>\n<li>Update: JIRA WPB-2354 Preview button needs to always be visible in mobile view.</li>\n<li>Update: JIRA WPB-2355 Remove extraneous \'Preview\' button.</li>\n<li>Bug fix: JIRA WPB-2364 Inspirations not respecting theme release channel.</li>\n<li>Bug fix: JIRA WPB-2370 Color in screenshot does not match preview.</li>\n<li>Bug fix: JIRA WPB-2373 Duplicate themes in Inspirations.</li>\n<li>Bug fix: JIRA WPB-2379 Wrong budget passed when going form step 2 to step 1.</li>\n<li>Update: JIRA WPB-2380 Remove references to tutorials in deployment congrats message.</li>\n<li>Bug fix: JIRA WPB-2383 Image Search tab appears when clicking \'Add GridBlock\'.</li>\n</ul>\n<h4>1.2.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2325 Added wrapper to handle mb<em>convert</em>encoding() if mbstring is not loaded.</li>\n<li>Bug fix: JIRA WPB-2313 Disabled GridBlocks in network admin pages.</li>\n<li>New feature: JIRA WPB-2268 Changed to resized preview screenshots for Inspirations Design First concept.</li>\n<li>New feature: JIRA WPB-2287 Adjust device preview buttons in step 2 to behave like those in editor.</li>\n<li>New feature: JIRA WPB-2291 Auto install staging in final step if user chooses staging.</li>\n<li>Update: JIRA WPB-2290 Changed \'Install\' button to \'Next\'.</li>\n<li>Bug fix: JIRA WPB-2289 Continuously clicking category in step 1 shuffles themes.</li>\n<li>Update: JIRA WPB-2267 Added message to Inspirations when no generic themes are available.</li>\n<li>Update: JIRA WPB-2315 Added error handling for malformed ajax results for call to /api/build/get-generic.</li>\n<li>Update: JIRA WPB-2316 Add error handling for failures to fetch categories.</li>\n<li>Update: JIRA WPB-2317 Add error handling for failures to fetch pagesets.</li>\n<li>Update: JIRA WPB-2319 Check user capabilities before prompting for api key.</li>\n<li>Update: JIRA WPB-2320 Ensure user has permission to edit page before allowing download<em>and</em>insert<em>into</em>page.</li>\n<li>Update: JIRA WPB-2322 Sanitize user feedback before adding to options table.</li>\n<li>Update: JIRA WPB-2323 Allow admin notices to be dismissed per user.</li>\n<li>Update: JIRA WPB-2326 Update \'update\' class to utilize Admin Notices class.</li>\n<li>Update: JIRA WPB-2327 Check user capabilities before showing admin notices.</li>\n<li>Update: JIRA WPB-2331 Update confirmation messages.</li>\n</ul>\n<h4>1.2.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2269 Typo fix in Boldgrid<em>Inspirations</em>Dependency<em>Plugins::print</em>uninstalled_plugins().</li>\n<li>Bug fix: JIRA WPB-2270 New From GridBlocks became unavailable.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>New feature: JIRA WPB-2172 For preview generic builds, added an option for identification for purges, etc.</li>\n<li>Bug fix: JIRA WPB-2263 For preview sites under multisite, set the admin email address using the network admin email address.</li>\n<li>Bug fix: JIRA WPB-2223 Reworked API key validation and connection issue notices, formatting.</li>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-2150 Moved API methods to a new class, formatting, and phpcs rework.</li>\n<li>Bug fix: JIRA WPB-2224 Hide the email address field when widget is loaded.</li>\n<li>Bug fix: JIRA WPB-2225 Fixed jQuery Migrate deprecated warning.</li>\n<li>Update: JIRA WPB-2245 Changed feed to pull from dashboard tag on blog.</li>\n<li>Bug fix: JIRA WPB-2265 Uncaught TypeError: IMHWPB.BaseAdmin is not a constructor.</li>\n<li>Bug fix: JIRA WBP-2236 Errors everywhere when logging in as an Editor.</li>\n<li>Bug fix: JIRA WPB-2234 Add current<em>user</em>can checks to Boldgrid<em>Inspirations->set</em>api<em>key</em>callback().</li>\n<li>Bug fix: JIRA WPB-2237 Limit ajax requests by user.</li>\n<li>Bug fix: JIRA WPB-2240 Limit printing of configs in head.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2058 Added wrap class to the tutorials page.</li>\n<li>Bug fix: JIRA WPB-2184 In PHP 5.2, deactivate and die properly.</li>\n<li>New feature: Added BoldGrid news widget to dashboard.</li>\n<li>Bug fix: JIRA WPB-1994 Fixed issue with WP Theme Editor not being available.</li>\n<li>New feature: Added BoldGrid Feedback widget.</li>\n<li>Bug fix: JIRA WPB-2169 Connect Search defaults to smallest image size when no recommended sizes available.</li>\n<li>Bug fix: JIRA WPB-2192 Allow bug report to correctly show parent themes if submitted.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2160 New From GridBlocks, multiple pages are installed.</li>\n<li>Update: Changed text of getting and entering connect keys.</li>\n<li>Security: JIRA WPB-2151 Disabled autocomplete for API key entry fields.</li>\n<li>Bug fix: JIRA WPB-2145 Fixing issue with theme screenshots on Chrome Ubuntu.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2119 For asset downloads, when Imagick is loaded, set the thread limit to 1.</li>\n<li>Bug fix: JIRA WPB-2125 Fixing issue where theme was overwritten without version change.</li>\n<li>Bug fix: JIRA WPB-2104 Go back button hides all themes (Inspirations > Add Theme).</li>\n<li>Bug fix: JIRA WPB-2107 BoldGrid Connect Search overlapping footer (Dashboard > Media).</li>\n<li>Bug fix: JIRA WPB-2109 Session issues when starting over and importing active site.</li>\n<li>Bug fix: JIRA WPB-2116 Changes to the order of images in a gallery are not saving.</li>\n<li>Bug fix: JIRA WPB-2134 Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.</li>\n<li>Bug fix: JIRA WPB-2135 Image not replaced in Page & Post Editor after using Connect Search.</li>\n</ul>\n<h4>1.1.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2058 Added wrap class to Inspirations, so admin notices are displayed at the top.</li>\n<li>Bug fix: JIRA WPB-2041 Fixed BoldGrid theme update check in WordPress 4.6.</li>\n<li>Testing: JIRA WPB-2046 Tested on WordPress 4.5.3.</li>\n<li>New feature: JIRA WPB-599 Added options for plugin and theme auto-updates via WordPress autoupdater.</li>\n<li>Update: JIRA WPB-2008 Deploy class updated to allow for is_generic flag.</li>\n<li>Bug fix: JIRA WPB-1950 Prevent a portait image from displaying atop \'Crop Image\' and \'Skip Cropping\' buttons.</li>\n</ul>\n<h4>1.1.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2032 Fixed issue when activating key. Added nonce to api key form.</li>\n<li>Rework: JIRA WPB-2030 Updated the \"I don\'t have an API key\" section.</li>\n<li>New feature: JIRA WPB-2029 Added TOS box to API key submission form.</li>\n<li>New feature: JIRA WPB-1905 Added capability for auto-updates of boldgrid-inspirations by API response.</li>\n<li>Bug fix: JIRA WPB-2002 Fixed theme update issue where upgrader says is up to date at times.</li>\n<li>Bug fix: JIRA WPB-2006 Pdes and Homepage not installing correctly on Inpirations Theme Only installs.</li>\n</ul>\n<h4>1.1.6</h4>\n<ul>\n<li>New feature: JIRA WPB-1839 Users can now change their theme release channel.</li>\n<li>Security fix: JIRA WPB-1977 Validate nonce for feedback form diagnostic data callback and form submit.</li>\n<li>Bug fix: JIRA WPB-1955 Fatal error: Class \'Boldgrid<em>Staging</em>Plugin\' not found.</li>\n</ul>\n<h4>1.1.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1914 Staged image used on Active page not showing in cart.</li>\n</ul>\n<h4>1.1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1886 Fixed feedback notice being displayed too often (more than a week after submitting).</li>\n<li>New feature: JIRA WPB-1183 Refresh the Library Tab after downloading an image.</li>\n<li>Update: JIRA WPB-1865 Update style of \'Transactions\' pages to better incorporate BoldGrid Staging\'s nav menu.</li>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1855 Do not display feedback notice on update or setting pages.</li>\n<li>Bug fix: JIRA WPB-1860 Fixed horizontal line through screenshot in step 2.</li>\n<li>Bug fix: JIRA WPB-1863 Cart does not look for watermarked images used within staged pages.</li>\n<li>Bug fix: JIRA WPB-1891 View / Download of images within receipts not working for images purchased via Staging.</li>\n<li>Bug fix: JIRA WPB-1893 JS errors in console when viewing attachments.</li>\n<li>Bug fix: JIRA WPB-1900 Attribution shows in menu when menu generated using wp<em>page</em>menu.</li>\n</ul>\n<h4>1.1.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1824 Fixed order of plugin deactivation and uninstall in Start Over process.</li>\n<li>Bug fix: JIRA WPB-1814 Fixed PHP notice in page and post editor for In Menu when there is a corrupted nav menu array.</li>\n<li>Bug fix: JIRA WPB-1823 Fixed display of \"Themes\" H1 and the additional themes bar when choosing active or staging before installing a theme.</li>\n<li>Bug fix: JIRA WPB-1840 Fixing thumbnail presentation in inspirations and add new theme.</li>\n</ul>\n<h4>1.1.2.3</h4>\n<ul>\n<li>Update: Sync version. See version 1.1.1.1.</li>\n</ul>\n<h4>1.1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1833 Fixed checking for previously downloaded assets in deployment when using multisite (wp-preview).</li>\n</ul>\n<h4>1.1.2.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1817 BoldGrid Connect Search: Was not being added when changing a header image in the Customizer.</li>\n<li>Rework: JIRA WPB-1541 Removed feedback form bug report diagnostic report items.</li>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n<li>Rework: JIRA WPB-1541 Reworked admin feedback notice.</li>\n<li>Rework: JIRA WPB-1751 Removed analysis processing and optional logging capabilities. Added support for XHProf.</li>\n<li>Bug fix: JIRA WPB-1805 Now adds theme update info on the Customizer Themes page.</li>\n<li>Rework: JIRA WPB-1785 Enabled and reworked image caching for the preview server.</li>\n<li>Rework: JIRA WPB-1751 Reworked analysis processing.</li>\n<li>Update: JIRA WPB-1658 Storing more reliable install data through inspirations.</li>\n<li>Bug fix: JIRA WPB-1787 When not using BoldGrid menu, cart does not dynamically update total page price.</li>\n<li>Update: JIRA WPB-1754 Remove attribution page from search results.</li>\n<li>Bug fix: JIRA WPB-1788 webkit css missing from \'new from gridblocks\'.</li>\n<li>New feature: JIRA WPB-1806 Add \'BoldGrid search\' tab when replacing an image.</li>\n</ul>\n<h4>1.1.1.1</h4>\n<ul>\n<li>Bug Fix: Fixing logo display on login screen.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Bug fix: Fixed analysis include for preview server.</li>\n<li>Bug fix: New From GridBlocks: Asset download issues.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>New feature: JIRA WPB-1751 Added analysis processing and optional logging capabilities.</li>\n<li>Bug fix: JIRA WPB-1781 Removed boldgrid<em>dismissed</em>admin_notices from Start Over cleanup.</li>\n<li>New feature: JIRA WPB-1541 Added feedback notice.</li>\n<li>Bug fix: JIRA WPB-1747 New From GridBlocks: For non BoldGrid themes, only load grid css.</li>\n<li>Bug fix: JIRA WPB-1760 New From GridBlocks: Ensure page title shows on preview page.</li>\n<li>Update: JIRA WPB-1779 New From GridBlocks: Update verbiage for \'Downloading GridBlocks\'.</li>\n</ul>\n<h4>1.0.12.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1710 Fixed missing device preview tabs on Add New Theme preview modal.</li>\n<li>Bug fix: JIRA WPB-1710 Fixed notice dismissal checking.</li>\n<li>Bug fix: JIRA WPB-1749 On start over, staging menus are not deleted.</li>\n<li>Bug fix: JIRA WPB-1755 Gallery images not showing in cart.</li>\n</ul>\n<h4>1.0.12</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1740 Fixed \"In Menu\" messages in editor when staging plugin is not active, and fixed saving menu selections.</li>\n<li>New feature: JIRA WPB-1726 Added optional feedback for GridBlock Add Page.</li>\n<li>Removed Ft: JIRA WPB-1710 Removed Inspirations Add Pages; replaced by GridBlocks.</li>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>New feature: Don\'t assign footer contact widget if using base pagesets.</li>\n<li>Bug Fix: JIRA WPB-1732 Fixing css issues on login screen (firefox).</li>\n<li>Bug Fix: JIRA WPB-1687 Image search: Title, Caption, Alt Text and Description do not display on new pages.</li>\n</ul>\n<h4>1.0.11</h4>\n<ul>\n<li>New feature: JIRA WPB-1699 Added optional feedback for theme activation.</li>\n<li>New feature: JIRA WPB-1690 Adding BoldGrid themes to All themes install menu.</li>\n<li>Bug fix: JIRA WPB-1686 Limited items loaded in network admin pages.</li>\n<li>Improvement: JIRA WPB-1604 Added a \"Cancel\" link to the \"In Menu\" section.</li>\n<li>Improvement: JIRA WPB-1603 Display menu locations in the editor \"In Menu\" section.</li>\n<li>Bug fix: JIRA WPB-1602 Corrected capitalization of \"None\" under \"In menu\" in the editor.</li>\n<li>Improvement: JIRA WPB-1664 Gets api<em>key and site</em>hash from configs instead of get_option.</li>\n<li>Bug fix: JIRA WPB-1597 Fixing indefined index error</li>\n<li>New feature: JIRA WPB-1649 Added reporting of PHP version and mobile ratio.</li>\n<li>Bug fix: JIRA WPB-1598 \'Mine\' count on \'all pages\' is incorrect.</li>\n<li>Bug fix: JIRA WPB-1647 JS error with easy-attachment-preview-size.js.</li>\n<li>Bug fix: JIRA WPB-1651 When the BG menu is turned off, Appearance link should take you to themes.</li>\n</ul>\n<h4>1.0.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1632 Fixed handling of subcategory<em>id in deploy</em>page_sets.</li>\n<li>New feature: JIRA WPB-1510 Moved adhoc functions.php to class-boldgrid-inspirations-utility.php (class Boldgrid<em>Inspirations</em>Utility).</li>\n<li>Rework: JIRA WPB-1553 Updated require and include statements for standards.</li>\n<li>Bug fix: JIRA WPB-1563 Updated pages in which wp<em>iframe-media</em>upload.css is loaded.</li>\n<li>Bug fix: JIRA WPB-1549 Resolve attribution page missing attribution for several images.png.</li>\n</ul>\n<h4>1.0.9.2</h4>\n<ul>\n<li>Bug fix: Add GridBlock Sets feature disabled.</li>\n</ul>\n<h4>1.0.9.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed support for PHP 5.2 to deactivate plugin.</li>\n<li>Bug fix: Prevent click of links in add<em>new</em>page_selection previews.</li>\n<li>Bug fix: JIRA WPB-1554 Fixed undefined JavaScript variable pagenow for customizer link.</li>\n</ul>\n<h4>1.0.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1554 Fixed theme link in network dashboard nav menu.</li>\n<li>Bug fix: JIRA WPB-1590 Fixed JavaScript error for undefined screen info in network dashboard.</li>\n<li>Bug fix: JIRA WPB-1535 Fixed theme deployment issues.</li>\n<li>New feature: JIRA WPB-1584 Added an opt-out feedback payload delivery system.</li>\n<li>New feature: JIRA WPB-1580 Added optional feedback for customizer_start.</li>\n<li>Bug fix: JIRA WPB-1571 Removed plugin dependency admin notice when editing an attachment (image).</li>\n<li>New feature: JIRA WPB-1579 Added feedback opt-out in BoldGrid Settings, hidden for now.</li>\n<li>Bug fix: JIRA WPB-1575 Addressed an issue causing mismatch color palettes on cached previews</li>\n<li>New feature: JIRA WPB-1514 Add new pages offers page templates to choose from.</li>\n</ul>\n<h4>1.0.8.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed PHP version check condition (<5.3).</li>\n</ul>\n<h4>1.0.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1561 Fixed missing get<em>plugin</em>data on update calls.</li>\n<li>New feature: JIRA WPB-1511 Added dependency plugin notice on editor pages.</li>\n<li>Bug fix: JIRA WPB-1553 Added support for <strong>DIR</strong> in PHP <=5.2.</li>\n<li>Bug fix: JIRA WPB-1371 JSON encoded image data for media download requests.</li>\n<li>New feature: JIRA WPB-1332 Swapping loading GIF to CSS loading image.</li>\n<li>New feature: JIRA WPB-1072 Storing static pages on install</li>\n<li>New feature: JIRA WPB-1539 When deleting a page, remove it from any applicable menus as well.</li>\n<li>New feature JIRA WPB-1542 Manage menu assignment within editor.</li>\n<li>New feature JIRA WPB-1555 Add wp-image-## class to images during deployment.</li>\n<li>New feature JIRA WPB-1557 Add wp-image-## class to images when adding gridblocks.</li>\n<li>Bug fix: JIRA WPB-1506 Theme naming missing in preview.</li>\n<li>Bug fix: JIRA WPB-1443 Extra page listed under \'Mine\'.</li>\n<li>Bug fix: JIRA WPB-1560 Install options not available on preview server</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Rework: JIRA WPB-1533 Ensured activation data is sent after first login.</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Rework: JIRA WPB-1533 Ensured activation data is sent after first login.</li>\n</ul>\n<h4>1.0.6</h4>\n<ul>\n<li>Rework: JIRA WPB-1411 Added more output to the deploy log.</li>\n</ul>\n<h4>1.0.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1462 Fixed position of dependency plugins admin notice. Also limited to Dashboard and plugins page.</li>\n<li>Bug fix: JIRA WPB-1290 Fixing issues with galleries leaving empty spaces</li>\n<li>Bug fix: JIRA WPB-1471 Made deployment plugin installation respect release channel.</li>\n<li>Rework: JIRA WPB-1452 Remove unneeded call to \'boldgrid<em>activate</em>framework\' during deployment.</li>\n<li>Bug fix: JIRA WPB-946 Fixed margin bug on step 2 additional themes.</li>\n<li>Bug fix: JIRA WPB-1384 Increase width of select input on image search modal.</li>\n<li>Bug fix: JIRA WPB-1508 BoldGrid Image search box size is inconsistent.</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1442 Fixing inspiration border styles for wordpress 4.4</li>\n<li>Bug fix: JIRA WPB-1461 Updating login button styles for wordpress 4.4</li>\n<li>Bug fix: JIRA WPB-1411 Added initialization and checks for empty image queues in deployment.</li>\n<li>Bug fix: JIRA WPB-1406 Attribution page still showing in \'All Pages\'.</li>\n<li>Bug fix: JIRA WPB-1451 Active images are showing in Staging attribution page.</li>\n<li>Bug fix: JIRA WPB-1466 Tabs on tutorials page too small at 1035px - 1482px.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n<li>New feature: JIRA WPB-1389 When starting over theme mods are saved with a flag to recompile sass</li>\n<li>Bug fix: JIRA WPB-1420 Content of Attribution page is overwriting page saves.</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1395 Adjusted theme update data; now gets theme uri from theme style.css, download url from api data.</li>\n<li>Rework JIRA WPB-1374 Updated activation timestamp to use GMT/UTC.</li>\n<li>Bug fix: JIRA WPB-1377 Reseller option is now set on first call to either the front end or wp_login.</li>\n<li>Bug fix: Adjusted handling for image purchases when errors occur.</li>\n<li>Bug fix: JIRA WPB-1365 Purchase link on editing a page goes to wrong link.</li>\n<li>Bug fix: JIRA WPB-1368 Inspirations step 0 text refers to nonexisting help tabs.</li>\n<li>Rework: JIRA WPB-1378 Adjusted formatting of footer in Dashboard.</li>\n<li>Rework: JIRA WPB-1369 Update minus signs on \'Transaction History\'.</li>\n<li>New feature: JIRA WPB-1379 On the transactions page, show the reseller that processed the credits.</li>\n<li>Bug fix: Count of \'All\' pages inaccurate on \'All pages\'.</li>\n<li>Bug fix: JIRA WPB-1367 Updated link for \'Lost your BoldGrid Connect Key?\'.</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1374 Updated activation timestamp to include timezone in UTC.</li>\n<li>Bug fix: Attribution page shows style tags.</li>\n<li>Bug fix: Strict Standards fix for wp<em>kses</em>allowed_html.</li>\n<li>Bug fix: Fixed incorrect link.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:311:\"<h4>1.3</h4>\n<p>Version 1.3 has been released with a redesigned Inspiration phase. For more information on this change and others, please visit our blog at https://www.boldgrid.com/boldgrid-1-3-released/ .</p>\n<h4>1.0.2</h4>\n<p>Users should upgrade to version 1.0.2 to ensure proper BoldGrid theme updates.</p>\n\";}s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:40609:\"{\"5.2\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.1.1\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.1\":{\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0.5\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0.4\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0.3\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0.2\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0.1\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.9\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.8\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.6\":{\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.5\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.4\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.10\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.9\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.8\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.6\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8\":{\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.9\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.13\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.12\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.11\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.10\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.12\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.11\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.10\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.10\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.3.1\":{\"0.29\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8.1\":[100,12],\"1.0.9.1\":[100,12],\"1.0.9.2\":[100,12],\"1.0.10\":[100,12],\"1.0.11\":[100,12],\"1.0.12.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2.1\":[100,12],\"1.1.2.3\":[100,12],\"1.1.1.1\":[100,12],\"1.1.3\":[100,12],\"1.1.4\":[100,12],\"1.1.5\":[100,12],\"1.1.6\":[100,12],\"1.1.7\":[100,12],\"1.1.8\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.5\":[100,12],\"1.2.8\":[100,12],\"1.2.9\":[100,12],\"1.2.11\":[100,12],\"1.2.13\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,12],\"1.4.4\":[100,12],\"1.4.5\":[100,12],\"1.4.6\":[100,12],\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:5:{s:11:\"inspiration\";s:11:\"Inspiration\";s:13:\"customization\";s:13:\"Customization\";s:5:\"build\";s:5:\"Build\";s:6:\"create\";s:6:\"Create\";s:6:\"design\";s:6:\"Design\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"//repo.boldgrid.com/assets/banner-inspirations-banner-772x250.png\";s:4:\"high\";s:66:\"//repo.boldgrid.com/assets/banner-inspirations-banner-1544x500.png\";}s:11:\"new_version\";s:5:\"2.1.0\";s:4:\"name\";s:21:\"BoldGrid Inspirations\";s:4:\"slug\";s:21:\"boldgrid-inspirations\";s:17:\"short_description\";s:135:\"BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.\";s:12:\"last_updated\";s:19:\"2019-08-29 15:10:19\";s:6:\"author\";s:64:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid </a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-128x128.png\";s:2:\"2x\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-256x256.png\";s:3:\"svg\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:148:\"https://api.boldgrid.com/api/open/getAsset?key=d3589656bedc2351ea246ce8f6bf3cd3&id=1017199&installed_plugin_version=2.1.0&installed_wp_version=5.2.2\";}s:16:\"boldgrid-staging\";O:8:\"stdClass\":24:{s:5:\"title\";s:16:\"BoldGrid Staging\";s:7:\"version\";s:5:\"1.5.1\";s:8:\"asset_id\";i:876738;s:12:\"release_date\";s:19:\"2017-11-14 20:16:10\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.1\";s:8:\"sections\";a:4:{s:11:\"description\";s:136:\"<p>BoldGrid Staging is a standalone plugin to allow use of a staged website while keeping a live website intact during development.</p>\n\";s:12:\"installation\";s:183:\"<ol>\n<li><p>Upload the entire boldgrid-staging folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n</ol>\n\";s:9:\"changelog\";s:9076:\"<h4>1.5.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3586 Stage button missing from Change themes.</li>\n<li>Bug fix: JIRA WPB-3589 Customizer switcher not working.</li>\n<li>New feature: JIRA WPB-3593 Support new Customizer scheduler.</li>\n<li>Bug fix: JIRA WPB-3611 Customizer changeset, save draft of staging, it loads on active.</li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3351 wp.template is not a function.</li>\n<li>Bug fix: JIRA WPB-2930 The slug \'primary-staging\' is already in use by another term.</li>\n</ul>\n<h4>1.4.4</h4>\n<ul>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n<li>Bug fix: JIRA WPB-3325 Error when searching and not logged in.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>Update: Updated for WordPress 4.8.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Update: JIRA WPB-3106 Cleanup deploy type.</li>\n</ul>\n<h4>1.4.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3213 Footer displays atop page in customizer when going from staging to active.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2951 Images in staging posts not being downloaded.</li>\n<li>Bug fix: JIRA WPB-2961 Fatal error: Class \'Boldgrid<em>Inspirations</em>Deploy_Metadata\' not found.</li>\n<li>Bug fix: JIRA WPB-2976 In Staging Customizer, links in menu 404.</li>\n<li>Bug fix: JIRA WPB-2984 Attribution page 404.</li>\n</ul>\n<h4>1.3.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n<li>Bug fix: JIRA WPB-2917 New staging deploy using active site\'s colors.</li>\n<li>Bug fix: JIRA WPB-2635 Start over staging affecting active site.</li>\n<li>Bug fix: JIRA WPB-2493 Publish private posts during staging deployment.</li>\n<li>New feature: JIRA WPB-2914 Add staging button to theme details modal.</li>\n</ul>\n<h4>1.3.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n</ul>\n<h4>1.3.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2681 Staging switcher missing from Customizer.</li>\n</ul>\n<h4>1.3.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2791 Filter get_pages on front end.</li>\n<li>Update: JIRA WPB-2800 Ensure \'Install a blog\' works with Staging.</li>\n</ul>\n<h4>1.3.5</h4>\n<ul>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Bug fix: JIRA WPB-1450 Staging pages show in search results when searching on the front end.</li>\n</ul>\n<h4>1.3.4</h4>\n<ul>\n<li>Update: Merging wp47 branch.</li>\n</ul>\n<h4>1.3.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2664 Memory error when loading Customizer.</li>\n</ul>\n<h4>1.3.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2507 Hide staging menus when customizing active site.</li>\n<li>Bug fix: JIRA WPB-2602 Parent pages don\'t list staging pages.</li>\n<li>New feature: JIRA WPB-2603 Add initial version of Inspirations survey.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n<li>Update: JIRA WPB-2563 Convert Attribution page to use custom post type.</li>\n<li>Bug fix: JIRA WPB-2548 Fix sloppy post name issues when copying to staging (and vice versa).</li>\n</ul>\n<h4>1.3.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2685 Active pages showing as menu options in Staging Customizer.</li>\n<li>Bug fix: JIRA WPB-2686 New staged pages created in Customizer are not saved as staged.</li>\n</ul>\n<h4>1.3.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2667 Staging switcher missing from Customizer in WordPress 4.7</li>\n<li>Bug fix: JIRA WPB-2668 Staging theme name listed incorrectly in Customizer.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.2.7</h4>\n<p>*Update: JIRA WPB-2491 Add \'Customize > Active Theme\' navigation to Inspirations.</p>\n<h4>1.2.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2437 Fixing issue with compiling staging colors.</li>\n</ul>\n<h4>1.2.5</h4>\n<ul>\n<li>Update: JIRA WPB-2437 Button.css needs to compile after updates and work with staging.</li>\n<li>Bug fix: JIRA WPB-2424 \'Deploy Staging\' button appears when clicking on active theme.</li>\n<li>Bug fix: JIRA WPB-2459 Undefined index error - class-boldgrid-staging-theme.php.</li>\n</ul>\n<h4>1.2.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2425 Link to Staging tutorials needs to be removed.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2075 If themes are lazy loaded, staging button does not appear on later themes.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Update: JIRA WPB-2378 Set the version constant from plugin file.</li>\n<li>Bug fix: If a post type isn\'t found, then don\'t query.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-1825 Formatting.</li>\n<li>Bug fix: JIRA WPB-2235 Only send staged site promotion to active if was built with Inspirations.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2124 Customizer\'s list of pages to add to a menu are always active pages.</li>\n<li>Bug fix: JIRA WPB-2134 Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.</li>\n</ul>\n<h4>1.1.3</h4>\n<ul>\n<li>New feature: JIRA WPB-2037 Added capability for auto-updates by BoldGrid API response.</li>\n<li>Testing: JIRA WPB-2046 Tested on WordPress 4.5.3.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>New feature: JIRA WPB-1865 Add active / staging navigation to BoldGrid Inspirations Cart.</li>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1863 BoldGrid Cart does not look for watermarked images used within staged pages.</li>\n<li>Bug fix: JIRA WPB-1888 Staging options missing from Dashboard > Settings > Reading.</li>\n<li>Bug fix: JIRA WPB-1887 Copy to Staging link does not have correct cursor.</li>\n<li>Bug fix: JIRA WPB-1892 Page template not saving correctly for staged pages.</li>\n<li>Bug fix: JIRA WPB-1898 When no menu is assigned to a location, active pages show in menu on staged site.</li>\n<li>Bug fix: JIRA WPB-1899 Warnings and Notices thrown when using BoldGrid Inspirations start over.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1834 Delete BoldGrid Staging Attribution page when starting over.</li>\n</ul>\n<h4>1.1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n</ul>\n<h4>1.0.9</h4>\n<ul>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>Bug fix: JIRA WPB-1723 Switching between Staging and Active in the customizer loads wrong content.</li>\n</ul>\n<h4>1.0.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1604 Updated some CSS for standards.</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1634 Now does not enable staging theme on install; use the enable link.</li>\n<li>Rework: JIRA WPB-1620 Updated require and include statements for standards.</li>\n<li>New feature: JIRA WPB-1538 Added a way to set staging site\'s homepage.</li>\n</ul>\n<h4>1.0.6</h4>\n<ul>\n<li>New feature: JIRA WPB-1580 Added feedback when deploying a staged site.</li>\n<li>New feature: JIRA WPB-1572 Added staging switch for static gridblocks</li>\n</ul>\n<h4>1.0.5.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed PHP version check condition (<5.3).</li>\n</ul>\n<h4>1.0.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Added support for <strong>DIR</strong> in PHP <=5.2.</li>\n<li>New feature JIRA WPB-1542 Manage menu assignment within editor.</li>\n<li>Misc: JIRA WPB-1468 Updated readme.txt for Tested up to: 4.4.1</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1426 When installing into staging, with active site, active widgets are overwritten..</li>\n<li>Bug fix: JIRA WPB-1452 Upon deploying staging, new active sites lost Social Media icons.</li>\n<li>Bug fix: JIRA WPB-1450 Staging pages show in search results when searing on the front end.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1422 Customize links showing in wrong menu...</li>\n<li>New feature JIRA WPB-1439 Tie into Theme Framework\'s filter for creating attribution page link and fix it for Staging.</li>\n<li>Bug fix: JIRA WPB-1428 Live Preview of staged theme throws JS error.</li>\n<li>Bug fix: JIRA WPB-1446 Properly rename a staged page when it ends with \'-staging-(a number)\'</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n<li>Bug Fix: JIRA WPB-1396 Call to action disappears when customizing staging.</li>\n<li>Bug Fix: JIRA WPB-1389 Setting Launched staging theme mods to allow theme to trigger activation</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>Rework: Created class Boldgrid<em>Staging</em>Dashboard_Menus and reorganized related code.</li>\n<li>Bug Fix: JIRA WPB-1383 Fixing issue that prevented color palettes from updating on staging deploy.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:119:\"<h4>1.0.1</h4>\n<p>Users should upgrade to version 1.0.1 to receive a fix for color palettes in staging deployment.</p>\n\";}s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:3784:\"{\"4.8.3\":{\"1.5.1\":[100,95]},\"4.8.2\":{\"1.5.1\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.7\":{\"1.5.1\":[100,95]},\"4.7.6\":{\"1.5.1\":[100,95]},\"4.7.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.8\":{\"1.5.1\":[100,95]},\"4.6.7\":{\"1.5.1\":[100,95]},\"4.6.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.9\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.11\":{\"1.5.1\":[100,95]},\"4.5.10\":{\"1.5.1\":[100,95]},\"4.5.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.9\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.10\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.3.1\":{\"0.1\":[100,12],\"0.2\":[100,12],\"1.0.1\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5.1\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8\":[100,12],\"1.0.9\":[100,12],\"1.1.0.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2\":[100,12],\"1.1.3\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.6\":[100,12],\"1.2.7\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.0.1\":[100,12],\"1.3.3\":[100,12],\"1.3.0.2\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.0.1\":[100,12],\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.4.5\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:3:{s:7:\"staging\";s:7:\"Staging\";s:11:\"duplication\";s:11:\"Duplication\";s:5:\"clone\";s:5:\"Clone\";}s:7:\"banners\";a:2:{s:3:\"low\";s:60:\"//repo.boldgrid.com/assets/banner-staging-banner-772x250.png\";s:4:\"high\";s:61:\"//repo.boldgrid.com/assets/banner-staging-banner-1544x500.png\";}s:11:\"new_version\";s:5:\"1.5.1\";s:4:\"name\";s:16:\"BoldGrid Staging\";s:4:\"slug\";s:16:\"boldgrid-staging\";s:17:\"short_description\";s:128:\"BoldGrid Staging is a standalone plugin to allow use of a staged website while keeping a live website intact during development.\";s:12:\"last_updated\";s:19:\"2017-11-14 20:16:10\";s:6:\"author\";s:67:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid.com</a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-staging-128x128.png\";s:2:\"2x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-staging-256x256.png\";s:3:\"svg\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-staging-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:116:\"https://api.boldgrid.com/api/open/getAsset?key=d3589656bedc2351ea246ce8f6bf3cd3&id=876738&installed_wp_version=5.2.2\";}s:16:\"boldgrid-gallery\";O:8:\"stdClass\":24:{s:5:\"title\";s:16:\"BoldGrid Gallery\";s:7:\"version\";s:3:\"1.5\";s:8:\"asset_id\";i:842930;s:12:\"release_date\";s:19:\"2017-08-08 18:07:20\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.1\";s:8:\"sections\";a:4:{s:11:\"description\";s:82:\"<p>BoldGrid Gallery is a standalone plugin used for slideshows and galleries.</p>\n\";s:12:\"installation\";s:183:\"<ol>\n<li><p>Upload the entire boldgrid-gallery folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n</ol>\n\";s:9:\"changelog\";s:2946:\"<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Update: JIRA WPB-3112 Updated wc-gallery: 1.52 => 1.55.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Update: Bump Version.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Update: JIRA WPB-2368 Version constant is now set from plugin file.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2310 Removed broken plugin Settings link. Pending review on WPB-2309.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-1825 Formatting.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2114 Fixed gallery displaying in editor on wordpress 4.6.</li>\n<li>Bug fix: JIRA WPB-2114 Fixing ordering of gallery items.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>New feature: JIRA WPB-2037 Added capability for auto-updates by BoldGrid API response.</li>\n<li>Update: JIRA WPB-2024 Updated wc-gallery: 1.48 => 1.52.</li>\n<li>Misc: Updated editor.js to pass JSHint.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1893 JS errors in console when viewing attachments.</li>\n</ul>\n<h4>1.1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>Bug Fix: JIRA WPB-1646 Fixing Issues where masonry gallery was not WYSIWYG.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>Update: JIRA WPB-1611 Updated wc-gallery: 1.40 => 1.48.</li>\n<li>Rework: JIRA WPB-1617 Updated require and include statements for standards.</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Changed <strong>DIR</strong> to dirname( <strong>FILE</strong> ) for PHP <=5.2.</li>\n<li>Misc JIRA WPB-1468 Updated readme.txt for Tested up to: 4.4.1</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:1:\"\n\";}s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:1636:\"{\"4.8.1\":{\"1.5\":[100,95]},\"4.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.4.10\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.3.1\":{\"0.4\":[100,12],\"1.0\":[100,12],\"1.0.1\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.1.0.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.3\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,95],\"1.5\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:4:{s:7:\"gallery\";s:7:\"Gallery\";s:6:\"slider\";s:6:\"Slider\";s:9:\"slideshow\";s:9:\"Slideshow\";s:7:\"masonry\";s:7:\"Masonry\";}s:7:\"banners\";a:2:{s:3:\"low\";s:53:\"//repo.boldgrid.com/assets/banner-gallery-772x250.png\";s:4:\"high\";s:54:\"//repo.boldgrid.com/assets/banner-gallery-1544x500.png\";}s:11:\"new_version\";s:3:\"1.5\";s:4:\"name\";s:16:\"BoldGrid Gallery\";s:4:\"slug\";s:16:\"boldgrid-gallery\";s:17:\"short_description\";s:74:\"BoldGrid Gallery is a standalone plugin used for slideshows and galleries.\";s:12:\"last_updated\";s:19:\"2017-08-08 18:07:20\";s:6:\"author\";s:67:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid.com</a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-128x128.png\";s:2:\"2x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-256x256.png\";s:3:\"svg\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:116:\"https://api.boldgrid.com/api/open/getAsset?key=d3589656bedc2351ea246ce8f6bf3cd3&id=842930&installed_wp_version=5.2.2\";}s:20:\"boldgrid-ninja-forms\";O:8:\"stdClass\":24:{s:5:\"title\";s:20:\"BoldGrid Ninja Forms\";s:7:\"version\";s:3:\"1.5\";s:8:\"asset_id\";i:842931;s:12:\"release_date\";s:19:\"2017-08-08 18:07:25\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.1\";s:8:\"sections\";a:3:{s:11:\"description\";s:93:\"<p>BoldGrid Ninja Forms is a webform builder with unparalleled ease of use and features.</p>\n\";s:12:\"installation\";s:330:\"<p>This section describes how to install the plugin and get it working.</p>\n<ol>\n<li>Upload the entire boldgrid-ninja-forms folder to the /wp-content/plugins/ directory.</li>\n<li>Activate the plugin through the Plugins menu in WordPress.</li>\n<li>You will find the Forms menu in your WordPress Dashboard / admin panel.</li>\n</ol>\n\";s:14:\"upgrade_notice\";s:268:\"<h4>1.2.1</h4>\n<p>Shortcodes have been re-implemented. They are used like so: [ninja_form id=3] where 3 is the ID number of the form you want to display.</p>\n<h4>1.1.1</h4>\n<p>Users should update to boldgrid-ninja-forms version 1.1.1 for support in WordPress 4.5.</p>\n\";}s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:2292:\"{\"4.8.1\":{\"1.5\":[100,95]},\"4.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.9\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.4\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.3\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.2\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5.1\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.9\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.8\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.7\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.6\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.5\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.4.10\":{\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]},\"4.3.1\":{\"0.0.1\":[100,12],\"1.0\":[100,12],\"1.0.1\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4.1\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7.1\":[100,12],\"1.1.0.1\":[100,12],\"1.1.1.1\":[100,12],\"1.1.2\":[100,12],\"1.1.3\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.3\":[100,12],\"1.2.4\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.0.1\":[100,12],\"1.4.3\":[100,95],\"1.4.4\":[100,95],\"1.5\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:3:{s:12:\"contact form\";s:12:\"Contact form\";s:4:\"form\";s:4:\"Form\";s:12:\"form builder\";s:12:\"Form builder\";}s:7:\"banners\";a:2:{s:3:\"low\";s:57:\"//repo.boldgrid.com/assets/banner-ninja-forms-772x250.png\";s:4:\"high\";s:58:\"//repo.boldgrid.com/assets/banner-ninja-forms-1544x500.png\";}s:11:\"new_version\";s:3:\"1.5\";s:4:\"name\";s:20:\"BoldGrid Ninja Forms\";s:4:\"slug\";s:20:\"boldgrid-ninja-forms\";s:17:\"short_description\";s:85:\"BoldGrid Ninja Forms is a webform builder with unparalleled ease of use and features.\";s:12:\"last_updated\";s:19:\"2017-08-08 18:07:25\";s:6:\"author\";s:67:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid.com</a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:70:\"https://repo.boldgrid.com/assets/icon-boldgrid-ninja-forms-128x128.png\";s:2:\"2x\";s:70:\"https://repo.boldgrid.com/assets/icon-boldgrid-ninja-forms-256x256.png\";s:3:\"svg\";s:70:\"https://repo.boldgrid.com/assets/icon-boldgrid-ninja-forms-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:116:\"https://api.boldgrid.com/api/open/getAsset?key=d3589656bedc2351ea246ce8f6bf3cd3&id=842931&installed_wp_version=5.2.2\";}}','no'),(573,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1567102825;s:7:\"checked\";a:4:{s:17:\"boldgrid-vacation\";s:6:\"1.24.4\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:13:\"twentysixteen\";s:3:\"2.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(144,'boldgrid_pointers','a:4:{i:0;a:6:{s:2:\"id\";s:37:\"boldgrid_image_search_internal_only_8\";s:6:\"screen\";s:4:\"page\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:1;a:6:{s:2:\"id\";s:49:\"boldgrid_media_library_image_search_internal_only\";s:6:\"screen\";s:6:\"upload\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:3:{s:4:\"edge\";s:3:\"top\";s:5:\"align\";s:6:\"middle\";s:17:\"open_on_page_load\";b:0;}}i:2;a:6:{s:2:\"id\";s:38:\"boldgrid_image_size_do_you_need_help_8\";s:6:\"screen\";s:12:\"media-upload\";s:6:\"target\";s:11:\"#image_size\";s:5:\"title\";s:10:\"Image size\";s:7:\"content\";s:33:\"Need help choosing an image size?\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:3;a:6:{s:2:\"id\";s:29:\"boldgrid_customization_widget\";s:6:\"screen\";s:9:\"dashboard\";s:6:\"target\";s:21:\"#customization_widget\";s:5:\"title\";s:35:\"Begin customizing your new website!\";s:7:\"content\";s:130:\"Congratulations, you&#039;ve just installed your new website! Below you&#039;ll find tips to help you begin customizing your site.\";s:8:\"position\";a:2:{s:4:\"edge\";s:6:\"bottom\";s:5:\"align\";s:6:\"middle\";}}}','yes'),(148,'_site_transient_timeout_browser_01b80466de9751fc3c1cfc72f0950804','1567699253','no'),(150,'_site_transient_timeout_php_check_73ecd64509db505b6046b20394d377da','1567699253','no'),(151,'_site_transient_php_check_73ecd64509db505b6046b20394d377da','a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(152,'_site_transient_timeout_boldgrid_wporg_plugins','1567123254','no'),(153,'_transient_timeout_feed_e79ca67dd469d7b245e93ea26444d16d','1567137656','no'),(154,'_transient_timeout_feed_mod_e79ca67dd469d7b245e93ea26444d16d','1567137656','no'),(155,'_transient_feed_mod_e79ca67dd469d7b245e93ea26444d16d','1567094456','no'),(170,'can_compress_scripts','1','no'),(157,'_site_transient_timeout_community-events-7ca54ca204f6e72c74a042bc29d038bc','1567137658','no'),(158,'_site_transient_community-events-7ca54ca204f6e72c74a042bc29d038bc','a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"216.54.31.0\";}s:6:\"events\";a:6:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:11:\"WordCamp US\";s:3:\"url\";s:29:\"https://2019.us.wordcamp.org/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2019-11-01 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"St. Louis, MO, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:38.6532135;s:9:\"longitude\";d:-90.3136733;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:68:\"WP Hampton Roads Tavern - Meetup at Gordon Biersch in VB Town Center\";s:3:\"url\";s:52:\"https://www.meetup.com/WordPresshr/events/264159907/\";s:6:\"meetup\";s:23:\"WordPress Hampton Roads\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPresshr/\";s:4:\"date\";s:19:\"2019-08-28 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Virginia Beach, VA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:36.843162536621;s:9:\"longitude\";d:-76.134483337402;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:40:\"Network: Ask, Advise, Discuss, and Learn\";s:3:\"url\";s:55:\"https://www.meetup.com/WordPresshr/events/nqbntqyzmbpb/\";s:6:\"meetup\";s:23:\"WordPress Hampton Roads\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPresshr/\";s:4:\"date\";s:19:\"2019-09-11 09:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Norfolk, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:36.860530853271;s:9:\"longitude\";d:-76.208503723145;}}i:3;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:21:\"WordCamp Philadelphia\";s:3:\"url\";s:38:\"https://2019.philadelphia.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2019-10-05 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Philadelphia\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.9552145;s:9:\"longitude\";d:-75.1636616;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:40:\"Network: Ask, Advise, Discuss, and Learn\";s:3:\"url\";s:55:\"https://www.meetup.com/WordPresshr/events/nqbntqyznbmb/\";s:6:\"meetup\";s:23:\"WordPress Hampton Roads\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPresshr/\";s:4:\"date\";s:19:\"2019-10-09 09:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Norfolk, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:36.860530853271;s:9:\"longitude\";d:-76.208503723145;}}i:5;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:40:\"Network: Ask, Advise, Discuss, and Learn\";s:3:\"url\";s:55:\"https://www.meetup.com/WordPresshr/events/nqbntqyzpbrb/\";s:6:\"meetup\";s:23:\"WordPress Hampton Roads\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPresshr/\";s:4:\"date\";s:19:\"2019-11-13 09:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Norfolk, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:36.860530853271;s:9:\"longitude\";d:-76.208503723145;}}}}','no'),(160,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1567137658','no'),(161,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News –  – WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Aug 2019 16:22:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.3-alpha-45905\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"People of WordPress: Amanda Rush\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/08/people-of-wordpress-amanda-rush/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Aug 2019 21:23:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7047\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"You’ve probably heard that WordPress is open source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories. Meet Amanda Rush from Augusta, Georgia, USA. Amanda Rush is a WordPress [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6543:\"\n<p><em>You’ve probably heard that WordPress is open source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Amanda Rush from Augusta, Georgia, USA.</strong></h2>\n\n\n\n<p>Amanda Rush is a WordPress advocate with a visual disability. She first started using computers in 1985, which enabled her to turn in homework to her sighted teachers. Screen reader technology for Windows was in its infancy then, so she worked in DOS almost exclusively.</p>\n\n\n\n<p>After graduating high school, Amanda went to college to study computer science, programming with DOS-based tools since compilers for Windows were still inaccessible. As part of her computer science course of study, she learned HTML which began her career in web development.</p>\n\n\n\n<h2>How Amanda got started with WordPress</h2>\n\n\n\n<p>Amanda began maintaining a personal website, and eventually began publishing her own content using LiveJournal. However, controlling the way the page around her content looked was hard, and she soon outgrew the hosted solution.</p>\n\n\n\n<p>So in 2005, Amanda bought customerservant.com, set up a very simple CMS for blogging, and started publishing there. She accepted the lack of design and content, and lack of easy customization because she wasn’t willing to code her own solution. Nor did she want to move to another hosted solution, as she liked being able to customize her own site, as well as publish content.</p>\n\n\n\n<h3><strong>Hebrew dates led her to WordPress</strong></h3>\n\n\n\n<p>At some point, Amanda was looking for an easy way to display the Hebrew dates alongside the Gregorian dates on her blog entries. Unfortunately, the blogging software she was using at the time, did not offer customization options at that level. She decided to research alternative solutions and came across a WordPress plugin that did just that.&nbsp;</p>\n\n\n\n<p>The fact that WordPress would not keep her locked into a visual editor, used themes to customize styling, and offered ways to mark up content, immediately appealed to Amanda. She decided to give it a go.</p>\n\n\n\n<h3><strong>Accessibility caused her to dive deeper</strong></h3>\n\n\n\n<p>When the software Amanda used at work became completely inaccessible, she started learning about WordPress. While she was learning about this new software, <a href=\"https://en.wikipedia.org/wiki/Web_2.0\">Web 2.0</a> was introduced. The lack of support for it in the screen reader she used meant that WordPress administration was completely inaccessible. To get anything done, Amanda needed to learn to find her way in WordPress’ file structure.</p>\n\n\n\n<p>Eventually Amanda started working as an independent contractor for the largest screen reader developer in the market, Freedom Scientific. She worked from home every day and hacked on WordPress after hours.</p>\n\n\n\n<p>Unfortunately Amanda hit a rough patch when her job at Freedom Scientific ended. Using her savings she undertook further studies for various Cisco and Red Hat certifications, only to discover that the required testing for these certifications were completely inaccessible. She could study all she wanted, but wasn’t able to receive grades to pass the courses.</p>\n\n\n\n<p>She lost her financial aid, her health took a turn for the worse, she was diagnosed with Lupus, and lost her apartment. Amanda relocated to Augusta where she had supportive friends who offered her a couch and a roof over her head.</p>\n\n\n\n<h3><strong>But Amanda refused to give up</strong></h3>\n\n\n\n<p>Amanda continued to hack WordPress through all of this. It was the only stable part of her life. She wanted to help make WordPress accessible for people with disabilities, and in 2012 joined the&nbsp; WordPress Accessibility Team. Shortly after that, she finally got her own place to live, and started thinking about what she was going to do with the rest of her working life.</p>\n\n\n\n<p>Listening to podcasts led her to take part in <a href=\"http://wordsesh.org/\">WordSesh</a>, which was delivered completely online and enabled Amanda to participate without needing to travel. She began to interact with WordPress people on Twitter, and continued to contribute to the community as part of the WordPress Accessibility Team. Things had finally started to pick up.</p>\n\n\n\n<h2><strong>Starting her own business</strong></h2>\n\n\n\n<p>In 2014, Amanda officially launched her own business, <a href=\"http://www.customerservant.com/\">Customer Servant Consultancy</a>. Since WordPress is open source, and becoming increasingly accessible, Amanda could modify WordPress to build whatever she wanted and not be at the mercy of web and application developers who know nothing about accessibility. And if she got stuck, she could tap into the community and its resources.</p>\n\n\n\n<p>Improving her circumstances and becoming more self-sufficient means Amanda was able to take back some control over her life in general. She was able to gain independence and create her own business despite being part of the blind community, which has an 80% unemployment rate.&nbsp;</p>\n\n\n\n<p>In her own words:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>We’re still fighting discrimination in the workplace, and we’re still fighting for equal access when it comes to the technology we use to do our jobs. But the beauty of WordPress and its community is that we can create opportunities for ourselves.</em></p><p><em>I urge my fellow blind community members to join me inside this wonderful thing called WordPress. Because it will change your lives if you let it.</em></p><cite>Amanda Rush, entrepreneur</cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo-1.jpg?fit=632%2C474&amp;ssl=1\" alt=\"\" class=\"wp-image-7026\" width=\"110\" height=\"83\" /></figure></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7047\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: July 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2019/08/the-month-in-wordpress-july-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Aug 2019 09:56:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7040\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:336:\"This month has been characterized by exciting plans and big announcements &#8211; read on to find out what they are and what it all means for the future of the WordPress project. WordCamp Asia Announced The inaugural WordCamp Asia will be in Bangkok, Thailand, on February 21-23, 2020. This will be the first regional WordCamp [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6983:\"\n<p>This month has been characterized by exciting plans and big announcements &#8211; read on to find out what they are and what it all means for the future of the WordPress project.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordCamp Asia Announced</h2>\n\n\n\n<p>The inaugural WordCamp Asia will be in Bangkok, Thailand, on February 21-23, 2020. This will be the first regional WordCamp in Asia and it comes after many years of discussions and planning. You can find more information about the event <a href=\"https://2020.asia.wordcamp.org/\">on their website</a> and subscribe to stay up to date with the latest information.</p>\n\n\n\n<p>This is the latest flagship event in the WordCamp program, following WordCamps Europe and US. Tickets <a href=\"https://2020.asia.wordcamp.org/tickets/\">are now on sale</a> and the <a href=\"https://2020.asia.wordcamp.org/call-for-speakers/\">call for speakers</a> is open. Want to get involved in WordCamp Asia? Keep an eye out for volunteer applications, or buy a micro sponsor ticket. You can also join the #wcasia channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a> for updates.</p>\n\n\n\n<h2>WordCamp US Planning Continues</h2>\n\n\n\n<p>The WordCamp US organizing team is excited to announce some new additions to this year’s WCUS in St. Louis, Missouri, on November 1-3, 2019. The first is that there will be an onsite KidsCamp: child-friendly lessons that introduce your young one(s) to the wonderful world of WordPress.&nbsp; <a href=\"https://2019.us.wordcamp.org/kidscamp/\">You can register your child for KidsCamp here</a>. In addition, free, onsite childcare will be provided at this year’s event &#8211; <a href=\"https://2019.us.wordcamp.org/child-care/\">you can sign up here</a>.</p>\n\n\n\n<p>Looking for further ways to get involved? The <a href=\"https://2019.us.wordcamp.org/call-for-volunteers-form/\">call for volunteers is now open</a>. For more information on WordCamp US, <a href=\"https://2019.us.wordcamp.org/\">please visit the event website</a>.</p>\n\n\n\n<h2>Exploring Updates to the WordPress User &amp; Developer Survey</h2>\n\n\n\n<p>To improve the annual WordPress User &amp; Developer Survey, <a href=\"https://make.wordpress.org/updates/2019/06/28/updates-to-the-wordpress-user-developer-survey/\">a call has been made</a> for updates and additional questions that can help us all better understand how people use WordPress.</p>\n\n\n\n<p>To improve the survey, contributor teams are suggesting topics and information that should be gathered to inform contributor work in 2020. Please add your feedback <a href=\"https://make.wordpress.org/updates/2019/06/28/updates-to-the-wordpress-user-developer-survey/\">to the post</a>.</p>\n\n\n\n<h2>Gutenberg Usability Testing Continues</h2>\n\n\n\n<p>Usability tests for Gutenberg continued through June 2019, and <a href=\"https://make.wordpress.org/test/2019/07/10/gutenberg-usability-testing-for-june-2019/\">insights from three recent videos were published</a> last month. This month’s test was similar to WordCamp Europe’s usability tests, and you can read more about those in the <a href=\"https://make.wordpress.org/test/2019/07/05/wceu-usability-test-results-part-one/\">part one</a> and <a href=\"https://make.wordpress.org/test/2019/07/09/wceu-usability-test-results-part-two/\">part two</a> posts. Please help by watching these videos and sharing your observations as comments on the relevant post.</p>\n\n\n\n<p>If you want to help with usability testing, you can also join the #research channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>, or you can write a test script that can be usability tested for Gutenberg.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/updates/2019/07/23/proposal-a-wordpress-advisory-board/\">A proposal has been made</a> to put together a nominated WordPress Advisory Board &#8211; this is certainly an exciting development for the project.</li><li>The Design team <a href=\"https://make.wordpress.org/design/2019/06/28/wceu-contribution-day-recap-design-team/\">reported on the work they did</a> at the WordCamp Europe Contributor Day.</li><li>The Theme Review Team <a href=\"https://make.wordpress.org/themes/2019/07/22/theme-sniffer-v1-1-0-and-wpthemereview-v0-2-0-release/\">has released updated versions</a> of their ThemeSniffer tool and coding standards.</li><li>The Security team <a href=\"https://make.wordpress.org/core/2019/07/29/should-security-fixes-continue-to-be-backported-to-very-old-versions-of-wordpress/\">is looking for feedback</a> on whether security fixes should continue to be backported to very old versions of WordPress. </li><li>The Design and Community teams have worked together to come up with <a href=\"https://make.wordpress.org/community/2019/07/29/proposal-clearer-wordcamp-and-wordpress-chapter-meetup-logo-guidelines/\">official guidelines for how WordCamp logos should be designed</a>.</li><li>The Core team has implemented <a href=\"https://make.wordpress.org/core/2019/07/12/php-coding-standards-changes/\">a few changes</a> to the PHP coding standards within WordPress Core.</li><li>The Community Team <a href=\"https://make.wordpress.org/community/2019/07/26/discussion-what-to-do-in-case-of-irreconcilable-differences/\">is looking for feedback</a> on a tough decision that needs to be made regarding the implementation of the licence expectations within the meetup program.</li><li>The Design team <a href=\"https://make.wordpress.org/design/2019/07/11/block-directory-in-wp-admin-concepts/\">has presented some designs</a> for a Block Directory within the WordPress dashboard.</li><li>A recent release of WordPress saw an increase in the minimum required version of PHP &#8211; the Core team is now looking at <a href=\"https://make.wordpress.org/core/2019/07/29/proposal-for-increasing-recommended-php-version-in-wordpress/\">increasing that minimum further</a>.</li><li>The Site Health feature was first introduced in the 5.1 release of WordPress, and at WordCamp Europe this year <a href=\"https://make.wordpress.org/core/2019/07/01/new-core-component-site-health/\">a new Core component for the feature was added to the project structure</a>.</li><li>The Community Team has posted some interesting data regarding <a href=\"https://make.wordpress.org/community/2019/07/29/numbers-in-the-netherlands/\">WordCamps in the Netherlands</a> over the last few years, as well as <a href=\"https://make.wordpress.org/community/2019/07/31/wordcamps-in-2018/\">WordCamps in 2018</a>.</li><li>The WordCamp Europe team <a href=\"https://2019.europe.wordcamp.org/2019/07/15/survey-results/\">released the results of the attendee survey</a> from this year&#8217;s event in Berlin.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7040\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"People of WordPress: Ugyen Dorji\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/07/people-of-wordpress-ugyen-dorji/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jul 2019 17:20:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7013\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:386:\"You&#8217;ve probably heard that WordPress is open source software, and may know that it&#8217;s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people&#8217;s lives for the better. This monthly series shares some of those lesser-known, amazing stories. Meet Ugyen Dorji from Bhutan Ugyen lives in Bhutan, a landlocked country [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Aditya Kane\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7264:\"\n<p><em>You&#8217;ve probably heard that WordPress is open source software, and may know that it&#8217;s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people&#8217;s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Ugyen Dorji from Bhutan</strong></h2>\n\n\n\n<p>Ugyen lives in <a href=\"https://en.wikipedia.org/wiki/Bhutan\">Bhutan</a>, a landlocked country situated between two giant neighbors, India to the south and China to the north. He works for ServMask Inc and is responsible for the Quality Assurance process for All-in-One WP Migration plugin. <br><br>He believes in the Buddhist teaching that “the most valuable service is one rendered to our fellow humans,” and his contributions demonstrates this through his WordPress translation work and multi-lingual support projects for WordPress.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?fit=632%2C474&amp;ssl=1\" alt=\"\" class=\"wp-image-7023\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?w=1728&amp;ssl=1 1728w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?resize=768%2C576&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" /><figcaption>Bhutanese contributors to the Dzongkha locale on WordPress Translation Day</figcaption></figure>\n\n\n\n<h2><strong>How Ugyen started his career with WordPress</strong></h2>\n\n\n\n<p>Back in 2016, Ugyen was looking for a new job after his former cloud company ran into financial difficulties.</p>\n\n\n\n<p>During one interview he was asked many questions about WordPress and, although he had a basic understanding of WordPress, he struggled to give detailed answers. After that interview he resolved to develop his skills and learn as much about WordPress as he could.&nbsp;</p>\n\n\n\n<p>A few months passed and he received a call from ServMask Inc, who had developed a plugin called All-in-One WP Migration. They offered him a position, fulfilling his wish to work with WordPress full-time. And because of that, Ugyen is now an active contributor to the WordPress community.</p>\n\n\n\n<h3><strong>WordCamp Bangkok 2018</strong></h3>\n\n\n\n<p>WordCamp Bangkok 2018 was a turning point event for Ugyen. WordCamps are a great opportunity to meet WordPress community members you don’t otherwise get to know, and he was able to attend his first WordCamp through the sponsorship of his company.</p>\n\n\n\n<p>The first day of WordCamp Bangkok was a Contributor Day, where people volunteer to work together to contribute to the development of WordPress. Ugyen joined the Community team to have conversations with WordPress users from all over the world. He was able to share his ideas for supporting new speakers, events and organizers to help build the WordPress community in places where it is not yet booming.</p>\n\n\n\n<p>During the main day of the event, Ugyen managed a photo booth for speakers, organizers, and attendees to capture their memories of WordCamp.&nbsp;He also got to take some time out to attend several presentations during the conference. What particularly stuck in Ugyen’s mind was learning that having a website content plan has been shown to lead to 100% growth in business development.</p>\n\n\n\n<h3>Co-Organizing<strong> Thimphu</strong>&#8216;s <strong>WordPress Meetup</strong></h3>\n\n\n\n<p>After attending WordCamp Bangkok 2018 as well as a local Meetup event, Ugyen decided to&nbsp;introduce WordPress to his home country and cities.&nbsp;</p>\n\n\n\n<p>As one of the WordPress Translation Day organizers, he realized that his local language, Dzongkha, was not as fully translated as other languages in the WordPress Core Translation. That is when Ugyen knew that he wanted to help build his local community. He organized Thimphu’s first WordPress Meetup to coincide with WordPress Translation Day 4, and it was a huge success!</p>\n\n\n\n<p>Like all WordPress Meetups, the Thimpu WordPress Meetup is an easygoing, volunteer-organized, non-profit meetup which covers everything related to WordPress. But it also keeps in mind the <a href=\"https://en.wikipedia.org/wiki/Gross_National_Happiness\">Bhutanese Gross National Happiness</a> four pillars by aiming to preserve and promote their unique culture and national language.&nbsp;</p>\n\n\n\n<h2><strong>Big dreams get accomplished one step at a time</strong></h2>\n\n\n\n<p>Ugyen has taken an active role in preserving his national language by encouraging his community to use WordPress, including Dzongkha bloggers, online Dzongkha news outlets, and government websites.</p>\n\n\n\n<p>And while Ugyen has only been actively involved in the community for a short period, he has contributed much to the WordPress community, including:</p>\n\n\n\n<ul><li>becoming a Translation Contributor for WordPress Core Translation for Dzongkha;</li><li>participating in the <a href=\"https://wptranslationday.org/\">Global WordPress Translation Day 4</a> Livestream and organizing team;</li><li>inviting WordPress Meetup Thimphu members and WordPress experts from other countries to join the <a href=\"https://wpbhutan.slack.com/\">local Slack instance</a>;</li><li>encouraging ServMask Inc. to become an event sponsor;</li><li>providing the Dzongkha Development Commission the opportunity to involve their language experts.</li></ul>\n\n\n\n<p>When it comes to WordPress, Ugyen particularly focuses on encouraging local and international language WordPress bloggers;&nbsp;helping startups succeed with WordPress;&nbsp;and sharing what he has learned from WordPress with his Bhutanese WordPress community.</p>\n\n\n\n<p>As a contributor, Ugyen hopes to accomplish even more for the Bhutan and Asian WordPress Communities. His dreams for his local community are big, including teaching more people about open source, hosting a local WordCamp, and helping to organize WordCamp Asia in 2020 &#8212; all while raising awareness of his community.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo-1.jpg?fit=632%2C474&amp;ssl=1\" alt=\"\" class=\"wp-image-7026\" width=\"110\" height=\"83\" /></figure></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7013\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: June 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2019/07/the-month-in-wordpress-june-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jul 2019 10:07:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7009\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"June has certainly been a busy month in the WordPress community — aside from holding the largest WordPress event ever, the project has hit a number of significant milestones and published some big announcements this past month. A Wrap for WordCamp Europe 2019 WordCamp Europe 2019 took place on June 20-22. It was the largest [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8174:\"\n<p>June has certainly been a busy month in the WordPress community — aside from holding the largest WordPress event ever, the project has hit a number of significant milestones and published some big announcements this past month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>A Wrap for WordCamp Europe 2019</h2>\n\n\n\n<p>WordCamp Europe 2019 took place on June 20-22. It was the largest WordPress event ever, with 3,260 tickets sold and 2,734 attendees. The attendees came from 97 different countries and 1,722 of them had never attended WordCamp Europe before.</p>\n\n\n\n<p>The event featured 60 speakers who delivered talks and workshops on a variety of topics over two conference days, most notably <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>’s keynote that included an update on the current status of WordPress Core development, along with a lively Q&amp;A session. The full session from the live stream is <a href=\"https://youtu.be/UE18IsncB7s?t=13033\">available to watch online</a>.</p>\n\n\n\n<p>For its eighth year, <a href=\"https://2019.europe.wordcamp.org/2019/06/25/wordcamp-europe-2020/\">WordCamp Europe will take place in Porto, Portugal</a>. The 2020 edition of the event will be held on June 4-6. If you would like to get involved with WordCamp Europe next year, fill out <a href=\"https://2020.europe.wordcamp.org/2019/06/22/call-for-organisers/\">the organizer application form</a>.&nbsp;</p>\n\n\n\n<h2>Proposal for XML Sitemaps in WordPress Core</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/06/12/xml-sitemaps-feature-project-proposal/\">A proposal this month</a> suggested bringing XML sitemap generation into WordPress Core. This is a feature that has traditionally been handled by plugins, which has resulted in many different implementations across different sites. It also means that many sites do not have XML sitemaps, which can be a problem because they are hugely important to having your site correctly indexed by search engines.</p>\n\n\n\n<p>The proposal details how core sitemaps would be structured and how the team would build them, as well as what aspects of WordPress would not be considered appropriate information to be included.</p>\n\n\n\n<p>Want to get involved in building this feature? Comment on <a href=\"https://make.wordpress.org/core/2019/06/12/xml-sitemaps-feature-project-proposal/\">the proposal</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Translation Milestone for the Spanish Community</h2>\n\n\n\n<p><a href=\"https://twitter.com/wp_es/status/1138015568563441665\">The WordPress community of Spain has worked hard</a> to make <a href=\"https://translate.wordpress.org/locale/es/\">the es_ES locale</a> the first in the world to fully localize all of WordPress Core along with all Meta projects, apps, and the top 200 plugins. This is made possible by having the largest translation team out of any locale, consisting of 2,951 individual contributors.</p>\n\n\n\n<p>Want to get involved in translating WordPress into our locale? Find your locale on <a href=\"https://translate.wordpress.org/\">the translation platform</a>, follow <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a>, and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.2.2 Maintenance Release</h2>\n\n\n\n<p>On June 18, <a href=\"https://wordpress.org/news/2019/06/wordpress-5-2-2-maintenance-release/\">v5.2.2 of WordPress was released</a> as a maintenance release, fixing 13 bugs and improving the Site Health feature that was first published in v5.2. If your site has not already been automatically updated to this version, you can <a href=\"https://wordpress.org/download/\">download the update</a> or manually check for updates in your WordPress dashboard. Thanks to <a href=\"https://profiles.wordpress.org/audrasjb/\">JB Audras</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, and <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> for co-leading this release, as well as the 30 other individuals who contributed to it.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Full End to End Tests for WordPress Core</h2>\n\n\n\n<p>On June 27, <a href=\"https://make.wordpress.org/core/2019/06/27/introducing-the-wordpress-e2e-tests/\">e2e (end to end) testing was introduced</a> to WordPress and included in the continuous integration pipeline. E2e testing, which has been successfully used by Gutenberg, is used to simulate real user scenarios and validate process flows. Currently, the setup requires <a href=\"https://docs.docker.com/install/\">Docker</a> to run, and a number of e2e test utilities are already available in the&nbsp; <a href=\"https://github.com/WordPress/gutenberg/tree/master/packages/e2e-test-utils/src\">@wordpress/e2e-test-utils</a> package, in the Gutenberg repository.&nbsp;</p>\n\n\n\n<p>Want to use this feature? The more tests that are added, the more stable future releases will be! Follow the <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-js channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Feature Packages from the Theme Review Team</h2>\n\n\n\n<p>Following a <a href=\"https://make.wordpress.org/themes/2019/06/07/proposal-theme-feature-repositories/\">proposal for theme feature repositories</a>, an <a href=\"https://make.wordpress.org/themes/2019/06/24/feature-packages-update/\">update to the features package was announced</a>. Two new packages have been created that require code review and testing. The first is an Autoload Package, a foundational package for theme developers who are not currently using Composer (although <a href=\"https://getcomposer.org/\">Composer</a> is recommended instead of this package). The second is a Customizer Section Button Package that allows theme authors to create a link/button to any URL.</p>\n\n\n\n<p>There are other proposed ideas for packages that require feedback and additional discussion. Want to add your suggestions and thoughts? Join the conversation on the <a href=\"https://make.wordpress.org/themes/2019/06/24/feature-packages-update/\">Theme Review team blog</a> and join the #themereview channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>Development continues on the Gutenberg project, with <a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\">the latest release</a> including layouts for the Columns block, Snackbar notices, markup improvements, and accessibility upgrades.</li><li>The Community team <a href=\"https://make.wordpress.org/community/2019/06/26/wordcamp-europe-2019-recap-of-community-team-activities-at-contributor-day-plans-for-the-future/\">published the results of their work</a> at the WordCamp Europe contributor day.</li><li>The Polyglots team <a href=\"https://make.wordpress.org/polyglots/2019/06/26/proposal-for-handling-pte-requests/\">has put together a proposal</a> for a new way to handle PTE requests.</li><li>This year’s recipient of the Kim Parsell Memorial Scholarship for WordCamp US <a href=\"https://wordpressfoundation.org/2019/2019-kim-parsell-memorial-scholarship-recipient-carol-gann/\">is Carol Gann</a>.</li><li>The Amurrio WordPress community <a href=\"http://wpamurrio.es/wordpress-amurrio-mega-meetup-i-edition/\">hosted their first “mega meetup”</a> &#8211; this is a great event format that bridges the gap between regular meetup event and WordCamp.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.2.2 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/06/wordpress-5-2-2-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jun 2019 18:14:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6993\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:348:\"WordPress 5.2.2 is now available! This maintenance release fixes 13 bugs and adds a little bit of polish to the Site Health feature&#160;that made its debut in 5.2. For more info, browse the&#160;full list of changes on Trac or check out the Version 5.2.2 documentation page. WordPress 5.2.2 is a short-cycle maintenance release. The next [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Mary Baum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3961:\"\n<p>WordPress 5.2.2 is now available! This maintenance release fixes 13 bugs and adds a little bit of polish to the Site Health feature&nbsp;<a href=\"https://wordpress.org/news/2019/05/jaco/\">that made its debut in 5.2</a>. </p>\n\n\n\n<p>For more info, browse the&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=5.2.2&amp;order=priority\">full list of changes on Trac</a> or check out <a href=\"https://wordpress.org/support/wordpress-version/version-5-2-2/\">the Version 5.2.2 documentation page.</a></p>\n\n\n\n<p>WordPress 5.2.2 is a short-cycle maintenance release. The next major release will be version 5.3; check <a href=\"https://make.wordpress.org/core/\">make.wordpress.org/core</a> for details as they happen.  </p>\n\n\n\n<p>You can&nbsp;download&nbsp;<a href=\"https://wordpress.org/download/\">WordPress 5.2.2</a>&nbsp;or visit&nbsp;<strong>Dashboard → Updates</strong>&nbsp;and click&nbsp;<strong>Update Now</strong>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/audrasjb/\">JB Audras</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> and <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> co-led this release, with invaluable guidance from our Executive Director, Josepha Haden Chomphosy, and contributions from 30 other contributors. Thank you to everyone who made this release possible!</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/jankimoradiya/\">Janki Moradiya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jitendrabanjara1991/\">jitendrabanjara1991</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shashank3105/\">Shashank Panchal</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">vaishalipanchal</a>, <a href=\"https://profiles.wordpress.org/vrimill/\">vrimill</a>, and <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6993\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"The Month in WordPress: May 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/06/the-month-in-wordpress-may-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Jun 2019 10:21:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6987\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:319:\"This month saw the 16th anniversary since the launch of the first release of WordPress. A significant milestone to be sure and one that speaks to the strength and stability of the project as a whole. In this anniversary month, we saw a new major release of WordPress, some exciting new development work, and a [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6602:\"\n<p>This month saw the 16th anniversary since <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">the launch of the first release of WordPress</a>. A significant milestone to be sure and one that speaks to the strength and stability of the project as a whole. In this anniversary month, we saw a new major release of WordPress, some exciting new development work, and a significant global event.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Release of WordPress 5.2</h2>\n\n\n\n<p>WordPress 5.2 “Jaco” <a href=\"https://wordpress.org/news/2019/05/jaco/\">was released on May 7</a> shipping some useful site management tools, such as the Site Health Check and PHP Error Protection, as well as a number of accessibility, privacy, and developer updates. You can read <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">the field guide for this release</a> for more detailed information about what was included and how it all works.<br></p>\n\n\n\n<p>327 individual volunteers contributed to the release. If you would like to be a part of that number for future releases, follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>A Successful WordPress Translation Day 4</h2>\n\n\n\n<p>WordPress Translation Day is a 24-hour event organised by <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team</a> where community members from all over the world come together to translate WordPress into their local languages. For the fourth edition held on 11 May, 183 brand new contributors joined the Polyglots team from 77 communities across 35 countries in Africa, Asia, Europe, North America, South America, and Oceania.<br></p>\n\n\n\n<p>While the WP Translation Day is a great time for focussed contributions to localizing WordPress, but these contributions can happen at any time of the year, so if you would like to help make WordPress available in your local language, follow <a href=\"https://make.wordpress.org/polyglots\">the Polyglots team blog</a> and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Updated Plugin Guidelines Proposal</h2>\n\n\n\n<p>The Plugins team <a href=\"https://make.wordpress.org/plugins/2019/05/14/proposal-to-modify-plugin-guidelines/\">has proposed some updates</a> to the guidelines for developers on the Plugin Directory. The majority of the proposed changes are intended to address significant issues faced by developers who do not speak English as a first language, making the Plugin DIrectory a more accessible and beneficial place for everyone.<br></p>\n\n\n\n<p>The proposal will be open for comments until late June, so the community is encouraged to get involved with commenting on them and the direction they will take the Plugin Directory. If you would like to be involved in this discussion, comment on <a href=\"https://make.wordpress.org/plugins/2019/05/14/proposal-to-modify-plugin-guidelines/\">the proposal</a> and join the #plugin review team in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Continued Gutenberg Development</h2>\n\n\n\n<p>Since the block editor was first released as part of WordPress Core in v5.0, development has continued in leaps and bounds with a new release every two weeks. <a href=\"https://make.wordpress.org/core/2019/05/29/whats-new-in-gutenberg-29th-may/\">The latest update</a> includes some great incremental improvements that will be merged into the 5.2.2 release of WordPress along with the other recent enhancements.<br></p>\n\n\n\n<p>In addition to the editor enhancements, work has been ongoing in the Gutenberg project to bring the block editing experience to the rest of the WordPress dashboard. This second phase of the project has been going well and <a href=\"https://make.wordpress.org/design/2019/05/31/gutenberg-phase-2-friday-design-update-20/\">the latest update</a> shows how much work has been done so far.<br></p>\n\n\n\n<p>In addition to that, the Block Library project that aims to bring a searchable library of available blocks right into the editor is deep in the planning phase with <a href=\"https://make.wordpress.org/design/2019/05/28/block-library-initial-explorations/\">a recent update</a> showing what direction the team is taking things.<br></p>\n\n\n\n<p>If you would like to get involved in planning and development of Gutenberg and the block editor, follow the <a href=\"https://make.wordpress.org/core/\">Core</a> and <a href=\"https://make.wordpress.org/design/\">Design</a> team blogs and join the #core, #design, and #core-editor channels in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The 5.2.2 release of WordPress <a href=\"https://make.wordpress.org/core/2019/05/28/5-2-2-release-agenda/\">is currently in development</a> with a planned release date of 13 June.</li><li>Version 2.1.1 of the WordPress Coding Standards <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/2.1.1\">has been released</a> containing seven small, but relevant fixes.</li><li>The Theme Review Team <a href=\"https://make.wordpress.org/themes/2019/05/07/trusted-authors-changes/\">have updated the details</a> of how the Trusted Authors Program works.</li><li><a href=\"https://make.wordpress.org/community/2019/05/29/who-wants-to-test-the-new-wordcamp-blocks/\">WordCamp-specific blocks have been launched for WordCamp sites</a> with organizers needing to sign up in order to test them out.</li><li>Continuing the growing trend of other platforms adopting the Gutenberg editor, it has now <a href=\"https://octobercms.com/plugin/reazzon-gutenberg\">been ported to a plugin for OctoberCMS</a>.</li><li>Version 3.0 of the popular WordPress development environment, Varying Vagrant Vagrants (VVV), <a href=\"https://varyingvagrantvagrants.org/blog/2019/05/15/vvv-3-0-0.html\">was released this month</a>.</li><li>The Community Team <a href=\"https://make.wordpress.org/community/2019/05/31/the-4-gets-in-wordpress-community-organizing/\">published some info</a> clarifying what organizers get (and don’t get) from being involved with their local communities. </li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em><br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6987\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.2.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/05/wordpress-5-2-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 May 2019 19:04:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"5.2.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6976\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:405:\"WordPress 5.2.1 is now available! This maintenance release fixes 33 bugs, including improvements to the block editor, accessibility, internationalization, and the Site Health feature introduced in 5.2. You can browse the&#160;full list of changes on Trac. WordPress 5.2.1 is a short-cycle maintenance release. Version 5.2.2 is expected to follow in approximately two weeks. You can&#160;download [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4923:\"\n<p>WordPress 5.2.1 is now available! This maintenance release fixes 33 bugs, including improvements to the block editor, accessibility, internationalization, and the Site Health feature <a href=\"https://wordpress.org/news/2019/05/jaco/\">introduced in 5.2</a>.</p>\n\n\n\n<p>You can browse the&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=5.2.1&amp;order=priority\">full list of changes on Trac</a>.</p>\n\n\n\n<p>WordPress 5.2.1 is a short-cycle maintenance release. <a href=\"https://core.trac.wordpress.org/query?milestone=5.2.2\">Version 5.2.2</a> is expected to follow in approximately two weeks.</p>\n\n\n\n<p>You can&nbsp;download <a href=\"https://wordpress.org/download/\">WordPress 5.2.1</a>&nbsp;or visit <strong>Dashboard → Updates</strong> and click&nbsp;<strong>Update Now</strong>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>Jonathan Desrosiers and William Earnhardt co-led this release, with contributions from 52 other contributors. Thank you to everyone that made this release possible!</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey &#8220;Rarst&#8221; Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/anischarolia/\">anischarolia</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/chesio/\">chesio</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/daxelrod/\">daxelrod</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/odminstudios/\">Dima</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/edocev/\">Emil Dotsev</a>, <a href=\"https://profiles.wordpress.org/sachyya-sachet/\">ghoul</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Grzegorz (Greg) Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/jrf/\">jrf</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mikengarrett/\">MikeNGarrett</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/onlanka/\">onlanka</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">paragoninitiativeenterprises</a>, <a href=\"https://profiles.wordpress.org/parkcityj/\">parkcityj</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tonybogdanov/\">tonybogdanov</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, and <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6976\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Tomorrow is WordPress Translation Day 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/news/2019/05/tomorrow-is-wordpress-translation-day-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 May 2019 09:17:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:13:\"Documentation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6961\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"The fourth edition of WordPress translation day is coming up on Saturday 11 May 2019: tomorrow! Get ready for a 24-hour, global marathon dedicated to localizing the WordPress platform and ecosystem. This event takes place both online and in physical locations across the world, so you can join no matter where you are! The WordPress [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3747:\"\n<p><em>The fourth edition of WordPress translation day is coming up on Saturday 11 May 2019: tomorrow! Get ready for a 24-hour, global marathon dedicated to localizing the WordPress platform and ecosystem.</em> <em>This event takes place both online and in physical locations across the world, so you can join no matter where you are! </em></p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/polyglots/\">WordPress Polyglots Team</a> has a mission to translate and make available the software’s features into as many languages as possible. As WordPress powers more than 33% of websites, people from across the world use it in their daily life. That means there is a lot that needs translating, and into many different languages. </p>\n\n\n\n<p>On 11 May 2019, from 00:00 UTC until 23:59 UTC, <a href=\"https://wptranslationday.org/\">WordPress Translation Day</a> aims to celebrate the thousands of volunteers who contribute to translation and internalization. The event is also an opportunity for encouraging more people to get involved and help increase the availability of themes and plugins in different languages.</p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>&#8220;At the time of the last event in 2017, WordPress was being translated into 178 languages, we have now reached the 200 mark!&#8221;</p><cite>WPtranslationday.org</cite></blockquote></figure>\n\n\n\n<h2>What happens on WordPress Translation Day?</h2>\n\n\n\n<p>There are a number of <a href=\"https://wptranslationday.org/the-local-events/\">local meetings all over the world</a>, as well as online talks by people from the WordPress community. More than 700 people from around the world took part in past WordPress Translation Days, and everyone welcome to join in this time around!</p>\n\n\n\n<p>Everyone is welcome to join the event to help translate and localize WordPress, no matter their level of experience. A lot is happening on the day, so join in and you will learn how to through online sessions!</p>\n\n\n\n<h3>What can you expect?</h3>\n\n\n\n<ul><li><strong>Live online training</strong>: Tutorials in different languages focused on translation and <em>localization</em>, or l10n, of WordPress. These are streamed in multiple languages</li><li><strong>Localization sessions</strong>: General instruction and specifics for particular areas and languages. These sessions are streamed in multiple languages.</li><li><strong>Internalization sessions</strong>: Tutorials about optimizing the code to ease localization processes, also called <em>internationalization</em> or i18n. These sessions are streamed in English.</li><li><strong>Local events</strong>: Polyglot contributors will gather around the world for socializing, discussing, and translating together.</li><li><strong>Remote events</strong>: Translation teams that cannot gather physically, will connect remotely. They will be available for training, mentoring, and supporting new contributors. They will also engage in &#8220;translating marathons&#8221;, in which existing teams translate as many strings as they can!</li></ul>\n\n\n\n<p>A number of experienced WordPress translators and internationalization experts are part of the line-up for the livestream, joined by some first time contributors. </p>\n\n\n\n<p>Whether you have or haven&#8217;t contributed to the Polyglots before, you can join in for WordPress Translation Day. Learn more about both local and online events and stay updated through the website and social media. </p>\n\n\n\n<ul><li><a href=\"https://wptranslationday.org/\">WordPress Translation Day website</a></li><li><a href=\"https://twitter.com/translatewp\">WordPress Translation Day Twitter</a></li><li><a href=\"https://www.facebook.com/WPTranslationDay/\">WordPress Translation Day Facebook</a></li></ul>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6961\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"WordPress 5.2 “Jaco”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2019/05/jaco/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 May 2019 21:03:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6925\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:426:\"Version 5.2 of WordPress is available for download or update in your WordPress dashboard. New features in this update make it easier than ever to fix your site if something goes wrong. There are even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:32070:\"\n<h2 style=\"text-align:center\">Keeping Sites Safer</h2>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?fit=632%2C500&amp;ssl=1\" alt=\"\" class=\"wp-image-6926\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?w=1206&amp;ssl=1 1206w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?resize=300%2C237&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?resize=768%2C608&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?resize=1024%2C810&amp;ssl=1 1024w\" sizes=\"(max-width: 632px) 100vw, 632px\" /></figure>\n\n\n\n<p>Version 5.2 of WordPress, named “Jaco” in honor of renowned and revolutionary jazz bassist Jaco Pastorius, is available for download or update in your WordPress dashboard. New features in this update make it easier than ever to fix your site if something goes wrong.</p>\n\n\n\n<p>There are even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3>Site Health Check</h3>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/05/about_site-health.png?resize=205%2C143&#038;ssl=1\" alt=\"\" class=\"wp-image-6927\" width=\"205\" height=\"143\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2019/05/about_site-health.png?w=609&amp;ssl=1 609w, https://i2.wp.com/wordpress.org/news/files/2019/05/about_site-health.png?resize=300%2C210&amp;ssl=1 300w\" sizes=\"(max-width: 205px) 100vw, 205px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>Building on the <a href=\"https://wordpress.org/news/2019/02/betty/\">Site Health</a> features introduced in 5.1, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers.</p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h3>PHP Error Protection</h3>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_error-protection.png?resize=202%2C228&#038;ssl=1\" alt=\"\" class=\"wp-image-6930\" width=\"202\" height=\"228\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_error-protection.png?w=487&amp;ssl=1 487w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_error-protection.png?resize=267%2C300&amp;ssl=1 267w\" sizes=\"(max-width: 202px) 100vw, 202px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>This administrator-focused update will let you safely fix or manage fatal errors without requiring developer time. It features better handling of the so-called “white screen of death,” and a way to enter recovery mode, &nbsp;which pauses error-causing plugins or themes.</p>\n\n\n\n<div style=\"height:79px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Improvements for Everyone</h2>\n\n\n\n<h3>Accessibility Updates</h3>\n\n\n\n<p>A number of changes work together to improve contextual awareness and keyboard navigation flow for those using screen readers and other assistive technologies.</p>\n\n\n\n<h3>New Dashboard Icons</h3>\n\n\n\n<p>Thirteen new icons including Instagram, a suite of icons for BuddyPress, and rotated Earth icons for global inclusion. Find them in the Dashboard and have some fun!</p>\n\n\n\n<h3>Plugin Compatibility Checks</h3>\n\n\n\n<p>WordPress will now automatically determine if your site’s version of PHP is compatible with installed plugins. If the plugin requires a higher version of PHP than your site currently uses, WordPress will not allow you to activate it, preventing potential compatibility errors.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Developer Happiness</h2>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/03/26/coding-standards-updates-for-php-5-6/\"><strong>PHP Version Bump</strong></a><strong> </strong></p>\n\n\n\n<p>The minimum supported PHP version is now 5.6.20. As of WordPress 5.2*, themes and plugins can safely take advantage of namespaces, anonymous functions, and more!</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/04/24/developer-focused-privacy-updates-in-5-2/\"><strong>Privacy Updates</strong></a><strong> </strong></p>\n\n\n\n<p>A new theme page template, a conditional function, and two CSS classes make designing and customizing the Privacy Policy page easier.</p>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<p><strong><a href=\"https://make.wordpress.org/core/2019/04/24/miscellaneous-developer-updates-in-5-2/\">New Body Hook</a> </strong></p>\n\n\n\n<p>5.2 introduces a wp_body_open hook, which lets themes support injecting code right at the beginning of the &lt;body&gt; element.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/03/25/building-javascript/\"><strong>Building JavaScript</strong></a></p>\n\n\n\n<p>With the addition of webpack and Babel configurations in the wordpress/scripts package, developers won&#8217;t have to worry about setting up complex build tools to write modern JavaScript.</p>\n</div>\n</div>\n\n\n\n<p><em>*If you are running an old version of PHP (less than 5.6.20), <a href=\"https://wordpress.org/support/update-php/\">update your PHP</a> before installing 5.2.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by&nbsp;<a href=\"http://ma.tt/\">Matt Mullenweg</a>, <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a>, and&nbsp;<a href=\"https://pento.net/\">Gary Pendergast</a>. They were graciously supported by 327 generous volunteer contributors. Load a Jaco Pastorius playlist on your favorite music service and check out some of their profiles:</p>\n\n\n<a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamsoucie/\">Adam Soucie</a>, <a href=\"https://profiles.wordpress.org/oztaser/\">Adil &#214;ztaşer</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/aldavigdis/\">Alda Vigd&#237;s</a>, <a href=\"https://profiles.wordpress.org/alexdenning/\">Alex Denning</a>, <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/viper007bond/\">Alex Mills</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/lexiqueen/\">Alexis</a>, <a href=\"https://profiles.wordpress.org/alexislloyd/\">Alexis Lloyd</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">andraganescu</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/euthelup/\">Andrei Lupu</a>, <a href=\"https://profiles.wordpress.org/aandrewdixon/\">Andrew Dixon</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">Andrés Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/aniketpatel/\">Aniket Patel</a>, <a href=\"https://profiles.wordpress.org/anischarolia/\">anischarolia</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/vanyukov/\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/avillegasn/\">Antonio Villegas</a>, <a href=\"https://profiles.wordpress.org/antonypuckey/\">antonypuckey</a>, <a href=\"https://profiles.wordpress.org/arena/\">arena</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/wpboss/\">Aslam Shekh</a>, <a href=\"https://profiles.wordpress.org/axaak/\">axaak</a>, <a href=\"https://profiles.wordpress.org/pixolin/\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/britner/\">Ben Ritner - Kadence WP</a>, <a href=\"https://profiles.wordpress.org/bfintal/\">Benjamin Intal</a>, <a href=\"https://profiles.wordpress.org/billerickson/\">Bill Erickson</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson</a>, <a href=\"https://profiles.wordpress.org/bodohugobarwich/\">Bodo (Hugo) Barwich</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chiaralovelaces/\">Chiara Magnani</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/dswebsme/\">D.S. Webster</a>, <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danieltj/\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier</a>, <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a>, <a href=\"https://profiles.wordpress.org/davefx/\">DaveFX</a>, <a href=\"https://profiles.wordpress.org/davetgreen/\">davetgreen</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/david.binda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dgroddick/\">David Roddick</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/daxelrod/\">daxelrod</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/valendesigns/\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30/\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/designsimply/\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dhanukanuwan/\">Dhanukanuwan</a>, <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane</a>, <a href=\"https://profiles.wordpress.org/diegoreymendez/\">diegoreymendez</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/odminstudios/\">Dima</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency/\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/iamdmitrymayorov/\">Dmitry Mayorov</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsifford/\">dsifford</a>, <a href=\"https://profiles.wordpress.org/seedsca/\">EcoTechie</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">Eduardo Toledo</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/edocev/\">Emil Dotsev</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">fabiankaegy</a>, <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a>, <a href=\"https://profiles.wordpress.org/parsmizban/\">Farhad Sakhaei</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/peaceablewhale/\">Franklin Tse</a>, <a href=\"https://profiles.wordpress.org/fuegas/\">Fuegas</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/sachyya-sachet/\">ghoul</a>, <a href=\"https://profiles.wordpress.org/girishpanchal/\">Girish Panchal</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Grzegorz Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a>, <a href=\"https://profiles.wordpress.org/gutendev/\">GutenDev <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/270d.png\" alt=\"✍\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/3299.png\" alt=\"㊙\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></a>, <a href=\"https://profiles.wordpress.org/gwwar/\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hannahmalcolm/\">Hannah Malcolm</a>, <a href=\"https://profiles.wordpress.org/hardik-amipara/\">Hardik Amipara</a>, <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a>, <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a>, <a href=\"https://profiles.wordpress.org/henrywright-1/\">Henry</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/ryanshoover/\">Hoover</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ice9js/\">ice9js</a>, <a href=\"https://profiles.wordpress.org/zinigor/\">Igor Zinovyev</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/ixium/\">Ixium</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakeparis/\">jakeparis</a>, <a href=\"https://profiles.wordpress.org/cc0a/\">James</a>, <a href=\"https://profiles.wordpress.org/janak007/\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/jankimoradiya/\">Janki Moradiya</a>, <a href=\"https://profiles.wordpress.org/jarred-kennedy/\">Jarred Kennedy</a>, <a href=\"https://profiles.wordpress.org/vengisss/\">Javier Villanueva</a>, <a href=\"https://profiles.wordpress.org/jayupadhyay01/\">Jay Upadhyay</a>, <a href=\"https://profiles.wordpress.org/jaydeep-rami/\">Jaydip Rami</a>, <a href=\"https://profiles.wordpress.org/parkcityj/\">Jaye Simons</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/jdeeburke/\">jdeeburke</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/cheffheid/\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/miss_jwo/\">Jenny Wong</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/endocreative/\">Jeremy Green</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jitendrabanjara1991/\">jitendrabanjara1991</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/j-falk/\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathandejong/\">Jonathandejong</a>, <a href=\"https://profiles.wordpress.org/joneiseman/\">joneiseman</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnybojangles/\">jonnybojangles</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a>, <a href=\"https://profiles.wordpress.org/koke/\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/keraweb/\">Jory Hogeveen</a>, <a href=\"https://profiles.wordpress.org/jcastaneda/\">Jose Castaneda</a>, <a href=\"https://profiles.wordpress.org/josephwa/\">josephwa</a>, <a href=\"https://profiles.wordpress.org/builtbynorthby/\">Josh Feck</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jplojohn/\">jplo</a>, <a href=\"https://profiles.wordpress.org/jrtashjian/\">JR Tashjian</a>, <a href=\"https://profiles.wordpress.org/jrf/\">jrf</a>, <a href=\"https://profiles.wordpress.org/juiiee8487/\">Juhi Patel</a>, <a href=\"https://profiles.wordpress.org/juliarrr/\">juliarrr</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kamataryo/\">KamataRyo</a>, <a href=\"https://profiles.wordpress.org/karinedo/\">Karine Do</a>, <a href=\"https://profiles.wordpress.org/katyatina/\">Katyatina</a>, <a href=\"https://profiles.wordpress.org/kelin1003/\">Kelin Chauhan</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/itzmekhokan/\">Khokan Sardar</a>, <a href=\"https://profiles.wordpress.org/killua99/\">killua99</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/olein/\">Koji Kuno</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/codemascot/\">Kʜᴀɴ (ಠ_ಠ)</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lkraav/\">lkraav</a>, <a href=\"https://profiles.wordpress.org/lovingboth/\">lovingboth</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lgedeon/\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway/\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">Maciej Palmowski</a>, <a href=\"https://profiles.wordpress.org/maedahbatool/\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/travel_girl/\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/malae/\">Malae</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/robobot3000/\">Marcin</a>, <a href=\"https://profiles.wordpress.org/iworks/\">Marcin Pietrzak</a>, <a href=\"https://profiles.wordpress.org/marcofernandes/\">Marco Fernandes</a>, <a href=\"https://profiles.wordpress.org/marco-peralta/\">Marco Peralta</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">marekhrabe</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/mbelchev/\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markcallen/\">markcallen</a>, <a href=\"https://profiles.wordpress.org/mechter/\">Markus Echterhoff</a>, <a href=\"https://profiles.wordpress.org/m-e-h/\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/mattnyeus/\">mattnyeus</a>, <a href=\"https://profiles.wordpress.org/mdwolinski/\">mdwolinski</a>, <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mheikkila/\">mheikkila</a>, <a href=\"https://profiles.wordpress.org/wpscholar/\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/michelleweber/\">michelleweber</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mmtr86/\">Miguel Torres</a>, <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mauteri/\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel [WPLib Box project lead]</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeselander/\">Mike Selander</a>, <a href=\"https://profiles.wordpress.org/mikengarrett/\">MikeNGarrett</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">mirka</a>, <a href=\"https://profiles.wordpress.org/lord_viper/\">Mobin Ghasempoor</a>, <a href=\"https://profiles.wordpress.org/mohadeseghasemi/\">Mohadese Ghasemi</a>, <a href=\"https://profiles.wordpress.org/saimonh/\">Mohammed Saimon</a>, <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a>, <a href=\"https://profiles.wordpress.org/mmuhsin/\">Muhammad Muhsin</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/m_uysl/\">Mustafa Uysal</a>, <a href=\"https://profiles.wordpress.org/mzorz/\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nfmohit/\">Nahid</a>, <a href=\"https://profiles.wordpress.org/naoki0h/\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a>, <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/neobabis/\">Neokazis Charalampos</a>, <a href=\"https://profiles.wordpress.org/modernnerd/\">Nick Cernis</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielsdeblaauw/\">Niels de Blaauw</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nnikolov/\">Nikolay Nikolov</a>, <a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/ninio/\">ninio</a>, <a href=\"https://profiles.wordpress.org/notnownikki/\">notnownikki</a>, <a href=\"https://profiles.wordpress.org/bulletdigital/\">Oliver Sadler</a>, <a href=\"https://profiles.wordpress.org/onlanka/\">onlanka</a>, <a href=\"https://profiles.wordpress.org/pandelisz/\">pandelisz</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a>, <a href=\"https://profiles.wordpress.org/peterbooker/\">Peter Booker</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pfiled/\">pfiled</a>, <a href=\"https://profiles.wordpress.org/pilou69/\">pilou69</a>, <a href=\"https://profiles.wordpress.org/pranalipatel/\">Pranali Patel</a>, <a href=\"https://profiles.wordpress.org/pratikthink/\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pratikkry/\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/psealock/\">psealock</a>, <a href=\"https://profiles.wordpress.org/punit5658/\">Punit Patel</a>, <a href=\"https://profiles.wordpress.org/bamadesigner/\">Rachel Cherry</a>, <a href=\"https://profiles.wordpress.org/rahmon/\">Rahmon</a>, <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramizmanked/\">Ramiz Manked</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat Khaziev</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rsusanto/\">Rudy Susanto</a>, <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a>, <a href=\"https://profiles.wordpress.org/saeedfard/\">Saeed Fard</a>, <a href=\"https://profiles.wordpress.org/salcode/\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/salar6990/\">Salar Gholizadeh</a>, <a href=\"https://profiles.wordpress.org/samanehmirrajabi/\">Samaneh Mirrajabi</a>, <a href=\"https://profiles.wordpress.org/samikeijonen/\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/elhardoum/\">Samuel Elh</a>, <a href=\"https://profiles.wordpress.org/sgarza/\">Santiago Garza</a>, <a href=\"https://profiles.wordpress.org/saracope/\">Sara Cope</a>, <a href=\"https://profiles.wordpress.org/saracup/\">saracup</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Scott Arciszewski</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/ebrahimzadeh/\">Sekineh Ebrahimzadeh</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/sgastard/\">sgastard</a>, <a href=\"https://profiles.wordpress.org/sharifkiberu/\">sharifkiberu</a>, <a href=\"https://profiles.wordpress.org/shashank3105/\">Shashank Panchal</a>, <a href=\"https://profiles.wordpress.org/shazdeh/\">shazdeh</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/sky_76/\">sky_76</a>, <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sudar/\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/sudhiryadav/\">Sudhir Yadav</a>, <a href=\"https://profiles.wordpress.org/szepeviktor/\">szepe.viktor</a>, <a href=\"https://profiles.wordpress.org/miyauchi/\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/themonic/\">Themonic</a>, <a href=\"https://profiles.wordpress.org/thomstark/\">thomstark</a>, <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/thrijith/\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hedgefield</a>, <a href=\"https://profiles.wordpress.org/timwright12/\">Tim Wright</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/ohiosierra/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tmdesigned/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tomharrigan/\">TomHarrigan</a>, <a href=\"https://profiles.wordpress.org/tonybogdanov/\">tonybogdanov</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/liljimmi/\">Tracy Levesque</a>, <a href=\"https://profiles.wordpress.org/umang7/\">Umang Bhanvadia</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/vrimill/\">vrimill</a>, <a href=\"https://profiles.wordpress.org/webfactory/\">WebFactory</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a>, <a href=\"https://profiles.wordpress.org/bahia0019/\">William \'Bahia\' Bay</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/willscrlt/\">Willscrlt</a>, <a href=\"https://profiles.wordpress.org/wolly/\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wrwrwr0/\">wrwrwr0</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, and <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a>.\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Also, many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time or since the first release. These releases are more successful for their efforts!</p>\n\n\n\n<p>If you want learn more about volunteering with WordPress, check out&nbsp;<a href=\"https://make.wordpress.org/\">Make WordPress</a>&nbsp;or the&nbsp;<a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6925\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.2 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2019/05/wordpress-5-2-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 May 2019 16:17:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6914\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:326:\"The second release candidate for WordPress 5.2 is now available! WordPress 5.2 will be released on Tuesday, May 7, but we need your help to get there—if you haven’t tried 5.2 yet, now is the time! There are two ways to test the WordPress 5.2 release candidate: try the WordPress Beta Tester plugin (you’ll want [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2472:\"\n<p>The second release candidate for WordPress 5.2 is now available!</p>\n\n\n\n<p>WordPress 5.2 will be released on <strong><a href=\"https://make.wordpress.org/core/5-2/\">Tuesday, May 7</a></strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.2 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.2 release candidate: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.2-RC2.zip\">download the release candidate here</a> (zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.2, please see the <a href=\"https://wordpress.org/news/2019/04/wordpress-5-2-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>This release includes the final About page design. It also contains fixes for:</p>\n\n\n\n<ul><li>Proper translation of the recovery mode notification emails (#47093).</li><li>Improvements to the way Site Health works with multisite installs (#47084).</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.2 and update the <em>Tested up to</em> version in the readme to 5.2. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The&nbsp;<a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">WordPress 5.2 Field Guide</a>&nbsp;has also been published, which details the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>It&#8217;s the start of May<br>and the release is coming.<br>We all give a cheer!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6914\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 29 Aug 2019 16:00:58 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 20 Aug 2019 16:22:28 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(162,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1567137658','no'),(163,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1567094458','no'),(578,'boldgrid_inspirations_previous_version','2.0.6','no'),(193,'boldgrid_mobile_ratio','0:1','no'),(580,'boldgrid_reseller','a:11:{s:19:\"reseller_identifier\";s:3:\"IMH\";s:14:\"reseller_title\";s:16:\"InMotion Hosting\";s:17:\"reseller_logo_url\";s:78:\"./wp-content/plugins/boldgrid-inspirations/assets/images/wordpressinmotion.png\";s:20:\"reseller_website_url\";s:32:\"https://www.inmotionhosting.com/\";s:20:\"reseller_support_url\";s:52:\"http://www.inmotionhosting.com/support/edu/boldgrid/\";s:16:\"reseller_amp_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:14:\"reseller_email\";s:27:\"support@inmotionhosting.com\";s:14:\"reseller_phone\";s:14:\"1-888-321-4678\";s:16:\"reseller_css_url\";s:71:\"/wp-content/plugins/boldgrid-inspirations/assets/css/boldgrid-login.css\";s:17:\"reseller_coin_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:20:\"reseller_brand_login\";b:1;}','no'),(178,'boldgrid_api_key','d3589656bedc2351ea246ce8f6bf3cd3','no'),(179,'boldgrid_site_hash','9dada5b411f127e06cfdfd132367e0bb','no'),(181,'_site_transient_timeout_bg_license_data','1567180883','no'),(182,'_site_transient_bg_license_data','O:8:\"stdClass\":5:{s:3:\"key\";s:64:\"Cq+NIMLq2huFxHNQpjHgfR/6k6ROutlRRlETFcxvaKGM4b3jLNg+ULo5kE0dgXWV\";s:6:\"cipher\";s:11:\"AES-128-CBC\";s:2:\"iv\";s:42:\"%B3%1D%BD%07%F6%ADY%E5%C4C%C9%F7%2Ax%EE%3B\";s:4:\"data\";s:536:\"e5A2UsKVarfj4rVCI7R0uI1LCfelzEu1bIuW66ayHBovzI2VNCR4lfvlCinQze1DYf5bV/Gv4o8+sJ+BQUcBFwYbDEDZL9NXvO0kgxOn6xaUw4eVvK7OaDZzeQQjMJN4uIY51i/wlyT5trCk+1d/5jrarkCM2I+C83GWz4NstFnAu8H11yVghmUrJ3KqOBAj+pxDBH7+xbXvrF/Tx1F/vyYi6gKLDTeMDiFhdaPEOeuH/3Htb+WnXNAIQNITFlK4ogNfW8yaFUeWf5KweFovB18p8RSzRK8N4qaK5Ae1PuRLHtyT/DIfADtRXS8SsLHb6wyFCy3nAml1kM6TiLwBqSdP26X1L8SXFJLnzZsarc+B3ES+HJ4+XKNZ3iSq9cdLISyAlS4L2f+TrwObO8aDfKSgyeT3AzawjAwYWvE9HO9H4/dWt6HUQN4JYPUlVJv+EC61hrInmDqhVWZ6MJKxzt6lxFE8mD5+nK+kRT77hZcMUHg4rWBr3KOeFYNcchfym+Ef3r6NpinfPkeKAYrQrg==\";s:7:\"version\";i:2;}','no'),(183,'boldgrid_asset','a:3:{s:6:\"plugin\";a:0:{}s:5:\"theme\";a:0:{}s:5:\"image\";a:18:{i:10;a:16:{s:8:\"asset_id\";s:6:\"853576\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:107:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/d059a2ca-53d6b1-peshkov150600019.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 16:14:10\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:36;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"41023467\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:11;a:16:{s:8:\"asset_id\";s:6:\"476625\";s:9:\"coin_cost\";N;s:4:\"name\";s:113:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/vacation-design-imhwpb-mqabhwebuwl1x5u.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 16:14:12\";s:11:\"attribution\";s:254:\"{\"license\":\"4\",\"author_username\":\"Scott Webb\",\"author_url\":\"https:\\/\\/unsplash.com\\/@scottwebb\",\"image_homepage\":\"https:\\/\\/images.unsplash.com\\/photo-1430417934865-589b63ad5c00?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&s=28d58c1e24062774ef6537318e1aaafd\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:40;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:12;a:16:{s:8:\"asset_id\";s:6:\"850372\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:114:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/7c53e901-55cfa000-axelbueckert141000039.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 16:59:12\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:97;s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"450\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"32757992\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:13;a:16:{s:8:\"asset_id\";s:6:\"849725\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:111:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/4eb7e26f-71280d42-konradbak131200112.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 16:59:13\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:98;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"321\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"24607005\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:14;a:16:{s:8:\"asset_id\";s:6:\"849885\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:113:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/049815ef-94b585b1-stockbroker141101204.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 16:59:13\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:99;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"33527046\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:15;a:16:{s:8:\"asset_id\";s:6:\"849724\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:112:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/1e90ba79-43556005-georgerudy150600236.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 16:59:14\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:100;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"40642389\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:16;a:16:{s:8:\"asset_id\";s:6:\"849723\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:111:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/51c7c506-4f8fcc-pressmaster141000597.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 16:59:14\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:101;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"32804813\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:17;a:16:{s:8:\"asset_id\";s:6:\"849880\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:114:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/ad93b136-8e9c904c-gstockstudio150600485.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 16:59:15\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:102;s:5:\"width\";s:3:\"299\";s:6:\"height\";s:3:\"450\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"41229615\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:18;a:16:{s:8:\"asset_id\";s:6:\"849729\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:114:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/4674c4aa-59f7fe34-gstockstudio150500009.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 16:59:15\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:103;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"299\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"39500622\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:19;a:16:{s:8:\"asset_id\";s:6:\"849720\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:114:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/b5e9919d-e9d9171c-gstockstudio150700502.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 16:59:16\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:104;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"299\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"43008673\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:20;a:16:{s:8:\"asset_id\";s:6:\"849765\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:111:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/9cbb82bc-34bee842-dolgachov150501462.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 16:59:16\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:105;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"40250649\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:21;a:16:{s:8:\"asset_id\";s:6:\"780384\";s:9:\"coin_cost\";N;s:4:\"name\";s:162:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJxTFRfUnEtMnRrLzEyMDB4NDgw-imhwpb-ntmiz347g2anmcc.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 17:22:00\";s:11:\"attribution\";s:169:\"{\"license\":\"10\",\"author_username\":\"Fr\\u00e9 Sonneveld\",\"author_url\":\"http:\\/\\/unsplash.com\\/@fresonneveld\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/2qLT_Rq-2tk\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:174;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:22;a:16:{s:8:\"asset_id\";s:6:\"849727\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:112:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/0fc679-9066586a-gstockstudio150700496.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 17:22:01\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:175;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"299\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"43008669\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:23;a:16:{s:8:\"asset_id\";s:6:\"849731\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:114:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/94588391-afa5c88c-vadymvdrobot150700272.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 17:22:01\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:176;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"42061520\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:24;a:16:{s:8:\"asset_id\";s:6:\"849721\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:116:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/e64e81a3-b99b28eb-katiemartynova150400014.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 17:22:02\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:177;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"39275689\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:25;a:16:{s:8:\"asset_id\";s:6:\"849719\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:108:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/64ed5a93-faf7b326-piksel150600102.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 17:22:02\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:178;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"41624253\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:26;a:16:{s:8:\"asset_id\";s:6:\"849791\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:111:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/5c7a133b-fe7e0227-dolgachov141000278.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 17:22:03\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:179;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"32106228\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:27;a:16:{s:8:\"asset_id\";s:6:\"849722\";s:9:\"coin_cost\";s:1:\"1\";s:4:\"name\";s:114:\"/home/buildi27/dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/c97e1305-d9878181-gpointstudio150600489.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2019-08-29 17:22:03\";s:11:\"attribution\";N;s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:180;s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"300\";s:17:\"image_provider_id\";s:1:\"5\";s:16:\"id_from_provider\";s:8:\"41557288\";s:11:\"orientation\";N;s:10:\"image_size\";s:4:\"blog\";s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}}}','yes'),(184,'boldgrid_inspirations_current_version','2.1.0','no'),(185,'boldgrid_inspirations_redirect','1567095208','yes'),(186,'_site_transient_timeout_boldgrid_backup_premium_version_data','1567123285','no'),(187,'_site_transient_boldgrid_backup_premium_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:23:\"BoldGrid Backup Premium\";s:7:\"version\";s:5:\"1.1.2\";s:8:\"asset_id\";i:1003245;s:12:\"release_date\";s:19:\"2019-05-21 17:23:56\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.2\";s:8:\"sections\";s:1647:\"{\"description\":\"<p>Premium extension for the BoldGrid Backup plugin.<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP 5.3 or higher<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire boldgrid-backup-premium folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>1.1.2<\\/h4>\\n\\n<p>Release date: May 21th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Google Drive attempting to upload archive that does not exist.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<p>Release date: May 14th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Themes autoupdated not showing in Tools > History.<\\/li>\\n<li>Bug fix: Incorrect theme version listed in history during autoupdate.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.0<\\/h4>\\n\\n<p>Release date: Feb 14th, 2019<\\/p>\\n\\n<ul>\\n<li>New feature: Google Drive support.<\\/li>\\n<li>Update: Composer libraries updated.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<p>Release date: Dec 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed updating plugin via ajax.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Release date: Nov 20th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed ob_flush warning with S3.<\\/li>\\n<li>Bug fix: Fixed error: Invalid argument supplied for foreach().<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<p>Release Date: October 25th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed handling of hook parameter on non-bulk plugin upgrades.<\\/li>\\n<li>Bug fix: Fatal error: Uncaught Error: Call to undefined function wp<em>generate<\\/em>password.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<p>Release Date: April 11th, 2017<\\/p>\\n\\n<ul>\\n<li>Initial release.<\\/li>\\n<\\/ul>\\n\"}\";s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:10596:\"{\"5.2\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"5.1.1\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"5.1\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"5.0.5\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"5.0.4\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"5.0.3\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"5.0.2\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"5.0.1\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"5.0\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.9.9\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.9.8\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.9.7\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.9.6\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.9.5\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.9.4\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.9.3\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.9.2\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.9.10\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.9.1\":{\"1.0.0\":[100,12],\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.8.9\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.8.8\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.8.7\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.8.6\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.8.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.8.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.8.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.8.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.8.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.12\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.11\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.10\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.12\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.11\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.10\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]},\"4.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:143:\"{\"backup\":\"Backup\",\"cloud backup\":\"Cloud backup\",\"database backup\":\"Database backup\",\"restore\":\"Restore\",\"wordpress backup\":\"Wordpress backup\"}\";s:7:\"banners\";s:125:\"{\"low\":\"//repo.boldgrid.com/assets/banner-backup-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-backup-1544x500.png\"}\";}}s:7:\"updated\";i:1567094485;}','no'),(194,'_site_transient_timeout_browser_f53272f93a3248251485a55104701193','1567699735','no'),(195,'_site_transient_browser_f53272f93a3248251485a55104701193','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"12.1.2\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.apple.com/safari/\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/safari.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/safari.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(197,'boldgrid_inspirations_activated_version','2.0.6','no'),(198,'_transient_timeout_feed_00111d82543bb8133b26099334746c1f','1567138138','no'),(220,'_transient_timeout_feed_mod_00111d82543bb8133b26099334746c1f','1567138240','no'),(221,'_transient_feed_mod_00111d82543bb8133b26099334746c1f','1567095040','no'),(201,'_site_transient_timeout_community-events-d6db9462c2fcfcdaefa6f99953e44be1','1567138139','no'),(202,'_site_transient_community-events-d6db9462c2fcfcdaefa6f99953e44be1','a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"98.183.185.0\";}s:6:\"events\";a:6:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:11:\"WordCamp US\";s:3:\"url\";s:29:\"https://2019.us.wordcamp.org/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2019-11-01 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"St. Louis, MO, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:38.6532135;s:9:\"longitude\";d:-90.3136733;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:68:\"WP Hampton Roads Tavern - Meetup at Gordon Biersch in VB Town Center\";s:3:\"url\";s:52:\"https://www.meetup.com/WordPresshr/events/264159907/\";s:6:\"meetup\";s:23:\"WordPress Hampton Roads\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPresshr/\";s:4:\"date\";s:19:\"2019-08-28 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Virginia Beach, VA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:36.843162536621;s:9:\"longitude\";d:-76.134483337402;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:40:\"Network: Ask, Advise, Discuss, and Learn\";s:3:\"url\";s:55:\"https://www.meetup.com/WordPresshr/events/nqbntqyzmbpb/\";s:6:\"meetup\";s:23:\"WordPress Hampton Roads\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPresshr/\";s:4:\"date\";s:19:\"2019-09-11 09:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Norfolk, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:36.860530853271;s:9:\"longitude\";d:-76.208503723145;}}i:3;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:21:\"WordCamp Philadelphia\";s:3:\"url\";s:38:\"https://2019.philadelphia.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2019-10-05 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Philadelphia\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.9552145;s:9:\"longitude\";d:-75.1636616;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:40:\"Network: Ask, Advise, Discuss, and Learn\";s:3:\"url\";s:55:\"https://www.meetup.com/WordPresshr/events/nqbntqyznbmb/\";s:6:\"meetup\";s:23:\"WordPress Hampton Roads\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPresshr/\";s:4:\"date\";s:19:\"2019-10-09 09:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Norfolk, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:36.860530853271;s:9:\"longitude\";d:-76.208503723145;}}i:5;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:40:\"Network: Ask, Advise, Discuss, and Learn\";s:3:\"url\";s:55:\"https://www.meetup.com/WordPresshr/events/nqbntqyzpbrb/\";s:6:\"meetup\";s:23:\"WordPress Hampton Roads\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPresshr/\";s:4:\"date\";s:19:\"2019-11-13 09:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Norfolk, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:36.860530853271;s:9:\"longitude\";d:-76.208503723145;}}}}','no'),(237,'boldgrid_theme_revision_Vacation','20190829111839-412','yes'),(238,'allowedthemes','a:1:{s:17:\"boldgrid-vacation\";b:1;}','no'),(239,'theme_mods_boldgrid-vacation','a:17:{s:18:\"_boldgrid_theme_id\";i:38;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:13:\"footer_center\";i:2;}s:24:\"default_background_image\";s:105:\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/vacation-design-imhwpb-mqabhwebuwl1x5u.jpg\";s:13:\"bgtfw_version\";s:5:\"1.7.0\";s:20:\"force_scss_recompile\";a:2:{s:6:\"active\";b:0;s:7:\"staging\";b:1;}s:22:\"boldgrid_color_palette\";s:277:\"{\"state\":{\"active-palette\":\"palette-primary\",\"active-palette-id\":\"3c972f9f094995e0120c7a340cd6ba03\",\"palettes\":{\"palette-primary\":{\"format\":\"palette-primary\",\"colors\":[\"rgb(68, 108, 179)\",\"rgb(32, 51, 86)\",\"rgb(183, 183, 183)\"],\"neutral-color\":\"#ffffff\"}},\"saved_palettes\":[]}}\";s:22:\"boldgrid_palette_class\";s:15:\"palette-primary\";s:21:\"boldgrid_compiled_css\";s:14661:\".color1-text-default{color:#fff}.color-1-text-contrast{color:#fff ! important}.color-1-text-contrast-hover:hover,.color-1-text-contrast-hover:focus{color:#fff ! important}.color2-text-default{color:#fff}.color-2-text-contrast{color:#fff ! important}.color-2-text-contrast-hover:hover,.color-2-text-contrast-hover:focus{color:#fff ! important}.color3-text-default{color:#545454}.color-3-text-contrast,.color-3-text-contrast-hover:hover{color:#545454 ! important}.color-neutral-text-default{color:#545454}.color-neutral-text-contrast,.color-neutral-text-contrast-hover:hover{color:#545454 ! important}.color1-color{color:#446cb3 ! important}.color1-color-hover:focus,.color1-color-hover:hover{color:#446cb3 ! important}.color2-color{color:#203356 ! important}.color2-color-hover:focus,.color2-color-hover:hover{color:#203356 ! important}.color3-color{color:#b7b7b7 ! important}.color3-color-hover:focus,.color3-color-hover:hover{color:#b7b7b7 ! important}.color-neutral-color{color:#fff !important}.color1-background{background:#446cb3 ! important}.color1-background-hover:focus,.color1-background-hover:hover{background:#446cb3 ! important}.color2-background{background:#203356 ! important}.color2-background-hover:focus,.color2-background-hover:hover{background:#203356 ! important}.color3-background{background:#b7b7b7 ! important}.color3-background-hover:focus,.color3-background-hover:hover{background:#b7b7b7 ! important}.color-neutral-background{background:#fff !important}.color1-background-color{background-color:#446cb3 ! important}.color1-background-color-hover:focus,.color1-background-color-hover:hover{background-color:#446cb3 ! important}.color2-background-color{background-color:#203356 ! important}.color2-background-color-hover:focus,.color2-background-color-hover:hover{background-color:#203356 ! important}.color3-background-color{background-color:#b7b7b7 ! important}.color3-background-color-hover:focus,.color3-background-color-hover:hover{background-color:#b7b7b7 ! important}.color-neutral-background-color{background-color:#fff !important}.color1-border-color{border-color:#446cb3 ! important}.color1-border-color-hover:focus,.color1-border-color-hover:hover{border-color:#446cb3 ! important}.color2-border-color{border-color:#203356 ! important}.color2-border-color-hover:focus,.color2-border-color-hover:hover{border-color:#203356 ! important}.color3-border-color{border-color:#b7b7b7 ! important}.color3-border-color-hover:focus,.color3-border-color-hover:hover{border-color:#b7b7b7 ! important}.color-neutral-border-color{border-color:#fff !important}.breadcrumb li a.filler{background:#203356;color:#fff}.breadcrumb li a.filler:after{border-left-color:#203356}.breadcrumb li a:not(.filler){color:#fff}.breadcrumb li a:not(.filler):after{border-left-color:#446cb3 !important}.breadcrumb li a:not(.filler):hover,.breadcrumb li a:not(.filler):focus{background:#203356;color:#fff}.breadcrumb li a:not(.filler):hover:after,.breadcrumb li a:not(.filler):focus:after{border-left-color:#203356 !important;color:#fff}.woocommerce div.product .stock,.woocommerce div.product span.price,.woocommerce div.product p.price{color:#446cb3}.wc-image-links .gallery-caption,.wc-gallery-captions-show .gallery-caption,.wc-gallery-captions-onhover .gallery-caption,.wc-gallery-captions-showon .gallery-caption{background-color:#b7b7b7;color:#545454}.wc-image-links .gallery-caption > *,.wc-gallery-captions-show .gallery-caption > *,.wc-gallery-captions-onhover .gallery-caption > *,.wc-gallery-captions-showon .gallery-caption > *{color:#545454}.btn-color-1,.btn-color-1-flat{background-color:#446cb3;border-color:#446cb3;color:#fff !important}.btn-color-1:visited,.btn-color-1-flat:visited{color:#fff}.btn-color-1:hover,.btn-color-1-flat:hover,.btn-color-1:focus,.btn-color-1-flat:focus{background-color:#6588c5;border-color:#6588c5;color:#fff !important}.btn-color-1:active,.btn-color-1-flat:active,.btn-color-1.active,.btn-color-1-flat.active,.btn-color-1.is-active,.btn-color-1-flat.is-active{background-color:#506fa7;border-color:#506fa7;color:#36568e !important}.btn-color-2,.btn-color-2-flat{background-color:#203356;border-color:#203356;color:#fff !important}.btn-color-2:visited,.btn-color-2-flat:visited{color:#fff}.btn-color-2:hover,.btn-color-2-flat:hover,.btn-color-2:focus,.btn-color-2-flat:focus{background-color:#2e497b;border-color:#2e497b;color:#fff !important}.btn-color-2:active,.btn-color-2-flat:active,.btn-color-2.active,.btn-color-2-flat.active,.btn-color-2.is-active,.btn-color-2-flat.is-active{background-color:#263550;border-color:#263550;color:#121d31 !important}.btn-color-3,.btn-color-3-flat{background-color:#b7b7b7;border-color:#b7b7b7;color:#545454 !important}.btn-color-3:visited,.btn-color-3-flat:visited{color:#545454}.btn-color-3:hover,.btn-color-3-flat:hover,.btn-color-3:focus,.btn-color-3-flat:focus{background-color:#d1d1d1;border-color:#d1d1d1;color:#545454 !important}.btn-color-3:active,.btn-color-3-flat:active,.btn-color-3.active,.btn-color-3-flat.active,.btn-color-3.is-active,.btn-color-3-flat.is-active{background-color:#b7b7b7;border-color:#b7b7b7;color:#9e9e9e !important}.btn-neutral-color,.btn-neutral-color-flat{background-color:#fff;border-color:#fff;color:#545454 !important}.btn-neutral-color:visited,.btn-neutral-color-flat:visited{color:#545454}.btn-neutral-color:hover,.btn-neutral-color-flat:hover,.btn-neutral-color:focus,.btn-neutral-color-flat:focus{background-color:#fff;border-color:#fff;color:#545454 !important}.btn-neutral-color:active,.btn-neutral-color-flat:active,.btn-neutral-color.active,.btn-neutral-color-flat.active,.btn-neutral-color.is-active,.btn-neutral-color-flat.is-active{background-color:#fff;border-color:#fff;color:#e6e6e6 !important}.palette-primary{color:#545454;}.palette-primary .navbar-default .navbar-nav .open .dropdown-menu,.palette-primary .gridblock li:before{background:#446cb3}.palette-primary .navbar-default .navbar-toggle{border-color:#fff}.palette-primary .navbar-default .navbar-toggle .icon-bar,.palette-primary .navbar-default .navbar-toggle:hover,.palette-primary .navbar-default .navbar-toggle:focus{background-color:#fff}.palette-primary .navbar-default .navbar-toggle:hover .icon-bar,.palette-primary .navbar-default .navbar-toggle:focus .icon-bar{background-color:#446cb3}.palette-primary .background-alpha{background:#446cb3;-webkit-box-shadow:0 1px 5px rgba(0, 0, 0, 0.25), 0 0 50px rgba(0, 0, 0, 0.1) inset;-moz-box-shadow:0 1px 5px rgba(0, 0, 0, 0.25), 0 0 50px rgba(0, 0, 0, 0.1) inset;box-shadow:0 1px 5px rgba(0, 0, 0, 0.25), 0 0 50px rgba(0, 0, 0, 0.1) inset}.palette-primary .navbar-default .navbar-nav > li > a:hover,.palette-primary .navbar-default .navbar-nav > li > a:focus,.palette-primary .navbar-default .navbar-nav > .active > a,.palette-primary .navbar-default .navbar-nav > .active > a:hover,.palette-primary .navbar-default .navbar-nav > .active > a:focus,.palette-primary .leaderbox-text ul li i.fa,.palette-primary .mod-alpha i.fa,.palette-primary .mod-beta i,.palette-primary a,.palette-primary .current_page_item a,.palette-primary.disabled-footer .site-footer a,.palette-primary .icon-circle i.fa{color:#446cb3}.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,.palette-primary .open > .dropdown-toggle.btn-primary,.palette-primary .navbar-default .navbar-nav > .open > a,.palette-primary .navbar-default .navbar-nav > .open > a:hover,.palette-primary .navbar-default .navbar-nav > .open > a:focus{background:#203356}.palette-primary .button-primary,.palette-primary .dropdown-menu > li > a,.palette-primary .dropdown-menu > li > a:hover,.palette-primary .dropdown-menu > li > a:focus,.palette-primary .dropdown-toggle,.palette-primary .site-header,.palette-primary .nav > li > a:focus,.palette-primary .nav > li > a:hover,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a,.palette-primary .mark,.palette-primary mark{background:#446cb3;color:#fff}.palette-primary .site-title a,.palette-primary .site-description,.palette-primary .secondary-menu li a,.palette-primary .tertiary-menu li a{color:#fff}.palette-primary #reviews #comments ol.commentlist li .comment-text{border:1px solid #446cb3}.palette-primary .navbar-default .navbar-nav > .current-menu-parent > a{background:none;color:#446cb3}.palette-primary .button-secondary,.palette-primary .widget .table-striped > tbody > tr:nth-child(2n+1) > td,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > .active > a,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,.palette-primary .navbar-default .navbar-nav > li > a{background:#203356;color:#fff}.palette-primary .navbar-nav,.palette-primary .icon-circle,.palette-primary #secondary-menu{background:#203356}.palette-primary .mod-alpha h2,.palette-primary .mod-alpha p,.palette-primary .link-secondary,.palette-primary .section-title,.palette-primary .details h3 i,.palette-primary .agent-profile h2,.palette-primary .button-primary i.fa,.palette-primary .widget-title,.palette-primary .entry-title,.palette-primary #reply-title,.palette-primary .tertiary-menu .current_page_item a{color:#203356}.palette-primary .secondary-menu .current_page_item a,.palette-primary .footer-center-menu .current_page_item a{color:#446cb3}.palette-primary .mod-blockquote{border-left:7px solid #203356}.palette-primary .mod-divider a{background:#fff;color:#203356}.palette-primary .site-footer,.palette-primary .site-footer p,.palette-primary .button-primary:hover,.palette-primary .button-primary:focus,.palette-primary .button-secondary:hover,.palette-primary .button-secondary:focus,.palette-primary .navbar-default .navbar-nav > .open > a,.palette-primary .navbar-default .navbar-nav > .open > a:hover,.palette-primary .navbar-default .navbar-nav > .open > a:focus{background:#b7b7b7;color:#545454}.palette-primary .mod-divider a,.palette-primary.single .entry-title,.palette-primary .entry-title a,.palette-primary .comment-text{background:#fff;color:#545454}.palette-primary .footer-center-menu li a{color:#545454}.palette-primary .background-primary,.palette-primary.error404 .site-content,.palette-primary.page-template-default .site-content,.palette-primary.search .site-content,.palette-primary.single .site-content,.palette-primary.archive .site-content,.palette-primary.blog .site-content,.palette-primary.mce-content-body{background:#fff;color:#545454}.palette-primary.disabled-footer .site-footer,.palette-primary #boldgrid-sticky-filler,.palette-primary #boldgrid-sticky-push{background:#fff}.palette-primary .mod-blockquote p,.palette-primary .mod-gamma-1 h2,.palette-primary .mod-gamma-1 h3,.palette-primary .comment-content p,.palette-primary #reviews #comments ol.commentlist li .meta{color:#545454}.palette-primary .entry-title:before,.palette-primary .mod-divider:before{border-top:1px solid #545454}.palette-primary hr{background:#545454}.palette-primary .mod-beta h3{color:#333}.palette-primary .call-to-action{background:rgba(15, 19, 28, 0.75)}.palette-primary .call-to-action h2{border-bottom:1px #e1e1e1 solid;color:#e1e1e1}.palette-primary .call-to-action p,.palette-primary .menu-social li a{color:#fff}.palette-primary .ratings i{color:#f39c12}.palette-primary .background-alpha:before,.palette-primary .background-alpha:after{-webkit-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);-moz-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);box-shadow:0 15px 10px rgba(0, 0, 0, 0.7)}.palette-primary .menu-social li.youtube a{background:#b00}.palette-primary .menu-social li.facebook a{background:#3b5998}.palette-primary .menu-social li.google-plus a{background:#dd4b39}.palette-primary .menu-social li.twitter a{background:#00aced}.palette-primary .menu-social li.linkedin a{background:#0976b4}.palette-primary .menu-social li.bitbucket a{background:#205081}.palette-primary .menu-social li.codepen a{background:#000}.palette-primary .menu-social li.dribbble a{background:#444}.palette-primary .menu-social li.dropbox a{background:#007ee5}.palette-primary .menu-social li.flickr a{background:#ff0084}.palette-primary .menu-social li.foursquare a{background:#0072b1}.palette-primary .menu-social li.github a{background:#333}.palette-primary .menu-social li.gratipay a{background:#630}.palette-primary .menu-social li.instagram a{background:#3f729b}.palette-primary .menu-social li.jsfiddle a{background:#4679bd}.palette-primary .menu-social li.xing a{background:#026466}.palette-primary .menu-social li.wpcom a{background:#21759b}.palette-primary .menu-social li.weibo a{background:#e71d34}.palette-primary .menu-social li.tumblr a{background:#35465c}.palette-primary .menu-social li.trello a{background:#256a92}.palette-primary .menu-social li.snapchat a{background:#fffc00}.palette-primary .menu-social li.reddit a{background:#ff4500}.palette-primary .menu-social li.renren a{background:#005eac}.palette-primary .menu-social li.pinterest a{background:#cc2127}.palette-primary .menu-social li.envelope a{background:#777}.palette-primary .menu-social li.yelp a{background:#af0606}.palette-primary .menu-social li.slideshare a{background:#e98325}.palette-primary .menu-social li.stack-overflow a{background:#fe7a15}.palette-primary .menu-social li.stack-exchange a{background:#000}.palette-primary .menu-social li.soundcloud a{background:#f80}.palette-primary .menu-social li.steam a{background:#0b0b0b}.palette-primary .menu-social li.vimeo a{background:#1ab7ea}.palette-primary .menu-social li.vine a{background:#00b488}.palette-primary .menu-social li.vk a{background:#45668e}.palette-primary .menu-social li.twitch a{background:#6441a4}.palette-primary .menu-social li a{position:relative;width:100%;height:100%}.palette-primary .menu-social li a:hover:after{content:\"\\A\";width:100%;height:100%;background:rgba(0, 0, 0, 0.1);position:absolute;top:0;left:0}.palette-primary .tertiary-menu li.menu-social a:hover{color:#203356}.palette-primary .secondary-menu li.menu-social a:hover,.palette-primary .footer-center-menu li.menu-social a:hover{color:#446cb3}.palette-primary .menu-social li.menu-item-object-page a,.palette-primary .menu-social li.menu-item-object-post a{background:rgba(15, 19, 28, 0.75)}\";s:18:\"custom_css_post_id\";i:-1;s:20:\"boldgrid_font_toggle\";b:1;s:16:\"logo_font_family\";s:12:\"Arbutus Slab\";s:14:\"logo_font_size\";s:2:\"42\";s:19:\"logo_text_transform\";s:9:\"uppercase\";s:21:\"boldgrid_logo_setting\";s:0:\"\";s:24:\"boldgrid_position_toggle\";b:0;s:18:\"headings_font_size\";s:2:\"15\";s:28:\"alternate_headings_font_size\";s:2:\"15\";}','yes'),(213,'_transient_timeout_plugin_slugs','1567181434','no'),(214,'_transient_plugin_slugs','a:7:{i:0;s:19:\"akismet/akismet.php\";i:1;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:2;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:3;s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";i:4;s:9:\"hello.php\";i:5;s:47:\"post-and-page-builder/post-and-page-builder.php\";i:6;s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";}','no'),(215,'recently_activated','a:0:{}','yes'),(253,'boldgrid_installed_pages_metadata','a:3:{i:18;a:3:{s:11:\"is_readonly\";s:1:\"0\";s:9:\"post_type\";s:4:\"page\";s:11:\"post_status\";s:7:\"publish\";}i:20;a:3:{s:11:\"is_readonly\";s:1:\"0\";s:9:\"post_type\";s:4:\"page\";s:11:\"post_status\";s:7:\"publish\";}i:22;a:3:{s:11:\"is_readonly\";s:1:\"0\";s:9:\"post_type\";s:4:\"page\";s:11:\"post_status\";s:7:\"publish\";}}','yes'),(358,'boldgrid_customizer_first_use','2019-08-29 16:35:52','yes'),(360,'category_children','a:0:{}','yes'),(379,'_transient_timeout_kirki_googlefonts_contents_274189f8c77f5672220b107e8ab9ed24','1567184178','no'),(380,'_transient_kirki_googlefonts_contents_274189f8c77f5672220b107e8ab9ed24','@font-face {\n  font-family: \'Arbutus Slab\';\n  font-style: normal;\n  font-weight: 400;\n  src: local(\'Arbutus Slab Regular\'), local(\'ArbutusSlab-Regular\'), url(https://fonts.gstatic.com/s/arbutusslab/v8/oY1Z8e7OuLXkJGbXtr5ba7ZlbKUZ.ttf) format(\'truetype\');\n}\n@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  src: local(\'Open Sans Regular\'), local(\'OpenSans-Regular\'), url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFVZ0e.ttf) format(\'truetype\');\n}\n@font-face {\n  font-family: \'Raleway\';\n  font-style: normal;\n  font-weight: 400;\n  src: local(\'Raleway\'), local(\'Raleway-Regular\'), url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0ISg.ttf) format(\'truetype\');\n}\n','no'),(265,'boldgrid_static_pages','a:1:{s:5:\"pages\";a:2:{s:16:\"pages_in_pageset\";a:6:{i:0;O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"210\";s:16:\"page_revision_id\";s:4:\"2584\";s:10:\"page_title\";s:4:\"Home\";s:9:\"page_slug\";s:4:\"home\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:8141:\"\n<div class=\"boldgrid-section\">\n\n</div>\n<div class=\"boldgrid-section color-neutral-background-color color-neutral-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 46px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color2-color\" style=\"text-align: center;\">INNOVATIVE CONCEPTS</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 57px;\">\n<div class=\"col-md-6 col-xs-12 col-sm-6\">\n<p style=\"text-align: center;\"><img class=\"aligncenter size-full bg-img bg-img-1 wp-image-26\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_KLbZ4RgovUI-imhwpb-ahynqyzw1j6u9pd.jpg\" alt=\"klbz4rgovui\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"695357\"></p>\n<p style=\"text-align: left;\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-6 col-sm-6 col-xs-12 align-column-center\">\n<div class=\"\">\n<p class=\"color2-color\" style=\"text-align: left;\">Take a look at some of our award-winning designs and concepts.</p>\n<p class=\"\">We integrate the latest concepts and web advancements to create breathtaking sites for universal appeal. With a knack for innovative thought design, our process goes beyond the norm, integrating flat design, user interface and mobile management processes to provide the most enhanced user experience for complete customer engagement.</p>\n<p class=\"\">Our team integrates experience with current design techniques to offer the most comprehensive and integrative web design solutions on the market. We make clear, crisp designs that flow from a consumer-based perspective. Using your research, customer personas and models, we use a detailed methodology to deliver the best outcomes and solutions.</p>\n<p class=\"\">&nbsp;</p>\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More </a></p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color3-background-color color3-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 49px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color1-color\" style=\"text-align: center;\">ABOUT US</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 18px; padding-bottom: 47px;\">\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\n<h5 class=\"color1-color\" style=\"text-align: left;\">Our Vision and Experience</h5>\n<p class=\"\">We have the vision and experience of transforming spaces into breathtaking settings with flair. We transform ideas into reality with efficient planning and seamless cohesion each and every time.</p>\n<p class=\"\"><img class=\"aligncenter size-full bg-img bg-img-rounded-bottom-left bg-img-rounded-bottom-right wp-image-27\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_Z0_lvddNnVI-imhwpb-96lz88yo5j4xwnk.jpg\" alt=\"z0_lvddnnvi\" width=\"600\" height=\"600\" data-imhwpb-asset-id=\"695358\"></p>\n\n<h5 class=\"color1-color\" style=\"text-align: center;\">Ariel Johnson</h5>\n<h3 class=\"color1-color\" style=\"text-align: center;\">CEO</h3>\n</div>\n<div class=\"col-md-8 col-sm-6 col-xs-12\">\n<p class=\"mod-reset\"><img class=\"aligncenter size-full bg-img bg-img-1 wp-image-28\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_nUzt8uVCYyI-imhwpb-3hycbwzp1fmegpa.jpg\" alt=\"nuzt8uvcyyi\" width=\"900\" height=\"450\" data-imhwpb-asset-id=\"695359\"></p>\n<p class=\"mod-reset\">&nbsp;</p>\n<p class=\"mod-reset\">Attention to detail, passion and appreciation for beautiful events. We use modular and LED pieces to enhance our concepts, bringing our talents to the forefront in creating unique and inventive designs that combine the elements of style, mood and theme.</p>\n<p class=\"mod-reset\">&nbsp;</p>\n<p class=\"mod-reset\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More </a></p>\n<p class=\"mod-reset\">&nbsp;</p>\n\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div></div>\n</div>\n</div>\n</div>\n<div class=\"col-md-8 col-sm-12 col-xs-12\"></div>\n</div>\n</div>\n<div class=\"boldgrid-section color-neutral-background-color color-neutral-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 43px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color2-color\" style=\"text-align: center;\">WHAT WE CAN OFFER</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 19px; padding-bottom: 82px;\">\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\n<div style=\"margin-top: 20px; margin-bottom: 20px; padding: 1.5em 1.9em;\" class=\"bg-box bg-box-rounded-bottom-right bg-box-rounded-top-right color4-text-default color4-background-color\">\n<h4 class=\"color2-color\">Decor and Display</h4>\n<p class=\"\">Beautiful projects with purpose and vibrant integration in urban planning, interior design and sleek architecture. Our designs are innovative, iconic and tailored to exceed expectations.</p>\n&nbsp;\n<h4 class=\"color2-color\">Illustrative Solutions</h4>\n<p class=\"\">We are innovators in the art design industry known for our artwork that captures the essence of any subject or area. From children&rsquo;s spaces to art deco projects, we transform canvases into breathtaking conversation pieces.</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\n<div>\n\n<img class=\"aligncenter size-full bg-img bg-img-9 wp-image-29\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_jjtdL443L4w-imhwpb-ank5nsz2covmbqv.jpg\" alt=\"jjtdl443l4w\" width=\"600\" height=\"600\" data-imhwpb-asset-id=\"695360\"></div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12\">\n<h4 class=\"color2-color\">Premier Architectural Design</h4>\n<p class=\"\">We are a full service specialty event and design firm providing the ultimate experience in bringing concepts to life. We offer an unparalleled experience in event production, design, display, lighting, signage, decor and display.</p>\n<img class=\"aligncenter size-full bg-img bg-img-1 wp-image-30\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_gcsNOsPEXfs-imhwpb-yctsomz1s3db9jd.jpg\" alt=\"gcsnospexfs\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"695361\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color3-background-color color3-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 59px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div style=\"background-color: transparent;\" class=\"\">\n<h2 class=\"color1-color\" style=\"text-align: center;\">WE ARE EXPERTS</h2>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 98px;\">\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n\n<img class=\"aligncenter size-full bg-img bg-img-rounded wp-image-31\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_DtDlVpy-vvQ-imhwpb-3fq3cvgi3gbebvo.jpg\" alt=\"dtdlvpy-vvq\" width=\"600\" height=\"600\" data-imhwpb-asset-id=\"695362\"></div>\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n\n<img class=\"aligncenter size-full bg-img bg-img-rounded wp-image-32\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_VZ07w73ta-k-imhwpb-74781mv4bxif63t.jpg\" alt=\"vz07w73ta-k\" width=\"600\" height=\"600\" data-imhwpb-asset-id=\"695363\"></div>\n<div class=\"col-md-3 col-sm-12 col-xs-12\">\n<p class=\"\">We develop interior and exterior components to become conversation pieces in any setting. Our work has stood out in many industries for its captivating appeal and earthy personality.</p>\n<p class=\"\">Using design and a variety of elements that complement the pieces in the space, we deliver interesting and innovative results, time and time again.</p>\n\n</div>\n<div class=\"col-md-3 col-sm-12 col-xs-12\">\n<p class=\"\">All of our artists have been thoroughly trained in environmental design processes. We&rsquo;re experts in historical preservation and make designing to compliment existing structures our main focus in all that we do.</p>\n<p class=\"\">&nbsp;</p>\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More</a></p>\n\n</div>\n</div>\n</div>\n</div>\n\";s:14:\"checklist_html\";N;s:6:\"layout\";s:8:\"homepage\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";s:2:\"38\";s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}i:1;O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"67\";s:16:\"page_revision_id\";s:3:\"326\";s:10:\"page_title\";s:12:\"Blogging 101\";s:9:\"page_slug\";s:12:\"blogging-101\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:0:\"\";s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:2;O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"68\";s:16:\"page_revision_id\";s:3:\"331\";s:10:\"page_title\";s:16:\"Basic Taxonomies\";s:9:\"page_slug\";s:16:\"basic-taxonomies\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:0:\"\";s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:3;O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"69\";s:16:\"page_revision_id\";s:4:\"1683\";s:10:\"page_title\";s:23:\"Tips For Better Writing\";s:9:\"page_slug\";s:23:\"tips-for-better-writing\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:0:\"\";s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"0\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:4;O:8:\"stdClass\":16:{s:2:\"id\";s:1:\"1\";s:16:\"page_revision_id\";s:4:\"2693\";s:10:\"page_title\";s:8:\"About Us\";s:9:\"page_slug\";s:8:\"about-us\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:5232:\"\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h2>An Intrinsic Love for The Craft</h2>\r\n<h4>Capturing Magic Through The Lens</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">I\'ve always had a love for awesome photography, since my father took me along on photo shoots as a young child. The way he could capture a special moment, beautiful landscape or someone\'s personality on paper always seemed a little bit like magic. With a Master of Fine Arts from California Institute of the Arts focusing on portrait photography, I\'ve developed that magic in my photography style.</p>\r\n<p class=\"\">Whether it\'s a graduation, wedding, new baby, family portrait or other event you\'d like captured, I\'d be delighted to apply that magical touch through amazing art photography.</p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\">\r\n<p class=\"p-button-primary\"><a class=\"button-primary\" href=\"#\">View Services</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone size-full wp-image-33\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzYzcFA2X0Zsbk1ZLzYwMHg0NTA_3D-imhwpb-wsnb232r7vp46aq.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780377\"></p>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone size-full wp-image-34\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09rSlZXU3VoZGljLzYwMHg0NTA_3D-imhwpb-im71egtdtp1xz8x.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780378\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Fine Art Photography</h2>\r\n<h4>One Artistic Eye Deserves Another</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nOver the years, I\'ve developed a good feel for creating exceptional images of your fine art projects. Whether you need new slides for an art show application, shots of you in action for your studio\'s website or just want to capture your beautiful art collection, I can get the photos you need with the spirit you\'re looking for without compromising your artistic vision.\r\n\r\nWe\'ve worked with dozens of artists and fine art collectors over the years to document their artwork. No matter the reason why, I can provide you with documentation that not only documents your artwork, but captures its inner soul.\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\">\r\n<p class=\"p-button-primary\"><a class=\"button-primary\" href=\"#\">Visit Gallery</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Capturing Special Events</h2>\r\n<h4>Your Biggest Moments Captured, Without Interruption</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nLet\'s face it - a special event is something we look back on for years to come, remembering the good times we\'ve had and the wonderful people we\'ve shared our lives with. Capturing that event is just as important as any other detail you need to work out. My photography will help you capture the magic of the moment, whether it\'s a graduation, wedding, anniversary, baptism or similar special moment in your life.\r\n\r\nBecause I\'ve worked with so many clients in so many different environments, you\'ll barely notice I\'m there - the occasional touch to fix a hem or request to turn slightly is all you\'ll notice. This is just one way I capture the magic.\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/a73f2d90-f7254bad-halfpoint150100426-555x250.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"10|landscape\" width=\"555\" class=\"wp-image-35\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n\";s:14:\"checklist_html\";N;s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:1:\"1\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}i:5;O:8:\"stdClass\":16:{s:2:\"id\";s:1:\"2\";s:16:\"page_revision_id\";s:4:\"1516\";s:10:\"page_title\";s:10:\"Contact Us\";s:9:\"page_slug\";s:10:\"contact-us\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:1250:\"\n<div class=\"boldgrid-section\"><div class=\"container\"><div class=\"row\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\r\n<p>Please use the contact form below, if you have any general questions or requests about our services.</p>\r\n<p>We will try our best to respond back to you within 24 hours.</p>\r\n\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\r\n\r\n<h3><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p><a href=\"mailto:info@buildingsystemsgroup.com\">info@buildingsystemsgroup.com</a></p>\r\n\r\n<h3><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p>(757)581-5898</p>\r\n\r\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\n<p>3324 Kline Drive, Virginia Beach, VA 23452</p>\r\n<p class=\"boldgrid-google-maps\" style=\"width:100%;height:200px;\"><iframe style=\"width:100%;height:100%;\" src=\"https://maps.google.com/maps?q=3324+Kline+Drive%2C+Virginia+Beach%2C+VA+23452&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n<p class=\"mod-reset\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/d059a2ca-53d6b1-peshkov150600019-360x300.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"52|portrait\" width=\"360\" class=\"wp-image-36\"></p>\r\n\r\n</div></div></div></div>\n\";s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:2:\"99\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}}s:10:\"additional\";a:0:{}}}','yes'),(269,'boldgrid_has_built_site','yes','yes'),(270,'boldgrid_show_tip_start_editing','yes','yes'),(275,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(276,'widget_black-studio-tinymce','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:883:\"<h2 style=\"text-align: center;\"><strong>WHAT SETS US APART</strong></h2>\r\nBSG is a ACG certified firm specializing in independent buildi<img class=\"wp-image-58 alignleft\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/BSG-Logo.png\" alt=\"\" width=\"188\" height=\"196\" />ng commissioning for new building construction, renovation, retro-commissioning (Commissioning of existing buildings) and investigation of existing building equipment/systems operational issues. Building Systems Group is comprised of experienced engineering professionals and field technicians. BSG has a positive reputation in building commissioning, equipment/systems troubleshooting, energy efficient operation surveys, and IAQ issues. Our approach to commissioning is hands-on verification in the field to ensure your building project is completed and operating as it was originally designed.\";s:4:\"type\";s:6:\"visual\";s:6:\"filter\";s:1:\"1\";}}','yes'),(278,'boldgrid_menus_created','a:1:{s:14:\"option_version\";i:2;}','yes'),(279,'boldgrid_framework_init','1','yes'),(296,'wpforms_review','a:2:{s:4:\"time\";i:1567095263;s:9:\"dismissed\";b:0;}','yes'),(293,'_amn_wpforms-lite_to_check','1567562590','yes'),(299,'_transient_wpforms_dash_widget_lite_entries_by_form','a:12:{i:17;a:3:{s:7:\"form_id\";i:17;s:5:\"count\";i:0;s:5:\"title\";s:22:\"Customer Feedback Form\";}i:15;a:3:{s:7:\"form_id\";i:15;s:5:\"count\";i:0;s:5:\"title\";s:25:\"Shipping Information Form\";}i:16;a:3:{s:7:\"form_id\";i:16;s:5:\"count\";i:0;s:5:\"title\";s:12:\"Sign Up Form\";}i:13;a:3:{s:7:\"form_id\";i:13;s:5:\"count\";i:0;s:5:\"title\";s:23:\"Event Registration Form\";}i:14;a:3:{s:7:\"form_id\";i:14;s:5:\"count\";i:0;s:5:\"title\";s:24:\"Information Request Form\";}i:11;a:3:{s:7:\"form_id\";i:11;s:5:\"count\";i:0;s:5:\"title\";s:24:\"Email Form (Traditional)\";}i:12;a:3:{s:7:\"form_id\";i:12;s:5:\"count\";i:0;s:5:\"title\";s:39:\"Event Registration Form (Group Support)\";}i:10;a:3:{s:7:\"form_id\";i:10;s:5:\"count\";i:0;s:5:\"title\";s:17:\"Address Form (US)\";}i:9;a:3:{s:7:\"form_id\";i:9;s:5:\"count\";i:0;s:5:\"title\";s:28:\"Address Form (International)\";}i:8;a:3:{s:7:\"form_id\";i:8;s:5:\"count\";i:0;s:5:\"title\";s:15:\"BoldGrid Form 3\";}i:7;a:3:{s:7:\"form_id\";i:7;s:5:\"count\";i:0;s:5:\"title\";s:15:\"BoldGrid Form 2\";}i:6;a:3:{s:7:\"form_id\";i:6;s:5:\"count\";i:0;s:5:\"title\";s:15:\"BoldGrid Form 1\";}}','no'),(300,'_transient_timeout_feed_dd2bd8838023e0bb29735a5f28cc5c3a','1567138480','no'),(542,'_transient_timeout_feed_mod_dd2bd8838023e0bb29735a5f28cc5c3a','1567145915','no'),(543,'_transient_feed_mod_dd2bd8838023e0bb29735a5f28cc5c3a','1567102715','no'),(306,'_transient_timeout_kirki_googlefonts_contents_e1d9e5b70b5b6d6e10871f8066c73366','1567181707','no'),(307,'_transient_kirki_googlefonts_contents_e1d9e5b70b5b6d6e10871f8066c73366','@font-face {\n  font-family: \'Open Sans\';\n  font-style: normal;\n  font-weight: 400;\n  src: local(\'Open Sans Regular\'), local(\'OpenSans-Regular\'), url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFVZ0e.ttf) format(\'truetype\');\n}\n@font-face {\n  font-family: \'Pacifico\';\n  font-style: normal;\n  font-weight: 400;\n  src: local(\'Pacifico Regular\'), local(\'Pacifico-Regular\'), url(https://fonts.gstatic.com/s/pacifico/v15/FwZY7-Qmy14u9lezJ-6H6Mw.ttf) format(\'truetype\');\n}\n@font-face {\n  font-family: \'Raleway\';\n  font-style: normal;\n  font-weight: 400;\n  src: local(\'Raleway\'), local(\'Raleway-Regular\'), url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0ISg.ttf) format(\'truetype\');\n}\n','no'),(308,'_transient_timeout_kirki_googlefonts_fallback_to_link','1567184178','no'),(309,'_transient_kirki_googlefonts_fallback_to_link','no','no'),(572,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1567104928;s:7:\"checked\";a:9:{s:19:\"akismet/akismet.php\";s:5:\"4.1.2\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:6:\"1.11.0\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:5:\"1.1.2\";s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";s:5:\"1.6.3\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:5:\"2.1.0\";s:9:\"hello.php\";s:5:\"1.7.2\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:6:\"1.11.0\";s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";s:5:\"1.0.2\";s:24:\"wpforms-lite/wpforms.php\";s:5:\"1.5.5\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:6:\"1.11.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.11.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/boldgrid-easy-seo\";s:4:\"slug\";s:17:\"boldgrid-easy-seo\";s:6:\"plugin\";s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/boldgrid-easy-seo/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/boldgrid-easy-seo.1.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/boldgrid-easy-seo/assets/icon-256x256.png?rev=1773296\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-easy-seo/assets/icon-128x128.png?rev=1773296\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/boldgrid-easy-seo/assets/banner-1544x500.png?rev=1773381\";s:2:\"1x\";s:72:\"https://ps.w.org/boldgrid-easy-seo/assets/banner-772x250.png?rev=1773381\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"post-and-page-builder/post-and-page-builder.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/post-and-page-builder\";s:4:\"slug\";s:21:\"post-and-page-builder\";s:6:\"plugin\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:11:\"new_version\";s:6:\"1.11.0\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/post-and-page-builder/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.11.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-256x256.png?rev=1768477\";s:2:\"1x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-128x128.png?rev=1768477\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/post-and-page-builder/assets/banner-1544x500.png?rev=1768477\";s:2:\"1x\";s:76:\"https://ps.w.org/post-and-page-builder/assets/banner-772x250.png?rev=1768477\";}s:11:\"banners_rtl\";a:0:{}}s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:5:\"1.5.5\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wpforms-lite.1.5.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-256x256.png?rev=1371112\";s:2:\"1x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-128x128.png?rev=1371112\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=1371112\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=1371112\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:21:\"boldgrid-inspirations\";s:6:\"plugin\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:11:\"new_version\";s:5:\"2.1.0\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:150:\"https://wp-assets.boldgrid.com/api/asset/get?key=d3589656bedc2351ea246ce8f6bf3cd3&id=1017199&installed_plugin_version=2.1.0&installed_wp_version=5.2.2\";}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:29:\"post-and-page-builder-premium\";s:6:\"plugin\";s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";s:11:\"new_version\";s:5:\"1.0.2\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:111:\"https://api.boldgrid.com/api/open/get-asset?id=971100&installed_plugin_version=1.0.2&installed_wp_version=5.2.2\";}}}','no'),(732,'_site_transient_timeout_boldgrid_api_data','1567136182','no'),(733,'_site_transient_boldgrid_api_data','O:8:\"stdClass\":5:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":30:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"2.1.0\";s:8:\"asset_id\";i:1017199;s:12:\"release_date\";s:19:\"2019-08-29 15:10:19\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.2\";s:8:\"sections\";s:44923:\"{\"description\":\"<p>BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.<\\/p>\\n\\n<p>The first phase is Inspiration; the guided tool creates your base website.  If you already have a website, then you can skip this step.<\\/p>\\n\\n<p>The second phase is Customization; tools to transform your website into your vision.<\\/p>\\n\",\"installation\":\"<ol>\\n<li><p>Upload the entire boldgrid-inspirations folder to the \\/wp-content\\/plugins\\/ directory.<\\/p><\\/li>\\n<li><p>Activate the plugin through the Plugins menu in WordPress.<\\/p><\\/li>\\n<li><p>You will find the Inspirations menu in your WordPress Dashboard \\/ admin panel.<\\/p><\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>2.1.0<\\/h4>\\n\\n<p>Release date: August 29th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Removed the \\\"Welcome to BoldGrid\\\" dashboard widget.<\\/li>\\n<li>Update: Add notice to dashboard widget.<\\/li>\\n<li>Update: Remove news widget from dashboard.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.7<\\/h4>\\n\\n<p>Release date: August 16, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing compact warnings<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.6<\\/h4>\\n\\n<p>Release date: August 1st, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.5<\\/h4>\\n\\n<p>Release date: July 25th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Added a switch for toggling branding of the login page.<\\/li>\\n<li>Update: Cleaned up logic on purchase coins page.<\\/li>\\n<li>Update: Updated dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.4<\\/h4>\\n\\n<p>Release date: July 2nd, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Replaced the BoldGrid RSS feed widget on the dashboard with one in the updated library package.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.3<\\/h4>\\n\\n<p>Release date: May 21st, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing \\\"Call to undefined method getAttribute\\\" error.<\\/li>\\n<li>Bug fix: Replacing deprecated filter on login: login<em>headertitle \\/ login<\\/em>headertext.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.2<\\/h4>\\n\\n<p>Release date: Apr 23nd, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing usage of php\'s empty function for php &lt; 5.5<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.1<\\/h4>\\n\\n<p>Release date: Apr 19th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing class property declaration for php &lt; 5.6<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.0<\\/h4>\\n\\n<p>Release date: Apr 16th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Made translation ready. Text domain is boldgrid-inspirations.<\\/li>\\n<li>Update: Inspirations process with full screen mode and design updates.<\\/li>\\n<li>New feature: Inspirations dashboard.<\\/li>\\n<li>New feature: German translations added - de_DE.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.5<\\/h4>\\n\\n<p>Release date: Jan 29th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Pages fail to install on Pages > Add New.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.4<\\/h4>\\n\\n<p>Release date: Dec 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Unable to save \\\"boldgrid<em>menu<\\/em>option\\\" on settings page.<\\/li>\\n<li>Bug fix:                       Fixed updating plugin via ajax.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.3<\\/h4>\\n\\n<p>Release date: Dec 4th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Coin Budget help was not toggling when clicked.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.2<\\/h4>\\n\\n<p>Release date: Nov 26th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-33   Fixed missing build for library dependencies; Updated production build process to use composer post-autoload-dump hook.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.1<\\/h4>\\n\\n<p>Release date: Nov 20th, 2018<\\/p>\\n\\n<ul>\\n<li>Update:       JIRA BGCONN-20   Removed update settings; have been moved to the BoldGrid Library packages.<\\/li>\\n<li>Bug fix:      JIRA BGTHEME-558 Fixed conflict between tgmpa plugin installer and the BoldGrid custom update classes.<\\/li>\\n<li>Bug fix:                       BoldGrid Connect Search \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       Attribution page not being rebuilt \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       BoldGrid Connect Search in the Customizer \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       Recommended image sizes not working as expected.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.0<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updated BoldGrid library to version 2.4.2.<\\/li>\\n<li>New feature:  JIRA BGINSP-24  Log data when there may be a connection or Ajax error.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-16  Warnings and notices within inspiration w\\/ Crio theme<\\/li>\\n<li>Bug fix:      JIRA BGINSP-23  Fixed issue: Connect Search may load with connection notice.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.7<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updated to library version 2.3.5.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-14  Fatal in PHP >=7.1.0 when creating internal preview builds.<\\/li>\\n<li>Bug fix:      JIRA WPB-3767   Prevent invalid API calls for check-version.<\\/li>\\n<li>Update:       JIRA BGBKUP-180 Auto update code moved to library and removed from Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-3730   Updated library dependency to ^2.0.0.<\\/li>\\n<li>Update:       JIRA BGINSP-3   Forcing display of Connect Key prompt admin notice on the Inspirations page, even if dismissed, until key is entered.<\\/li>\\n<li>Update:       JIRA WPB-3684   Updated composer.json, due to package changes.<\\/li>\\n<li>New feature:  JIRA BGCNTRL-46 Added filters for manipulating Dashboard help in trial sites.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGSTAGE-32 Fixed staging plugin install.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.4<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA BGINSP-4   Removed admin notice recommending plugin installations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3643   Ensure that deployment does not install new wporg plugins if old ones are installed.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3587   Menu assignment after deployment broken in WP 4.9.<\\/li>\\n<li>Bug fix:      JIRA WPB-3570   Inspirations Select button misplaced in WP 4.9.<\\/li>\\n<li>Bug fix:      JIRA WPB-3593   Changes require to help Staging support new Customizer scheduler.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.1<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updates to library.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.11<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3336   All and Default categories do not align.<\\/li>\\n<li>Bug fix:      JIRA WPB-3337   On a fresh install, Pages - New From GridBlocks fails.<\\/li>\\n<li>Bug fix:      JIRA WPB-3333   Image search only searching one provider instead of all.<\\/li>\\n<li>Bug fix:      JIRA WPB-3346   Edit Image button not working for attachment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3387   Loading GridBlocks just spins.<\\/li>\\n<li>Update:       JIRA WPB-3352   Purchase coins through BoldGrid Central.<\\/li>\\n<li>Update:       JIRA WPB-3355   Add data-image-url attribute.<\\/li>\\n<li>Update:       JIRA WPB-3382   More descriptive creative commons icon.<\\/li>\\n<li>Update:       JIRA WPB-3384   Add License details to attachment details.<\\/li>\\n<li>Update:       JIRA WPB-3383   Filter out boldgrid-gridblock-set-preview-page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3318   When forcing a preferred form plugin install, first check if plugin is installed before trying to activate.<\\/li>\\n<li>Bug fix:      JIRA WPB-3312   Ensure activation of preferred form plugin.  Added filter for preferred slug.<\\/li>\\n<li>Bug fix:      JIRA WPB-3317   New page from GridBlocks not working.<\\/li>\\n<li>Update:       JIRA WPB-3252   Disable \'default\' category and configure \'showcase\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-3332   New from gridblocks button not showing.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.8<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3200   Added WPForms support.<\\/li>\\n<li>Update:       JIRA WPB-3292   Updated plugin URI.<\\/li>\\n<li>Update:   JIRA WPB-3296 Add Inspirations as first menu item child.<\\/li>\\n<li>Bug Fix:  JIRA WPB-3274 Plugins > Add New Updates fail in modals.<\\/li>\\n<li>New feature:  JIRA WPB-3293   Resize images during deployment vs imgr server.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.7<\\/h4>\\n\\n<ul>\\n<li>Update:      JIRA WPB-3243    Change feedback admin notice display frequency.<\\/li>\\n<li>Update:      JIRA WPB-3264 Adding twitch social media option.<\\/li>\\n<li>New Feature: Added BoldGrid Library to plugin.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3179   Gradient style being lost during normal deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3180   Open WordPress\\/BoldGrid links in attribution page in new tab.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3161   Fixed auto plugin update.<\\/li>\\n<li>Bug fix:      JIRA WPB-3162   Fixed issue creating .htaccess file in deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3171   As an author, when installing a site I do not want background images to be processed.<\\/li>\\n<li>Bug fix:      JIRA WPB-3176   Background gradient \\/ url bug during deplyment.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3151   Added check and load before using get<em>plugin<\\/em>data() for updates.<\\/li>\\n<li>Bug fix:      JIRA WPB-3141   Fixed invalid updates for BoldGrid Prime theme.<\\/li>\\n<li>Bug fix:      JIRA WPB-3158   Deployment\'s gallery updates are not saved.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3106   As an Author, I can set background images for elements.<\\/li>\\n<li>New feature:  JIRA WPB-3095   Update generic builds to display per theme channel.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2745   Fixed upgrade notices displaying when activation version was not recorded.<\\/li>\\n<li>Update:       JIRA WPB-3019   Updating attribution link creation.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3044   Automatically get Unsplash attribution.<\\/li>\\n<li>Update:       JIRA WPB-3043   Updating plugin description.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3232   Deploy Staging menu item missing.<\\/li>\\n<li>Bug fix:      JIRA WPB-3233   BoldGrid Connect Search missing from new image widget.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2936   Updating YouTube videos for BoldGrid Dashboard\'s new release.<\\/li>\\n<li>Bug fix:      JIRA WPB-2927   Social media menu disappears.<\\/li>\\n<li>Update:       JIRA WPB-2949   Configure blog using categories.<\\/li>\\n<li>Bug fix:      JIRA WPB-2950   Added max height for reseller logos on login page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2925   Sidebar widgets don\'t match between preview and installed site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2951   Images in staging posts not being downloaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2955   Backwards compatibility - maps taking up 200px empty space.<\\/li>\\n<li>Bug fix:      JIRA WPB-2984   Attribution page 404.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2912   Fixed issue when installing plugins from the Tools Import page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2916   Inspirations deploy fatal error if an old forked plugin had the original installed.<\\/li>\\n<li>Bug fix:      JIRA WPB-2905   If installing via Author, do not update pages with survey data.<\\/li>\\n<li>Bug fix:      JIRA WPB-2910   Unterminated entity reference bug.<\\/li>\\n<li>Update:       JIRA WPB-2913   Validate email address in survey.<\\/li>\\n<li>Bug fix:      JIRA WPB-2404   iframe timeout in step 2 of Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2173   Error deleting image and redownloading.<\\/li>\\n<li>Bug fix:      JIRA WPB-2635   Start over staging affecting active site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2493   Publish private posts during staging deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-2796   Social media urls end in \\/username, go to 404s.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2892   Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).<\\/li>\\n<li>Update:       JIRA WPB-2900   Update verbiage of build coin cost.<\\/li>\\n<li>Bug fix:      JIRA WPB-2901   Scroll bars not visible on preview iframe in Chrome.<\\/li>\\n<li>Bug fix:                      Removing CTA hooks.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.7<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2819   Use switch instead of checkbox for Demo.<\\/li>\\n<li>Bug fix:      JIRA WPB-2780   Theme screenshots opening directly, rather than within gallery.<\\/li>\\n<li>Update:       JIRA WPB-2825   Adjust do not display formatting.<\\/li>\\n<li>Update:       JIRA WPB-2829   Updating hook to resolve BoldGrid SEO plugin conflicts.<\\/li>\\n<li>Update:       JIRA WPB-2837   Remove loading image after selecting theme in Gallery.<\\/li>\\n<li>Update:       JIRA WPB-2839   Minor verbiage change for Add a blog.<\\/li>\\n<li>Update:       JIRA WPB-2785   Entering words with apostrophe in it for Site title displays with a Backslash.<\\/li>\\n<li>Bug fix:      JIRA WPB-2848   Customize link takes users back to Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2527   \'New from GridBlocks\' preview page appearing in cart.<\\/li>\\n<li>Bug fix:      JIRA WPB-2862   Survey, invalid argument supplied for foreach.<\\/li>\\n<li>Bug fix:      JIRA WPB-2601   Inspirations Internet Explorer\\/ Stuck on loading themes.<\\/li>\\n<li>Bug fix:      JIRA WPB-2854   Downloading Image spinner never stops spinning.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2772   PHP warnings on deploy in WordPress 4.3.7.<\\/li>\\n<li>Bug fix:      JIRA WPB-2766   Plesk and WP-CLI were not getting private repo updates.<\\/li>\\n<li>Update:       JIRA WPB-2763   Update email and address on Contact Us page.<\\/li>\\n<li>Update:       JIRA WPB-2764   Remove option to add a map.<\\/li>\\n<li>Update:       JIRA WPB-2765   Allow iframes for preview builds.<\\/li>\\n<li>New feature:  JIRA WPB-2771   Update footer-company-details widget with survey data.<\\/li>\\n<li>New feature:  JIRA WPB-2777   Add an Install sample blog checkbox.<\\/li>\\n<li>New feature:  JIRA WPB-2778   Setup a blog during deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-2792   Staged posts (private posts) are trashed when starting over active site.<\\/li>\\n<li>Update:       JIRA WPB-2800   Ensure \'Install a blog\' works with Staging.<\\/li>\\n<li>Update:       JIRA WPB-2801   Remove milestones classes.<\\/li>\\n<li>Bug fix:      JIRA WPB-2779   Survey not working with Staging.<\\/li>\\n<li>Update:       JIRA WPB-2805   Preview builds w &amp; w\\/o blogs.<\\/li>\\n<li>New feature:  JIRA WPB-2806   Add filter for Inspirations configs.<\\/li>\\n<li>Bug fix:      JIRA WPB-2808   Do not request generic builds when requesting blog as well.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.5<\\/h4>\\n\\n<ul>\\n<li>Testing:      JIRA WPB-2744   Tested on WordPress 4.7.<\\/li>\\n<li>Update:       JIRA WPB-2376   Filter the bgtfw contact blocks.<\\/li>\\n<li>Update:       JIRA WPB-2476   Update case of Company name.<\\/li>\\n<li>Update:       JIRA WPB-2747   Update Add a map verbiage.<\\/li>\\n<li>Update:       JIRA WPB-2749   Add a map to my Contact page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2658   Fix spacing issues atop Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2751   Show all in the smaller view of inspirations doesn\'t work anymore.<\\/li>\\n<li>Bug fix:      JIRA WPB-2757   Apostrophe and other strange characters installed via Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2759   DOMDocument::loadHTML(): htmlParseEntityRef: expecting \';\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2696   Remove placeholders from survey.<\\/li>\\n<li>New feature:  JIRA WPB-2697   Update phone numbers in widgets.<\\/li>\\n<li>New feature:  JIRA WPB-2699   Use phone number entered during survey.<\\/li>\\n<li>Update:       JIRA WPB-2704   Adjust format of how social media icons are saved.<\\/li>\\n<li>New feature:  JIRA WPB-2705   Use survey social media items when creating menu.<\\/li>\\n<li>Update:       JIRA WPB-2711   Show optional message in survey.<\\/li>\\n<li>Update:       JIRA WPB-2712   Have plus sign toggle more social icons.<\\/li>\\n<li>Update:       JIRA WPB-2723   Update phone in pages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2627   Back \\/ next buttons should not be clickable.<\\/li>\\n<li>Bug fix:      JIRA WPB-2625   Behavior of last image\'s next button in Inspirations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.2<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2582   Always show arrows in Inspirations gallery.<\\/li>\\n<li>Update:       JIRA WPB-2583   Ensure first letter in theme\'s title attribute is capitalized.<\\/li>\\n<li>Update:       JIRA WPB-2599   Add placeholder for 4th step to Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2551   Duplicate images.<\\/li>\\n<li>New feature:  JIRA WPB-2603   Add initial version of survey.<\\/li>\\n<li>Bug fix:      JIRA WPB-2622   Inspirations - Step 4 - Go back button installs site.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.1<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2503   Added plugin requirements to readme.txt file.<\\/li>\\n<li>Bug fix:      JIRA WPB-2539   Fix possible duplicate connection issue notice from ajax.js call.<\\/li>\\n<li>Bug fix:      JIRA WPB-2558   Don\'t display feedback widget if user hasn\'t entered their key.<\\/li>\\n<li>Bug fix:      JIRA WPB-2559   Don\'t allow widgets to drag into welcome box area.<\\/li>\\n<li>Bug fix:      JIRA WPB-2555   Images in search results flicker.<\\/li>\\n<li>Update:       JIRA WPB-2563   Convert Attribution page to use custom post type.<\\/li>\\n<li>Update:       JIRA WPB-2568   Added fancybox and large previews to Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2570   Milestone blogname change.<\\/li>\\n<li>Update:       JIRA WPB-2574   Milestone Social Media Change.<\\/li>\\n<li>Update:       JIRA WPB-2578   Milestone Contact Info Footer Change.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2544   Disable \'Install\' button after clicking it.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.13<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2531   Javascript error checking needed for mine count.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.12<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2472   Added update notice for 1.3.<\\/li>\\n<li>Bug fix:      JIRA WPB-2486   Incorrect page count on All Pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-2467   With staging disabled, Customize goes to \\\"Change Themes\\\".<\\/li>\\n<li>Update:       JIRA WPB-2488   Remove \'Permanently delete pages instead of sending to trash\'.<\\/li>\\n<li>Update:       JIRA WPB-2490   Move default option to \'install as staging\'.<\\/li>\\n<li>Update:       JIRA WPB-2491   Add \'Customize > Active Theme\' navigation to Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2496   Require comment text in feedback form.<\\/li>\\n<li>Update:       JIRA WPB-2229   Update error reporting when purchasing images.<\\/li>\\n<li>Update:       JIRA WPB-2498   Change \'Company Name\' to theme name.<\\/li>\\n<li>Update:       JIRA WPB-2497   Add new dashboard videos.<\\/li>\\n<li>Bug fix:      JIRA WPB-2376   \'No search results\' method is not cleared in BGCS.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.11<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2468   Switching between boldgrid admin menu and standard wp menu no longer works.<\\/li>\\n<li>Bug fix:      JIRA WPB-2477   If you have an existing site non BG, no route for staging exists.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2446   Fixed missing build id passed on site install.<\\/li>\\n<li>Bug fix:      JIRA WPB-2426   Insert Gridblock button is missing.<\\/li>\\n<li>Bug fix:      JIRA WPB-2443   When starting over, I get a blank page.<\\/li>\\n<li>Bug fix:      JIRA WBP-2445   Inspirations is not fetching cached themes.<\\/li>\\n<li>Update:       JIRA WPB-2458   Update \'Recommended\' verbiage in last step of Inspirations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.9<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2420   Added EOF line breaks.<\\/li>\\n<li>Bug fix:      JIRA WPB-2387   Fixed issue with AJAX theme updates and BG theme slugs duplicated in the WP repo.<\\/li>\\n<li>Bug fix:      JIRA WPB-2324   Attribution should not show in 404 sitemap.<\\/li>\\n<li>Bug fix:      JIRA WPB-2403   No plugins recommended still showing notice.<\\/li>\\n<li>Update:       JIRA WPB-2416   Text changes for confirmation section of Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2417   Add additional text to deployment success page for staging.<\\/li>\\n<li>Bug fix:      JIRA WPB-2421   Message showing when it shouldn\'t - We\'ve recognized that you haven\'t installed...<\\/li>\\n<li>Bug fix:      JIRA WPB-2112   BoldGrid Connect Search missing for galleries.<\\/li>\\n<li>Bug fix:      JIRA WPB-2422   Fixed CSS Loading graphic animation in chrome to display properly.<\\/li>\\n<li>Bug fix:      JIRA WPB-2401   Gallery not displaying correctly in Chrome &amp;&amp; FF.<\\/li>\\n<li>Bug fix:      JIRA WPB-2423   Trying to get property of non-object in ...stock-photography.php.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2398   Error requesting free key.<\\/li>\\n<li>Bug fix:      JIRA WPB-2399   Only show feedback widget to admins.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.7<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2389   Fixed saving BoldGrid Settings.<\\/li>\\n<li>Bug fix:      JIRA WPB-2388   Removed duplicate boldgrid_activate().<\\/li>\\n<li>Update:       JIRA WPB-2390   Update verbiage for inspirations install success.<\\/li>\\n<li>Bug fix:      JIRA WPB-2391   Hide BoldGrid Welcome Panel if key isn\'t entered yet.<\\/li>\\n<li>Bug fix:      JIRA WPB-2392   If key is less than 32 char don\'t make call to validate.<\\/li>\\n<li>Bug fix:      JIRA WPB-2393   Error messages should be removed when resubmitting keys.<\\/li>\\n<li>Bug fix:      JIRA WPB-2394   Cursor for show\\/hide log should be a pointer.<\\/li>\\n<li>Update:       JIRA WPB-2395   Update login page styling.<\\/li>\\n<li>Bug fix:      JIRA WPB-2396   Remove staging from recommended plugin notices.<\\/li>\\n<li>Bug fix:      JIRA WPB-2327   Check if framework is handling plugin recommendations before recommending.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.6<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2344   Updated readme.txt for Tested up to 4.6.1.<\\/li>\\n<li>Bug fix:      JIRA WPB-2336   Load BoldGrid settings from the correct WP option (site\\/blog).<\\/li>\\n<li>Bug fix:      JIRA WPB-2248   Removed \'New From GridBlocks\' button on edit submission page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2332   Reset scroll position on step 2 of Inspirations to top.<\\/li>\\n<li>Bug fix:      JIRA WPB-2339   Remove notices from Inspirations page.<\\/li>\\n<li>Update:       JIRA WPB-2208   Removed tutorials from Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2359   Order \'Category Filter\' by category display order.<\\/li>\\n<li>Update:       JIRA WPB-2360   Sort themes by category and then order within category.<\\/li>\\n<li>Update:       JIRA WPB-2368   Read version constant from plugin file.<\\/li>\\n<li>Update:       JIRA WPB-2361   Add BoldGrid Connect Search to Editor\'s background image tool.<\\/li>\\n<li>Update:       JIRA WPB-2354   Preview button needs to always be visible in mobile view.<\\/li>\\n<li>Update:       JIRA WPB-2355   Remove extraneous \'Preview\' button.<\\/li>\\n<li>Bug fix:      JIRA WPB-2364   Inspirations not respecting theme release channel.<\\/li>\\n<li>Bug fix:      JIRA WPB-2370   Color in screenshot does not match preview.<\\/li>\\n<li>Bug fix:      JIRA WPB-2373   Duplicate themes in Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2379   Wrong budget passed when going form step 2 to step 1.<\\/li>\\n<li>Update:       JIRA WPB-2380   Remove references to tutorials in deployment congrats message.<\\/li>\\n<li>Bug fix:      JIRA WPB-2383   Image Search tab appears when clicking \'Add GridBlock\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2325   Added wrapper to handle mb<em>convert<\\/em>encoding() if mbstring is not loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2313   Disabled GridBlocks in network admin pages.<\\/li>\\n<li>New feature:  JIRA WPB-2268   Changed to resized preview screenshots for Inspirations Design First concept.<\\/li>\\n<li>New feature:  JIRA WPB-2287   Adjust device preview buttons in step 2 to behave like those in editor.<\\/li>\\n<li>New feature:  JIRA WPB-2291   Auto install staging in final step if user chooses staging.<\\/li>\\n<li>Update:       JIRA WPB-2290   Changed \'Install\' button to \'Next\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-2289   Continuously clicking category in step 1 shuffles themes.<\\/li>\\n<li>Update:       JIRA WPB-2267   Added message to Inspirations when no generic themes are available.<\\/li>\\n<li>Update:       JIRA WPB-2315   Added error handling for malformed ajax results for call to \\/api\\/build\\/get-generic.<\\/li>\\n<li>Update:       JIRA WPB-2316   Add error handling for failures to fetch categories.<\\/li>\\n<li>Update:       JIRA WPB-2317   Add error handling for failures to fetch pagesets.<\\/li>\\n<li>Update:       JIRA WPB-2319   Check user capabilities before prompting for api key.<\\/li>\\n<li>Update:       JIRA WPB-2320   Ensure user has permission to edit page before allowing download<em>and<\\/em>insert<em>into<\\/em>page.<\\/li>\\n<li>Update:       JIRA WPB-2322   Sanitize user feedback before adding to options table.<\\/li>\\n<li>Update:       JIRA WPB-2323   Allow admin notices to be dismissed per user.<\\/li>\\n<li>Update:       JIRA WPB-2326   Update \'update\' class to utilize Admin Notices class.<\\/li>\\n<li>Update:       JIRA WPB-2327   Check user capabilities before showing admin notices.<\\/li>\\n<li>Update:       JIRA WPB-2331   Update confirmation messages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2269   Typo fix in Boldgrid<em>Inspirations<\\/em>Dependency<em>Plugins::print<\\/em>uninstalled_plugins().<\\/li>\\n<li>Bug fix:      JIRA WPB-2270   New From GridBlocks became unavailable.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-2172   For preview generic builds, added an option for identification for purges, etc.<\\/li>\\n<li>Bug fix:      JIRA WPB-2263   For preview sites under multisite, set the admin email address using the network admin email address.<\\/li>\\n<li>Bug fix:      JIRA WPB-2223   Reworked API key validation and connection issue notices, formatting.<\\/li>\\n<li>Misc:         JIRA WPB-2256   Updated readme.txt for Tested up to: 4.6.<\\/li>\\n<li>Rework:       JIRA WPB-2150   Moved API methods to a new class, formatting, and phpcs rework.<\\/li>\\n<li>Bug fix:      JIRA WPB-2224   Hide the email address field when widget is loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2225   Fixed jQuery Migrate deprecated warning.<\\/li>\\n<li>Update:       JIRA WPB-2245   Changed feed to pull from dashboard tag on blog.<\\/li>\\n<li>Bug fix:      JIRA WPB-2265   Uncaught TypeError: IMHWPB.BaseAdmin is not a constructor.<\\/li>\\n<li>Bug fix:      JIRA WBP-2236   Errors everywhere when logging in as an Editor.<\\/li>\\n<li>Bug fix:      JIRA WPB-2234   Add current<em>user<\\/em>can checks to Boldgrid<em>Inspirations->set<\\/em>api<em>key<\\/em>callback().<\\/li>\\n<li>Bug fix:      JIRA WPB-2237   Limit ajax requests by user.<\\/li>\\n<li>Bug fix:      JIRA WPB-2240   Limit printing of configs in head.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2058   Added wrap class to the tutorials page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2184   In PHP 5.2, deactivate and die properly.<\\/li>\\n<li>New feature:                  Added BoldGrid news widget to dashboard.<\\/li>\\n<li>Bug fix:      JIRA WPB-1994   Fixed issue with WP Theme Editor not being available.<\\/li>\\n<li>New feature:                  Added BoldGrid Feedback widget.<\\/li>\\n<li>Bug fix:      JIRA WPB-2169   Connect Search defaults to smallest image size when no recommended sizes available.<\\/li>\\n<li>Bug fix:    JIRA WPB-2192 Allow bug report to correctly show parent themes if submitted.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2160   New From GridBlocks, multiple pages are installed.<\\/li>\\n<li>Update:                       Changed text of getting and entering connect keys.<\\/li>\\n<li>Security:     JIRA WPB-2151   Disabled autocomplete for API key entry fields.<\\/li>\\n<li>Bug fix:      JIRA WPB-2145   Fixing issue with theme screenshots on Chrome Ubuntu.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2119   For asset downloads, when Imagick is loaded, set the thread limit to 1.<\\/li>\\n<li>Bug fix:      JIRA WPB-2125   Fixing issue where theme was overwritten without version change.<\\/li>\\n<li>Bug fix:      JIRA WPB-2104   Go back button hides all themes (Inspirations > Add Theme).<\\/li>\\n<li>Bug fix:      JIRA WPB-2107   BoldGrid Connect Search overlapping footer (Dashboard > Media).<\\/li>\\n<li>Bug fix:      JIRA WPB-2109   Session issues when starting over and importing active site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2116   Changes to the order of images in a gallery are not saving.<\\/li>\\n<li>Bug fix:      JIRA WPB-2134   Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.<\\/li>\\n<li>Bug fix:      JIRA WPB-2135   Image not replaced in Page &amp; Post Editor after using Connect Search.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2058   Added wrap class to Inspirations, so admin notices are displayed at the top.<\\/li>\\n<li>Bug fix:      JIRA WPB-2041   Fixed BoldGrid theme update check in WordPress 4.6.<\\/li>\\n<li>Testing:      JIRA WPB-2046   Tested on WordPress 4.5.3.<\\/li>\\n<li>New feature:  JIRA WPB-599    Added options for plugin and theme auto-updates via WordPress autoupdater.<\\/li>\\n<li>Update:       JIRA WPB-2008   Deploy class updated to allow for is_generic flag.<\\/li>\\n<li>Bug fix:      JIRA WPB-1950   Prevent a portait image from displaying atop \'Crop Image\' and \'Skip Cropping\' buttons.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.7<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2032   Fixed issue when activating key.  Added nonce to api key form.<\\/li>\\n<li>Rework:       JIRA WPB-2030   Updated the \\\"I don\'t have an API key\\\" section.<\\/li>\\n<li>New feature:  JIRA WPB-2029   Added TOS box to API key submission form.<\\/li>\\n<li>New feature:  JIRA WPB-1905   Added capability for auto-updates of boldgrid-inspirations by API response.<\\/li>\\n<li>Bug fix:      JIRA WPB-2002   Fixed theme update issue where upgrader says is up to date at times.<\\/li>\\n<li>Bug fix:      JIRA WPB-2006   Pdes and Homepage not installing correctly on Inpirations Theme Only installs.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.6<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1839   Users can now change their theme release channel.<\\/li>\\n<li>Security fix: JIRA WPB-1977   Validate nonce for feedback form diagnostic data callback and form submit.<\\/li>\\n<li>Bug fix:      JIRA WPB-1955   Fatal error: Class \'Boldgrid<em>Staging<\\/em>Plugin\' not found.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1914   Staged image used on Active page not showing in cart.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1886   Fixed feedback notice being displayed too often (more than a week after submitting).<\\/li>\\n<li>New feature:  JIRA WPB-1183   Refresh the Library Tab after downloading an image.<\\/li>\\n<li>Update:       JIRA WPB-1865   Update style of \'Transactions\' pages to better incorporate BoldGrid Staging\'s nav menu.<\\/li>\\n<li>Update:       JIRA WPB-1884   Passed WordPress 4.5.1 testing.<\\/li>\\n<li>Bug fix:      JIRA WPB-1855   Do not display feedback notice on update or setting pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1860   Fixed horizontal line through screenshot in step 2.<\\/li>\\n<li>Bug fix:      JIRA WPB-1863   Cart does not look for watermarked images used within staged pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1891   View \\/ Download of images within receipts not working for images purchased via Staging.<\\/li>\\n<li>Bug fix:      JIRA WPB-1893   JS errors in console when viewing attachments.<\\/li>\\n<li>Bug fix:      JIRA WPB-1900   Attribution shows in menu when menu generated using wp<em>page<\\/em>menu.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1824   Fixed order of plugin deactivation and uninstall in Start Over process.<\\/li>\\n<li>Bug fix:      JIRA WPB-1814   Fixed PHP notice in page and post editor for In Menu when there is a corrupted nav menu array.<\\/li>\\n<li>Bug fix:      JIRA WPB-1823   Fixed display of \\\"Themes\\\" H1 and the additional themes bar when choosing active or staging before installing a theme.<\\/li>\\n<li>Bug fix:      JIRA WPB-1840   Fixing thumbnail presentation in inspirations and add new theme.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.3<\\/h4>\\n\\n<ul>\\n<li>Update:               Sync version. See version 1.1.1.1.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1833   Fixed checking for previously downloaded assets in deployment when using multisite (wp-preview).<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1817   BoldGrid Connect Search: Was not being added when changing a header image in the Customizer.<\\/li>\\n<li>Rework:       JIRA WPB-1541   Removed feedback form bug report diagnostic report items.<\\/li>\\n<li>Bug fix:      JIRA WPB-1816   Fixed update class interference with the Add Plugins page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1809   Fixed undefined index \\\"action\\\" for some scenarios.  Optimized update class and addressed CodeSniffer items.<\\/li>\\n<li>Rework:       JIRA WPB-1541   Reworked admin feedback notice.<\\/li>\\n<li>Rework:       JIRA WPB-1751   Removed analysis processing and optional logging capabilities.  Added support for XHProf.<\\/li>\\n<li>Bug fix:      JIRA WPB-1805   Now adds theme update info on the Customizer Themes page.<\\/li>\\n<li>Rework:       JIRA WPB-1785   Enabled and reworked image caching for the preview server.<\\/li>\\n<li>Rework:       JIRA WPB-1751   Reworked analysis processing.<\\/li>\\n<li>Update:       JIRA WPB-1658   Storing more reliable install data through inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-1787   When not using BoldGrid menu, cart does not dynamically update total page price.<\\/li>\\n<li>Update:       JIRA WPB-1754   Remove attribution page from search results.<\\/li>\\n<li>Bug fix:      JIRA WPB-1788   webkit css missing from \'new from gridblocks\'.<\\/li>\\n<li>New feature:  JIRA WPB-1806   Add \'BoldGrid search\' tab when replacing an image.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix:                      Fixing logo display on login screen.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:                      Fixed analysis include for preview server.<\\/li>\\n<li>Bug fix:                      New From GridBlocks: Asset download issues.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1751   Added analysis processing and optional logging capabilities.<\\/li>\\n<li>Bug fix:      JIRA WPB-1781   Removed boldgrid<em>dismissed<\\/em>admin_notices from Start Over cleanup.<\\/li>\\n<li>New feature:  JIRA WPB-1541   Added feedback notice.<\\/li>\\n<li>Bug fix:      JIRA WPB-1747   New From GridBlocks: For non BoldGrid themes, only load grid css.<\\/li>\\n<li>Bug fix:      JIRA WPB-1760   New From GridBlocks: Ensure page title shows on preview page.<\\/li>\\n<li>Update:       JIRA WPB-1779   New From GridBlocks: Update verbiage for \'Downloading GridBlocks\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.12.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1710   Fixed missing device preview tabs on Add New Theme preview modal.<\\/li>\\n<li>Bug fix:      JIRA WPB-1710   Fixed notice dismissal checking.<\\/li>\\n<li>Bug fix:      JIRA WPB-1749   On start over, staging menus are not deleted.<\\/li>\\n<li>Bug fix:      JIRA WPB-1755   Gallery images not showing in cart.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.12<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1740   Fixed \\\"In Menu\\\" messages in editor when staging plugin is not active, and fixed saving menu selections.<\\/li>\\n<li>New feature:  JIRA WPB-1726   Added optional feedback for GridBlock Add Page.<\\/li>\\n<li>Removed Ft:   JIRA WPB-1710   Removed Inspirations Add Pages; replaced by GridBlocks.<\\/li>\\n<li>Misc:         JIRA WPB-1361   Added license file.<\\/li>\\n<li>New feature:                  Don\'t assign footer contact widget if using base pagesets.<\\/li>\\n<li>Bug Fix:      JIRA WPB-1732   Fixing css issues on login screen (firefox).<\\/li>\\n<li>Bug Fix:      JIRA WPB-1687   Image search: Title, Caption, Alt Text and Description do not display on new pages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.11<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1699   Added optional feedback for theme activation.<\\/li>\\n<li>New feature:  JIRA WPB-1690   Adding BoldGrid themes to All themes install menu.<\\/li>\\n<li>Bug fix:      JIRA WPB-1686   Limited items loaded in network admin pages.<\\/li>\\n<li>Improvement:  JIRA WPB-1604   Added a \\\"Cancel\\\" link to the \\\"In Menu\\\" section.<\\/li>\\n<li>Improvement:  JIRA WPB-1603   Display menu locations in the editor \\\"In Menu\\\" section.<\\/li>\\n<li>Bug fix:      JIRA WPB-1602   Corrected capitalization of \\\"None\\\" under \\\"In menu\\\" in the editor.<\\/li>\\n<li>Improvement:  JIRA WPB-1664   Gets api<em>key and site<\\/em>hash from configs instead of get_option.<\\/li>\\n<li>Bug fix:      JIRA WPB-1597   Fixing indefined index error<\\/li>\\n<li>New feature:  JIRA WPB-1649   Added reporting of PHP version and mobile ratio.<\\/li>\\n<li>Bug fix:      JIRA WPB-1598   \'Mine\' count on \'all pages\' is incorrect.<\\/li>\\n<li>Bug fix:      JIRA WPB-1647   JS error with easy-attachment-preview-size.js.<\\/li>\\n<li>Bug fix:      JIRA WPB-1651   When the BG menu is turned off, Appearance link should take you to themes.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1632   Fixed handling of subcategory<em>id in deploy<\\/em>page_sets.<\\/li>\\n<li>New feature:  JIRA WPB-1510   Moved adhoc functions.php to class-boldgrid-inspirations-utility.php (class Boldgrid<em>Inspirations<\\/em>Utility).<\\/li>\\n<li>Rework:       JIRA WPB-1553   Updated require and include statements for standards.<\\/li>\\n<li>Bug fix:      JIRA WPB-1563   Updated pages in which wp<em>iframe-media<\\/em>upload.css is loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-1549   Resolve attribution page missing attribution for several images.png.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:                      Add GridBlock Sets feature disabled.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Fixed support for PHP 5.2 to deactivate plugin.<\\/li>\\n<li>Bug fix:                      Prevent click of links in add<em>new<\\/em>page_selection previews.<\\/li>\\n<li>Bug fix:      JIRA WPB-1554   Fixed undefined JavaScript variable pagenow for customizer link.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1554   Fixed theme link in network dashboard nav menu.<\\/li>\\n<li>Bug fix:      JIRA WPB-1590   Fixed JavaScript error for undefined screen info in network dashboard.<\\/li>\\n<li>Bug fix:      JIRA WPB-1535   Fixed theme deployment issues.<\\/li>\\n<li>New feature:  JIRA WPB-1584   Added an opt-out feedback payload delivery system.<\\/li>\\n<li>New feature:  JIRA WPB-1580   Added optional feedback for customizer_start.<\\/li>\\n<li>Bug fix:      JIRA WPB-1571   Removed plugin dependency admin notice when editing an attachment (image).<\\/li>\\n<li>New feature:  JIRA WPB-1579   Added feedback opt-out in BoldGrid Settings, hidden for now.<\\/li>\\n<li>Bug fix:      JIRA WPB-1575   Addressed an issue causing mismatch color palettes on cached previews<\\/li>\\n<li>New feature:  JIRA WPB-1514   Add new pages offers page templates to choose from.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.8.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Fixed PHP version check condition (&lt;5.3).<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1561   Fixed missing get<em>plugin<\\/em>data on update calls.<\\/li>\\n<li>New feature:  JIRA WPB-1511   Added dependency plugin notice on editor pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1553   Added support for <strong>DIR<\\/strong> in PHP &lt;=5.2.<\\/li>\\n<li>Bug fix:      JIRA WPB-1371   JSON encoded image data for media download requests.<\\/li>\\n<li>New feature:  JIRA WPB-1332   Swapping loading GIF to CSS loading image.<\\/li>\\n<li>New feature:  JIRA WPB-1072   Storing static pages on install<\\/li>\\n<li>New feature:  JIRA WPB-1539   When deleting a page, remove it from any applicable menus as well.<\\/li>\\n<li>New feature   JIRA WPB-1542   Manage menu assignment within editor.<\\/li>\\n<li>New feature   JIRA WPB-1555   Add wp-image-## class to images during deployment.<\\/li>\\n<li>New feature   JIRA WPB-1557   Add wp-image-## class to images when adding gridblocks.<\\/li>\\n<li>Bug fix:      JIRA WPB-1506   Theme naming missing in preview.<\\/li>\\n<li>Bug fix:      JIRA WPB-1443   Extra page listed under \'Mine\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1560   Install options not available on preview server<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.7<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1533   Ensured activation data is sent after first login.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.7<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1533   Ensured activation data is sent after first login.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.6<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1411   Added more output to the deploy log.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1462   Fixed position of dependency plugins admin notice.  Also limited to Dashboard and plugins page.<\\/li>\\n<li>Bug fix:      JIRA WPB-1290   Fixing issues with galleries leaving empty spaces<\\/li>\\n<li>Bug fix:      JIRA WPB-1471   Made deployment plugin installation respect release channel.<\\/li>\\n<li>Rework:       JIRA WPB-1452   Remove unneeded call to \'boldgrid<em>activate<\\/em>framework\' during deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-946    Fixed margin bug on step 2 additional themes.<\\/li>\\n<li>Bug fix:      JIRA WPB-1384   Increase width of select input on image search modal.<\\/li>\\n<li>Bug fix:      JIRA WPB-1508   BoldGrid Image search box size is inconsistent.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1442   Fixing inspiration border styles for wordpress 4.4<\\/li>\\n<li>Bug fix:      JIRA WPB-1461   Updating login button styles for wordpress 4.4<\\/li>\\n<li>Bug fix:      JIRA WPB-1411   Added initialization and checks for empty image queues in deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-1406   Attribution page still showing in \'All Pages\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1451   Active images are showing in Staging attribution page.<\\/li>\\n<li>Bug fix:      JIRA WPB-1466   Tabs on tutorials page too small at 1035px - 1482px.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1363   Updated readme.txt for WordPress standards.<\\/li>\\n<li>New feature:  JIRA WPB-1389   When starting over theme mods are saved with a flag to recompile sass<\\/li>\\n<li>Bug fix:      JIRA WPB-1420   Content of Attribution page is overwriting page saves.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1395   Adjusted theme update data; now gets theme uri from theme style.css, download url from api data.<\\/li>\\n<li>Rework        JIRA WPB-1374   Updated activation timestamp to use GMT\\/UTC.<\\/li>\\n<li>Bug fix:      JIRA WPB-1377   Reseller option is now set on first call to either the front end or wp_login.<\\/li>\\n<li>Bug fix:                      Adjusted handling for image purchases when errors occur.<\\/li>\\n<li>Bug fix:      JIRA WPB-1365   Purchase link on editing a page goes to wrong link.<\\/li>\\n<li>Bug fix:      JIRA WPB-1368   Inspirations step 0 text refers to nonexisting help tabs.<\\/li>\\n<li>Rework:       JIRA WPB-1378   Adjusted formatting of footer in Dashboard.<\\/li>\\n<li>Rework:       JIRA WPB-1369   Update minus signs on \'Transaction History\'.<\\/li>\\n<li>New feature:  JIRA WPB-1379   On the transactions page, show the reseller that processed the credits.<\\/li>\\n<li>Bug fix:                      Count of \'All\' pages inaccurate on \'All pages\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1367   Updated link for \'Lost your BoldGrid Connect Key?\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1374   Updated activation timestamp to include timezone in UTC.<\\/li>\\n<li>Bug fix:                      Attribution page shows style tags.<\\/li>\\n<li>Bug fix:                      Strict Standards fix for wp<em>kses<\\/em>allowed_html.<\\/li>\\n<li>Bug fix:                      Fixed incorrect link.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0<\\/h4>\\n\\n<ul>\\n<li>Initial public release.<\\/li>\\n<\\/ul>\\n\",\"upgrade_notice\":\"<h4>1.3<\\/h4>\\n\\n<p>Version 1.3 has been released with a redesigned Inspiration phase. For more information on this change and others, please visit our blog at https:\\/\\/www.boldgrid.com\\/boldgrid-1-3-released\\/ .<\\/p>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Users should upgrade to version 1.0.2 to ensure proper BoldGrid theme updates.<\\/p>\\n\"}\";s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:40609:\"{\"5.2\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.1.1\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.1\":{\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0.5\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0.4\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0.3\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0.2\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0.1\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"5.0\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.9\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.8\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.6\":{\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.5\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.4\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.10\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.9\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.8\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.6\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.8\":{\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.9\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.13\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.12\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.11\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.10\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.12\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.11\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.10\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.4.10\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]},\"4.3.1\":{\"0.29\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8.1\":[100,12],\"1.0.9.1\":[100,12],\"1.0.9.2\":[100,12],\"1.0.10\":[100,12],\"1.0.11\":[100,12],\"1.0.12.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2.1\":[100,12],\"1.1.2.3\":[100,12],\"1.1.1.1\":[100,12],\"1.1.3\":[100,12],\"1.1.4\":[100,12],\"1.1.5\":[100,12],\"1.1.6\":[100,12],\"1.1.7\":[100,12],\"1.1.8\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.5\":[100,12],\"1.2.8\":[100,12],\"1.2.9\":[100,12],\"1.2.11\":[100,12],\"1.2.13\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,12],\"1.4.4\":[100,12],\"1.4.5\":[100,12],\"1.4.6\":[100,12],\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:113:\"{\"inspiration\":\"Inspiration\",\"customization\":\"Customization\",\"build\":\"Build\",\"create\":\"Create\",\"design\":\"Design\"}\";s:7:\"banners\";s:151:\"{\"low\":\"//repo.boldgrid.com/assets/banner-inspirations-banner-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-inspirations-banner-1544x500.png\"}\";s:6:\"editor\";O:8:\"stdClass\":3:{s:7:\"version\";s:7:\"1.6.0.2\";s:5:\"title\";s:15:\"BoldGrid Editor\";s:8:\"asset_id\";s:6:\"900312\";}s:7:\"staging\";O:8:\"stdClass\":3:{s:7:\"version\";s:5:\"1.5.1\";s:5:\"title\";s:16:\"BoldGrid Staging\";s:8:\"asset_id\";s:6:\"876738\";}s:14:\"theme_versions\";O:8:\"stdClass\":22:{s:2:\"26\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.19.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017311;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-uptempo-1.19.4.zip\";}s:2:\"28\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017306;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-diced-1.24.4.zip\";}s:2:\"29\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017300;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-evolv-1.24.4.zip\";}s:2:\"30\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.19.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017294;s:7:\"package\";s:63:\"https://repo.boldgrid.com/themes/boldgrid-florentine-1.19.4.zip\";}s:2:\"31\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017289;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-hifidel-1.24.4.zip\";}s:2:\"32\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017283;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-hydra-1.24.4.zip\";}s:2:\"33\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017275;s:7:\"package\";s:57:\"https://repo.boldgrid.com/themes/boldgrid-linx-1.24.4.zip\";}s:2:\"34\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017269;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-pavilion-1.24.4.zip\";}s:2:\"35\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017266;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-primas-1.24.4.zip\";}s:2:\"36\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.19.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017263;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-resolve-1.19.4.zip\";}s:2:\"38\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017260;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-vacation-1.24.4.zip\";}s:2:\"40\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.24.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017256;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-gridone-1.24.4.zip\";}s:2:\"42\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.17.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017248;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-venetian-1.17.4.zip\";}s:2:\"43\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.17.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017243;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-haven-1.17.4.zip\";}s:2:\"44\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.15.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017234;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-wedge-1.15.4.zip\";}s:2:\"45\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.14.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017227;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-monument-1.14.4.zip\";}s:2:\"48\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.2.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017220;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-callaway-1.2.4.zip\";}s:2:\"49\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.2.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017211;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-swifty-1.2.4.zip\";}s:2:\"50\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.2.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017206;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.2.4.zip\";}s:2:\"51\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.2.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017203;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-westview-1.2.4.zip\";}s:2:\"52\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"0.3.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017200;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-lattice-0.3.4.zip\";}s:2:\"99\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.2.4\";s:7:\"updated\";s:10:\"2019-08-29\";s:8:\"asset_id\";i:1017206;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.2.4.zip\";}}s:9:\"site_hash\";s:32:\"9dada5b411f127e06cfdfd132367e0bb\";s:19:\"reseller_identifier\";s:3:\"IMH\";s:14:\"reseller_title\";s:16:\"InMotion Hosting\";s:17:\"reseller_logo_url\";s:78:\"./wp-content/plugins/boldgrid-inspirations/assets/images/wordpressinmotion.png\";s:20:\"reseller_website_url\";s:32:\"https://www.inmotionhosting.com/\";s:20:\"reseller_support_url\";s:52:\"http://www.inmotionhosting.com/support/edu/boldgrid/\";s:16:\"reseller_amp_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:14:\"reseller_email\";s:27:\"support@inmotionhosting.com\";s:14:\"reseller_phone\";s:14:\"1-888-321-4678\";s:16:\"reseller_css_url\";s:71:\"/wp-content/plugins/boldgrid-inspirations/assets/css/boldgrid-login.css\";s:17:\"reseller_coin_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:20:\"reseller_brand_login\";b:1;s:13:\"wporg_plugins\";O:8:\"stdClass\":3:{s:6:\"backup\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:50:\"https://plugins.svn.wordpress.org/boldgrid-backup/\";s:11:\"package_url\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.11.0.zip\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:8:\"old_slug\";s:15:\"boldgrid-backup\";s:5:\"title\";s:15:\"BoldGrid Backup\";s:7:\"version\";s:6:\"1.11.0\";}s:6:\"editor\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:56:\"https://plugins.svn.wordpress.org/post-and-page-builder/\";s:11:\"package_url\";s:71:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.11.0.zip\";s:4:\"slug\";s:21:\"post-and-page-builder\";s:8:\"old_slug\";s:15:\"boldgrid-editor\";s:5:\"title\";s:21:\"Post and Page Builder\";s:7:\"version\";s:6:\"1.11.0\";}s:3:\"seo\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:52:\"https://plugins.svn.wordpress.org/boldgrid-easy-seo/\";s:11:\"package_url\";s:66:\"https://downloads.wordpress.org/plugin/boldgrid-easy-seo.1.6.3.zip\";s:4:\"slug\";s:17:\"boldgrid-easy-seo\";s:8:\"old_slug\";s:12:\"boldgrid-seo\";s:5:\"title\";s:17:\"BoldGrid Easy SEO\";s:7:\"version\";s:5:\"1.6.3\";}}s:9:\"is_author\";b:0;}}s:14:\"license_status\";b:1;s:7:\"updated\";i:1567107382;}','no');
/*!40000 ALTER TABLE `wpym_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpym_postmeta`
--

DROP TABLE IF EXISTS `wpym_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpym_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=247 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpym_postmeta`
--

LOCK TABLES `wpym_postmeta` WRITE;
/*!40000 ALTER TABLE `wpym_postmeta` DISABLE KEYS */;
INSERT INTO `wpym_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_wp_page_template','default'),(4,19,'_menu_item_type','post_type'),(5,19,'_menu_item_menu_item_parent','0'),(6,19,'_menu_item_object_id','18'),(7,19,'_menu_item_object','page'),(8,19,'_menu_item_target',''),(9,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10,19,'_menu_item_xfn',''),(11,19,'_menu_item_url',''),(12,18,'_wp_page_template','page_home.php'),(13,18,'_wp_page_template','page_home.php'),(14,18,'boldgrid_in_page_containers','1'),(15,18,'boldgrid_page_id','210'),(16,21,'_menu_item_type','post_type'),(17,21,'_menu_item_menu_item_parent','0'),(18,21,'_menu_item_object_id','20'),(19,21,'_menu_item_object','page'),(20,21,'_menu_item_target',''),(21,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(22,21,'_menu_item_xfn',''),(23,21,'_menu_item_url',''),(24,20,'_wp_page_template','default'),(25,20,'boldgrid_in_page_containers','1'),(26,20,'boldgrid_page_id','1'),(27,23,'_menu_item_type','post_type'),(28,23,'_menu_item_menu_item_parent','0'),(29,23,'_menu_item_object_id','22'),(30,23,'_menu_item_object','page'),(31,23,'_menu_item_target',''),(32,23,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(33,23,'_menu_item_xfn',''),(34,23,'_menu_item_url',''),(35,22,'_wp_page_template','default'),(36,22,'boldgrid_in_page_containers','1'),(37,22,'boldgrid_page_id','2'),(38,2,'_wp_trash_meta_status','publish'),(39,2,'_wp_trash_meta_time','1567095248'),(40,2,'_wp_desired_post_slug','sample-page'),(41,1,'_wp_trash_meta_status','publish'),(42,1,'_wp_trash_meta_time','1567095248'),(43,1,'_wp_desired_post_slug','hello-world'),(44,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),(107,100,'_wp_attached_file','2019/08/1e90ba79-43556005-georgerudy150600236.jpg'),(108,100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:49:\"2019/08/1e90ba79-43556005-georgerudy150600236.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"1e90ba79-43556005-georgerudy150600236-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:\"1e90ba79-43556005-georgerudy150600236-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(109,101,'_wp_attached_file','2019/08/51c7c506-4f8fcc-pressmaster141000597.jpg'),(110,101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:48:\"2019/08/51c7c506-4f8fcc-pressmaster141000597.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"51c7c506-4f8fcc-pressmaster141000597-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:\"51c7c506-4f8fcc-pressmaster141000597-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(111,102,'_wp_attached_file','2019/08/ad93b136-8e9c904c-gstockstudio150600485.jpg'),(112,102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:299;s:6:\"height\";i:450;s:4:\"file\";s:51:\"2019/08/ad93b136-8e9c904c-gstockstudio150600485.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"ad93b136-8e9c904c-gstockstudio150600485-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:51:\"ad93b136-8e9c904c-gstockstudio150600485-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;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:{}}}'),(105,99,'_wp_attached_file','2019/08/049815ef-94b585b1-stockbroker141101204.jpg'),(106,99,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:50:\"2019/08/049815ef-94b585b1-stockbroker141101204.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"049815ef-94b585b1-stockbroker141101204-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:50:\"049815ef-94b585b1-stockbroker141101204-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(103,98,'_wp_attached_file','2019/08/4eb7e26f-71280d42-konradbak131200112.jpg'),(104,98,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:321;s:4:\"file\";s:48:\"2019/08/4eb7e26f-71280d42-konradbak131200112.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"4eb7e26f-71280d42-konradbak131200112-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:\"4eb7e26f-71280d42-konradbak131200112-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;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:{}}}'),(96,78,'_wp_trash_meta_status','publish'),(97,78,'_wp_trash_meta_time','1567097761'),(98,3,'_wp_trash_meta_status','draft'),(99,3,'_wp_trash_meta_time','1567097803'),(100,3,'_wp_desired_post_slug','privacy-policy'),(101,97,'_wp_attached_file','2019/08/7c53e901-55cfa000-axelbueckert141000039.jpg'),(102,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:450;s:4:\"file\";s:51:\"2019/08/7c53e901-55cfa000-axelbueckert141000039.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"7c53e901-55cfa000-axelbueckert141000039-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:51:\"7c53e901-55cfa000-axelbueckert141000039-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;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:{}}}'),(93,80,'_wp_attached_file','2019/08/cropped-BSG-Logo-1.png'),(94,80,'_wp_attachment_context','site-icon'),(95,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:30:\"2019/08/cropped-BSG-Logo-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-BSG-Logo-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:30:\"cropped-BSG-Logo-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:30:\"cropped-BSG-Logo-1-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:30:\"cropped-BSG-Logo-1-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:30:\"cropped-BSG-Logo-1-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:28:\"cropped-BSG-Logo-1-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:{}}}'),(92,79,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:222;s:6:\"height\";i:232;s:4:\"file\";s:28:\"2019/08/cropped-BSG-Logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-BSG-Logo-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:{}}}'),(78,20,'boldgrid_hide_page_title','0'),(79,20,'_edit_last','1'),(80,20,'_thumbnail_id','58'),(81,20,'bgseo_robots_index','index'),(82,20,'bgseo_robots_follow','follow'),(83,18,'_edit_lock','1567107220:1'),(84,22,'_edit_lock','1567105394:1'),(85,22,'_edit_last','1'),(86,22,'boldgrid_hide_page_title','1'),(87,22,'bgseo_robots_index','index'),(88,22,'bgseo_robots_follow','follow'),(89,78,'_edit_lock','1567097706:1'),(90,79,'_wp_attached_file','2019/08/cropped-BSG-Logo.png'),(91,79,'_wp_attachment_context','boldgrid-logo-setting'),(77,59,'_wp_attachment_image_alt','ODU - Foreman Field Reconstruction'),(75,59,'_wp_attached_file','2019/08/cq5dam-web-1280-1280-13.jpg'),(76,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:35:\"2019/08/cq5dam-web-1280-1280-13.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"cq5dam-web-1280-1280-13-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:35:\"cq5dam-web-1280-1280-13-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"cq5dam-web-1280-1280-13-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"cq5dam-web-1280-1280-13-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;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:{}}}'),(65,36,'_wp_attached_file','2019/08/d059a2ca-53d6b1-peshkov150600019.jpg'),(66,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:44:\"2019/08/d059a2ca-53d6b1-peshkov150600019.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"d059a2ca-53d6b1-peshkov150600019-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:\"d059a2ca-53d6b1-peshkov150600019-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"boldgrid_deployment_resize\";a:4:{s:4:\"file\";s:44:\"d059a2ca-53d6b1-peshkov150600019-360x300.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:300;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:{}}}'),(67,40,'_wp_attached_file','2019/08/vacation-design-imhwpb-mqabhwebuwl1x5u.jpg'),(68,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:50:\"2019/08/vacation-design-imhwpb-mqabhwebuwl1x5u.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"vacation-design-imhwpb-mqabhwebuwl1x5u-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:50:\"vacation-design-imhwpb-mqabhwebuwl1x5u-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"vacation-design-imhwpb-mqabhwebuwl1x5u-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"vacation-design-imhwpb-mqabhwebuwl1x5u-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"vacation-design-imhwpb-mqabhwebuwl1x5u-1568x882.jpg\";s:5:\"width\";i:1568;s:6:\"height\";i:882;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:{}}}'),(69,20,'_edit_lock','1567105326:1'),(70,57,'_wp_attached_file','2019/08/measurement-systems-lab.jpg'),(71,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1112;s:4:\"file\";s:35:\"2019/08/measurement-systems-lab.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"measurement-systems-lab-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:35:\"measurement-systems-lab-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"measurement-systems-lab-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"measurement-systems-lab-1024x569.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:62:\"133_0_600_450.39577836412_measurement-systems-lab-1024x569.jpg\";s:5:\"width\";d:600;s:6:\"height\";d:450;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:10:\"1397380708\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(72,57,'_wp_attachment_image_alt','NASA Langley Measurement Systems Laboratory'),(73,58,'_wp_attached_file','2019/08/BSG-Logo.png'),(74,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:222;s:6:\"height\";i:232;s:4:\"file\";s:20:\"2019/08/BSG-Logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"BSG-Logo-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:{}}}'),(113,103,'_wp_attached_file','2019/08/4674c4aa-59f7fe34-gstockstudio150500009.jpg'),(114,103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:299;s:4:\"file\";s:51:\"2019/08/4674c4aa-59f7fe34-gstockstudio150500009.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"4674c4aa-59f7fe34-gstockstudio150500009-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:51:\"4674c4aa-59f7fe34-gstockstudio150500009-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;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:{}}}'),(115,104,'_wp_attached_file','2019/08/b5e9919d-e9d9171c-gstockstudio150700502.jpg'),(116,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:299;s:4:\"file\";s:51:\"2019/08/b5e9919d-e9d9171c-gstockstudio150700502.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"b5e9919d-e9d9171c-gstockstudio150700502-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:51:\"b5e9919d-e9d9171c-gstockstudio150700502-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;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:{}}}'),(117,105,'_wp_attached_file','2019/08/9cbb82bc-34bee842-dolgachov150501462.jpg'),(118,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:48:\"2019/08/9cbb82bc-34bee842-dolgachov150501462.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"9cbb82bc-34bee842-dolgachov150501462-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:\"9cbb82bc-34bee842-dolgachov150501462-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(119,96,'_wp_page_template','default'),(122,96,'_edit_last','1'),(121,96,'_edit_lock','1567105155:1'),(123,96,'boldgrid_hide_page_title','0'),(124,96,'boldgrid_in_page_containers','1'),(125,96,'bgseo_robots_index','index'),(126,96,'bgseo_robots_follow','follow'),(190,18,'boldgrid_hide_page_title','0'),(127,131,'boldgrid_in_page_containers','1'),(128,131,'_menu_item_type','post_type'),(129,131,'_menu_item_menu_item_parent','0'),(130,131,'_menu_item_object_id','96'),(131,131,'_menu_item_object','page'),(132,131,'_menu_item_target',''),(133,131,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(134,131,'_menu_item_xfn',''),(135,131,'_menu_item_url',''),(136,174,'_wp_attached_file','2019/08/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJxTFRfUnEtMnRrLzEyMDB4NDgw-imhwpb-ntmiz347g2anmcc.jpg'),(137,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:480;s:4:\"file\";s:99:\"2019/08/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJxTFRfUnEtMnRrLzEyMDB4NDgw-imhwpb-ntmiz347g2anmcc.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:99:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJxTFRfUnEtMnRrLzEyMDB4NDgw-imhwpb-ntmiz347g2anmcc-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:99:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJxTFRfUnEtMnRrLzEyMDB4NDgw-imhwpb-ntmiz347g2anmcc-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:99:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJxTFRfUnEtMnRrLzEyMDB4NDgw-imhwpb-ntmiz347g2anmcc-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:100:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJxTFRfUnEtMnRrLzEyMDB4NDgw-imhwpb-ntmiz347g2anmcc-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;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:{}}}'),(138,175,'_wp_attached_file','2019/08/0fc679-9066586a-gstockstudio150700496.jpg'),(139,175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:299;s:4:\"file\";s:49:\"2019/08/0fc679-9066586a-gstockstudio150700496.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"0fc679-9066586a-gstockstudio150700496-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:\"0fc679-9066586a-gstockstudio150700496-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;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:{}}}'),(140,176,'_wp_attached_file','2019/08/94588391-afa5c88c-vadymvdrobot150700272.jpg'),(141,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:51:\"2019/08/94588391-afa5c88c-vadymvdrobot150700272.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"94588391-afa5c88c-vadymvdrobot150700272-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:51:\"94588391-afa5c88c-vadymvdrobot150700272-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(142,177,'_wp_attached_file','2019/08/e64e81a3-b99b28eb-katiemartynova150400014.jpg'),(143,177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:53:\"2019/08/e64e81a3-b99b28eb-katiemartynova150400014.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"e64e81a3-b99b28eb-katiemartynova150400014-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:53:\"e64e81a3-b99b28eb-katiemartynova150400014-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(144,178,'_wp_attached_file','2019/08/64ed5a93-faf7b326-piksel150600102.jpg'),(145,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:45:\"2019/08/64ed5a93-faf7b326-piksel150600102.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"64ed5a93-faf7b326-piksel150600102-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:\"64ed5a93-faf7b326-piksel150600102-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(146,179,'_wp_attached_file','2019/08/5c7a133b-fe7e0227-dolgachov141000278.jpg'),(147,179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:48:\"2019/08/5c7a133b-fe7e0227-dolgachov141000278.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"5c7a133b-fe7e0227-dolgachov141000278-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:\"5c7a133b-fe7e0227-dolgachov141000278-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(148,180,'_wp_attached_file','2019/08/c97e1305-d9878181-gpointstudio150600489.jpg'),(149,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:51:\"2019/08/c97e1305-d9878181-gpointstudio150600489.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"c97e1305-d9878181-gpointstudio150600489-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:51:\"c97e1305-d9878181-gpointstudio150600489-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(150,173,'_wp_page_template','default'),(153,173,'_edit_last','1'),(152,173,'_edit_lock','1567103110:1'),(154,215,'_wp_attached_file','2019/08/odu-2-1920x1280.jpg'),(155,215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:27:\"2019/08/odu-2-1920x1280.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"odu-2-1920x1280-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:27:\"odu-2-1920x1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"odu-2-1920x1280-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"odu-2-1920x1280-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:34:\"0_512_1200_480_odu-2-1920x1280.jpg\";s:5:\"width\";d:1200;s:6:\"height\";d:480;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:{}}}'),(160,217,'boldgrid_in_page_containers','1'),(156,173,'boldgrid_hide_page_title','0'),(157,173,'boldgrid_in_page_containers','1'),(158,173,'bgseo_robots_index','index'),(159,173,'bgseo_robots_follow','follow'),(161,217,'_menu_item_type','post_type'),(162,217,'_menu_item_menu_item_parent','0'),(163,217,'_menu_item_object_id','173'),(164,217,'_menu_item_object','page'),(165,217,'_menu_item_target',''),(166,217,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(167,217,'_menu_item_xfn',''),(168,217,'_menu_item_url',''),(169,384,'_wp_trash_meta_status','publish'),(170,384,'_wp_trash_meta_time','1567101466'),(171,385,'_edit_lock','1567101491:1'),(172,385,'_wp_trash_meta_status','publish'),(173,385,'_wp_trash_meta_time','1567101516'),(174,435,'_wp_attached_file','2019/08/WILLIAMSFARM-44FINAL.jpg'),(175,435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1710;s:6:\"height\";i:1140;s:4:\"file\";s:32:\"2019/08/WILLIAMSFARM-44FINAL.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"WILLIAMSFARM-44FINAL-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:32:\"WILLIAMSFARM-44FINAL-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"WILLIAMSFARM-44FINAL-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"WILLIAMSFARM-44FINAL-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:23:\"Dave Chance Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(176,436,'_wp_attached_file','2019/08/vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37.jpg'),(177,436,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:693;s:4:\"file\";s:59:\"2019/08/vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37-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:59:\"vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37-768x444.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37-1024x591.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:85:\"77_0_450_300.16930022573_vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37-1024x591.jpg\";s:5:\"width\";d:450;s:6:\"height\";d:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(178,437,'_wp_attached_file','2019/08/smile-12.jpg'),(179,437,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:985;s:4:\"file\";s:20:\"2019/08/smile-12.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"smile-12-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:20:\"smile-12-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"smile-12-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"smile-12-1024x630.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(180,439,'_wp_attached_file','2019/08/P1140904.jpg'),(181,439,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2019/08/P1140904.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1140904-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:20:\"P1140904-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"P1140904-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"P1140904-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"DMC-FH27D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1497343038\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"5\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(182,440,'_wp_attached_file','2019/08/img29.jpg'),(183,440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2037;s:6:\"height\";i:1137;s:4:\"file\";s:17:\"2019/08/img29.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"img29-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:17:\"img29-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"img29-768x429.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"img29-1024x572.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:572;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(184,441,'_wp_attached_file','2019/08/HRC_Rendering-Intersection_FINAL.png'),(185,441,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1968;s:6:\"height\";i:1056;s:4:\"file\";s:44:\"2019/08/HRC_Rendering-Intersection_FINAL.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"HRC_Rendering-Intersection_FINAL-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:\"HRC_Rendering-Intersection_FINAL-300x161.png\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"HRC_Rendering-Intersection_FINAL-768x412.png\";s:5:\"width\";i:768;s:6:\"height\";i:412;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"HRC_Rendering-Intersection_FINAL-1024x549.png\";s:5:\"width\";i:1024;s:6:\"height\";i:549;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:{}}}'),(186,442,'_wp_attached_file','2019/08/2016-ODU-Broderick-Dining1-1400x800.jpg'),(187,442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:800;s:4:\"file\";s:47:\"2019/08/2016-ODU-Broderick-Dining1-1400x800.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"2016-ODU-Broderick-Dining1-1400x800-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:\"2016-ODU-Broderick-Dining1-1400x800-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"2016-ODU-Broderick-Dining1-1400x800-768x439.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"2016-ODU-Broderick-Dining1-1400x800-1024x585.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:585;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:{}}}'),(188,443,'_wp_attached_file','2019/08/18.6-million-project-begins-on-Cape-580-1.jpg'),(189,443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:4:\"file\";s:53:\"2019/08/18.6-million-project-begins-on-Cape-580-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"18.6-million-project-begins-on-Cape-580-1-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:53:\"18.6-million-project-begins-on-Cape-580-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"18.6-million-project-begins-on-Cape-580-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"18.6-million-project-begins-on-Cape-580-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;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:{}}}'),(191,18,'_edit_last','1'),(192,18,'bgseo_robots_index','index'),(193,18,'bgseo_robots_follow','follow'),(194,18,'_thumbnail_id','58'),(195,96,'_thumbnail_id','58'),(196,173,'_thumbnail_id','58'),(197,22,'_thumbnail_id','58'),(202,1202,'_customize_restore_dismissed','1'),(199,1203,'_wp_attached_file','2019/08/cropped-WILLIAMSFARM-44FINAL.jpg'),(200,1203,'_wp_attachment_context','background-image'),(201,1203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1710;s:6:\"height\";i:962;s:4:\"file\";s:40:\"2019/08/cropped-WILLIAMSFARM-44FINAL.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"cropped-WILLIAMSFARM-44FINAL-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:40:\"cropped-WILLIAMSFARM-44FINAL-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"cropped-WILLIAMSFARM-44FINAL-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"cropped-WILLIAMSFARM-44FINAL-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;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:{}}}'),(203,1253,'_edit_lock','1567104312:1'),(204,1253,'_wp_trash_meta_status','publish'),(205,1253,'_wp_trash_meta_time','1567104334'),(207,1254,'_customize_restore_dismissed','1'),(208,1353,'_edit_lock','1567105012:1'),(209,1353,'_wp_trash_meta_status','publish'),(210,1353,'_wp_trash_meta_time','1567105034'),(211,18,'_bgppb_default_editor','bgppb'),(245,1768,'_wp_trash_meta_status','publish'),(246,1768,'_wp_trash_meta_time','1567107197');
/*!40000 ALTER TABLE `wpym_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpym_posts`
--

DROP TABLE IF EXISTS `wpym_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpym_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=1802 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpym_posts`
--

LOCK TABLES `wpym_posts` WRITE;
/*!40000 ALTER TABLE `wpym_posts` DISABLE KEYS */;
INSERT INTO `wpym_posts` VALUES (1,1,'2019-08-29 15:54:58','2019-08-29 15:54:58','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','trash','open','open','','hello-world__trashed','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?p=1',0,'post','',1),(2,1,'2019-08-29 15:54:58','2019-08-29 15:54:58','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://dev.buildingsystemsgroup.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','trash','closed','open','','sample-page__trashed','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?page_id=2',0,'page','',0),(3,1,'2019-08-29 15:54:58','2019-08-29 15:54:58','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://dev.buildingsystemsgroup.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','trash','closed','open','','privacy-policy__trashed','','','2019-08-29 16:56:43','2019-08-29 16:56:43','',0,'http://dev.buildingsystemsgroup.com/?page_id=3',0,'page','',0),(4,1,'2019-08-29 16:00:56','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-08-29 16:00:56','0000-00-00 00:00:00','',0,'http://dev.buildingsystemsgroup.com/?p=4',0,'post','',0),(5,1,'2019-08-29 16:13:30','2019-08-29 16:13:30','<p>This site has been created with the help of many different people and companies.</p><p>In particular, a special thanks goes to the following for content running on this site:</p>\n			<style>\n				.attributed{height:250px;overflow:hidden;}\n				.attributed img{max-height:180px;}\n			</style>\n			<div class=\"row\">\n		<div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_KLbZ4RgovUI-imhwpb-ahynqyzw1j6u9pd-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_Z0_lvddNnVI-imhwpb-96lz88yo5j4xwnk-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_nUzt8uVCYyI-imhwpb-3hycbwzp1fmegpa-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_jjtdL443L4w-imhwpb-ank5nsz2covmbqv-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_gcsNOsPEXfs-imhwpb-yctsomz1s3db9jd-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_DtDlVpy-vvQ-imhwpb-3fq3cvgi3gbebvo-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_VZ07w73ta-k-imhwpb-74781mv4bxif63t-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"http://unsplash.com/photos/63pP6_FlnMY\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzYzcFA2X0Zsbk1ZLzYwMHg0NTA_3D-imhwpb-wsnb232r7vp46aq-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"http://unsplash.com/@langthangdaydo\" target=\"_blank\" rel=\"noopener noreferrer\">Văn Ngọc Tăng</a> / <a href=\"https://unsplash.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"http://unsplash.com/photos/OkJVWSuhdic\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09rSlZXU3VoZGljLzYwMHg0NTA_3D-imhwpb-im71egtdtp1xz8x-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"http://unsplash.com/@cpetrow\" target=\"_blank\" rel=\"noopener noreferrer\">Chris Petrow</a> / <a href=\"https://unsplash.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"https://images.unsplash.com/photo-1430417934865-589b63ad5c00?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&s=28d58c1e24062774ef6537318e1aaafd\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/vacation-design-imhwpb-mqabhwebuwl1x5u-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"https://unsplash.com/@scottwebb\" target=\"_blank\" rel=\"noopener noreferrer\">Scott Webb</a><br /><strong>License</strong>: <a href=\"http://creativecommons.org/licenses/by/2.0/\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://licensebuttons.net/l/by/2.0/80x15.png\" title=\"Attribution License\" /></a> </div></div><hr /><p style=\"clear:both;\">In addition, this  site was built on a powerful, Inspirations based web builder called <a href=\"http://www.boldgrid.com\" target=\"_blank\" rel=\"noopener noreferrer\">BoldGrid</a>. It is running on <a href=\"http://wordpress.org\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a>, the most popular content management software online today. Web hosting support is provided by <a href=\"https://www.inmotionhosting.com/\">InMotion Hosting</a>.</p>','Attribution','','publish','closed','closed','','attribution','','','2019-08-29 16:14:12','2019-08-29 16:14:12','',0,'http://dev.buildingsystemsgroup.com/attribution/',0,'bg_attribution','',0),(6,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":6,\"field_id\":4,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 1\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 1 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 1','','publish','closed','closed','','boldgrid-form-1','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=6',0,'wpforms','',0),(7,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":7,\"field_id\":14,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"12\":{\"id\":\"12\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"13\":{\"id\":\"13\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 2\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 2 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 2','','publish','closed','closed','','boldgrid-form-2','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=7',0,'wpforms','',0),(8,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":8,\"field_id\":17,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"12\":{\"id\":\"12\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"14\":{\"id\":\"14\",\"type\":\"text\",\"label\":\"Alternate Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"15\":{\"id\":\"15\",\"type\":\"radio\",\"label\":\"When is the best time to contact you?\",\"choices\":{\"1\":{\"label\":\"Morning\",\"value\":\"Morning\"},\"2\":{\"label\":\"Afternoon\",\"value\":\"Afternoon\"},\"3\":{\"label\":\"Evening\",\"value\":\"Evening\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"16\":{\"id\":\"16\",\"type\":\"radio\",\"label\":\"What is the best way to contact you?\",\"choices\":{\"1\":{\"label\":\"Phone\",\"value\":\"Phone\"},\"2\":{\"label\":\"Email\",\"value\":\"Email\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"13\":{\"id\":\"13\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 3\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 3 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 3','','publish','closed','closed','','boldgrid-form-3','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=8',0,'wpforms','',0),(9,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":9,\"field_id\":14,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State / Province\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Address Form (International)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Address Form (International) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Address Form (International)','','publish','closed','closed','','address-form-international','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=9',0,'wpforms','',0),(10,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":10,\"field_id\":14,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Address Form (US)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Address Form (US) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Address Form (US)','','publish','closed','closed','','address-form-us','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=10',0,'wpforms','',0),(11,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":11,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Body\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Email Form (Traditional)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Email Form (Traditional) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Email Form (Traditional)','','publish','closed','closed','','email-form-traditional','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=11',0,'wpforms','',0),(12,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":12,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"number\",\"label\":\"Group Size\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Special Instructions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Event Registration Form (Group Support)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Register\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Event Registration Form (Group Support) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Event Registration Form (Group Support)','','publish','closed','closed','','event-registration-form-group-support','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=12',0,'wpforms','',0),(13,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":13,\"field_id\":4,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"textarea\",\"label\":\"Special Instructions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Event Registration Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Register\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Event Registration Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Event Registration Form','','publish','closed','closed','','event-registration-form','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=13',0,'wpforms','',0),(14,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":14,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Information Request Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Information Request Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Information Request Form','','publish','closed','closed','','information-request-form','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=14',0,'wpforms','',0),(15,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":15,\"field_id\":17,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"14\":{\"id\":\"14\",\"type\":\"text\",\"label\":\"Company Name\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"15\":{\"id\":\"15\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"16\":{\"id\":\"16\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Shipping Information Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Shipping Information Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Shipping Information Form','','publish','closed','closed','','shipping-information-form','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=15',0,'wpforms','',0),(16,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":16,\"field_id\":3,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Sign Up Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Sign Up\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Sign Up Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Sign Up Form','','publish','closed','closed','','sign-up-form','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=16',0,'wpforms','',0),(17,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','{\"id\":17,\"field_id\":9,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"On a scale of 1 to 5, how would you rate your experience with our product / service?\",\"choices\":{\"1\":{\"label\":\"1 (poor)\",\"value\":\"1\"},\"2\":{\"label\":\"2 (mediocre)\",\"value\":\"2\"},\"3\":{\"label\":\"3 (average)\",\"value\":\"3\"},\"4\":{\"label\":\"4 (fair)\",\"value\":\"4\"},\"5\":{\"label\":\"5 (excellent)\",\"value\":\"5\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"radio\",\"label\":\"How likely are you to recommend our product / service to people you know?\",\"choices\":{\"1\":{\"label\":\"Likely\",\"value\":\"Likely\"},\"2\":{\"label\":\"Somewhat Likely\",\"value\":\"Somewhat Likely\"},\"3\":{\"label\":\"Somewhat Unlikely\",\"value\":\"Somewhat Unlikely\"},\"4\":{\"label\":\"Unlikely\",\"value\":\"Unlikely\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"radio\",\"label\":\"Would you use our product / service in the future?\",\"choices\":{\"1\":{\"label\":\"Yes\",\"value\":\"Yes\"},\"2\":{\"label\":\"No\",\"value\":\"No\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"select\",\"label\":\"How long have you used our product / service?\",\"choices\":{\"1\":{\"label\":\"Select...\",\"value\":\"\"},\"6\":{\"label\":\"Less than a month\",\"value\":\"Less than a month\"},\"2\":{\"label\":\"1 Month - 11 Months\",\"value\":\"1 Month - 11 Months\"},\"3\":{\"label\":\"1 Year - 2 Years\",\"value\":\"1 Year - 2 Years\"},\"5\":{\"label\":\"3 Years - 5 Years\",\"value\":\"3 Years - 5 Years\"},\"4\":{\"label\":\"Over 5 Years\",\"value\":\"Over 5 Years\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"textarea\",\"label\":\"Please tell us what you liked or disliked about our product / service\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"},\"8\":{\"id\":\"8\",\"type\":\"textarea\",\"label\":\"Additional Comments\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Customer Feedback Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Customer Feedback Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Customer Feedback Form','','publish','closed','closed','','customer-feedback-form','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/?post_type=wpforms&#038;p=17',0,'wpforms','',0),(18,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','<div class=\"boldgrid-section\"></div>\r\n<div class=\"boldgrid-section color-neutral-background-color color-neutral-text-default\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 46px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"color2-color\" style=\"text-align: center;\">Commissioning CONCEPT</h2>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 14px; padding-bottom: 40px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-6\">\r\n<p class=\"\" style=\"text-align: center;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-442 size-large\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/2016-ODU-Broderick-Dining1-1400x800-1024x585.jpg\" alt=\"\" width=\"1024\" height=\"585\" data-imhwpb-asset-id=\"695357\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 align-column-center\">\r\n<div class=\"\">\r\n<p class=\"\">Commissioning is a planned and integrated systematic process to ensure through documented verification that all building equipment/systems operate according to design intent. The commissioning process requires a collaborative team effort and can begin in the pre-design phase and continue through all phases of construction, initial occupancy, training of O&amp;M staff, preventive maintenance program review and warranty period.</p>\r\n<p class=\"\">Benefits from commissioning can be achieved no matter when the process starts. With a potential savings of up to 20% in owning and operating cost, the earlier the commissioning process begins the greater the benefits.</p>\r\n<p class=\"\">Commissioning gives the building owner/operator assurance of a correctly operating building at completion of construction. The owner/operator can be confident in continued correct operation because of equipment/system documentation and staff training.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color3-text-default\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 49px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"color1-color\" style=\"text-align: center;\">what\'s the benefit</h2>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0em; padding-bottom: 0em; margin-top: 0px; margin-right: -100px; margin-left: -100px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<h5 class=\"color1-color\" style=\"text-align: left;\">Cost savings of commissioned projects:</h5>\r\n<p class=\"\">Reduction in design problems</p>\r\n<p class=\"\">Reduction in design problemsReduced project delays</p>\r\n<p class=\"\">Reduced change orders</p>\r\n<p class=\"\">Correct start-up requirements</p>\r\n<p class=\"\">Shorten building turnover period</p>\r\n<p class=\"\">Reduced post occupancy corrective work</p>\r\n<p class=\"\">Improved quality of indoor working environment</p>\r\n<p class=\"\">Increased building system/equipment reliability and maintainability</p>\r\n<p class=\"\">Reduced energy and operating cost</p>\r\n<p class=\"\">Increased value as a result of better quality construction</p>\r\n\r\n</div>\r\n<div class=\"col-md-8 col-sm-6 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-1 aligncenter wp-image-441 size-large\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/HRC_Rendering-Intersection_FINAL-1024x549.png\" alt=\"\" width=\"1024\" height=\"549\" data-imhwpb-asset-id=\"695359\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-8 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color-neutral-background-color color-neutral-text-default\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 43px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"color2-color\" style=\"text-align: center;\">immediate results</h2>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 18px; padding-bottom: 47px; width: auto; margin-right: -100px; margin-left: -100px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<h5 class=\"color1-color\" style=\"text-align: left;\">Deficiencies most often discovered by commissioning new and existing buildings:</h5>\r\n<p class=\"\">Incorrect heating and cooling sequence of operation</p>\r\n<p class=\"\">Lack of building control strategies for optimum comfort and efficient operation</p>\r\n<p class=\"\">Incorrect equipment installation</p>\r\n<p class=\"\">Malfunctioning economizer (free cooling) systems</p>\r\n<p class=\"\">Short cycling of HVAC equipment leading to premature failures</p>\r\n<p class=\"\">Missing specified and paid for equipment</p>\r\n<p class=\"\">O&amp;M manuals not specific to installed equipment</p>\r\n<p class=\"\">Problems resulting from lack of training for staff maintenance personnel</p>\r\n<p class=\"\">Lack of documentation for equipment/systems problems during warranty period</p>\r\n\r\n</div>\r\n<div class=\"col-md-8 col-sm-6 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-1 aligncenter wp-image-437 size-large\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/smile-12-1024x630.jpg\" alt=\"\" width=\"1024\" height=\"630\" data-imhwpb-asset-id=\"695359\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color3-text-default\">\r\n<div class=\"container\"></div>\r\n</div>','Home','','publish','closed','closed','','home','','','2019-08-29 18:57:36','2019-08-29 18:57:36','',0,'http://dev.buildingsystemsgroup.com/home/',0,'page','',0),(19,1,'2019-08-29 16:14:08','2019-08-29 16:14:08',' ','','','publish','closed','closed','','19','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/19/',0,'nav_menu_item','',0),(20,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">What is Building commissioning</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">Building Commissioning is the process of verifying, in new construction, that all the subsystems for HVAC, Plumbing, Electrical, Fire/Life safety, Building Envelopes, Interior Systems, cogeneration, utility plants, sustainable systems, Lighting, Wastewater, Controls, and Building Security achieve the owner\'s project requirements as intended by the building owner and as designed by the building architects and engineers. Building commissioning is a quality-focused process necessary for both non-complex and complex modern construction projects. While the practice of building commissioning process is still fairly new in the construction industry, it has quickly become common practice as savvy building owners and developers have seen substantial returns on their investment. The ultimate goal of the commissioning process is to deliver for the owner a project that is on schedule, has reduced first cost of delivery and substantial life cost reductions and meets the needs of users and occupants, including a fully operational and optimized building and building systems and assemblies.</p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\"></div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"wp-image-57  aligncenter\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/133_0_600_450.39577836412_measurement-systems-lab-1024x569.jpg\" alt=\"NASA Langley Measurement Systems Laboratory\" width=\"792\" height=\"594\" data-imhwpb-asset-id=\"780377\"></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter wp-image-59 size-large\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cq5dam-web-1280-1280-13-1024x576.jpg\" alt=\"ODU - Foreman Field Reconstruction\" width=\"1024\" height=\"576\" data-imhwpb-asset-id=\"780378\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">COMMISSIONING GOALS</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">All forms of building commissioning share the same goals: to produce a building that meets the unique needs of its owner and occupants, operates as efficiently as possible, provides a safe, comfortable work environment, and is operated and maintained by a well-trained staff or service contractor.</p>\r\n<strong>The purpose of Building Commissioning is as follows:</strong>\r\n<ul class=\"\">\r\n 	<li>Verify that a facility and its systems meet the CFR</li>\r\n 	<li>Improve building performance by saving energy and reducing operational costs</li>\r\n 	<li>Ientify and resolve building system operation, control and maintenance problems</li>\r\n 	<li>Reduce or eliminate occupant complaints and increase tenant satisfaction</li>\r\n 	<li>Improve indoor environmental comfort and quality and reduce associated liability</li>\r\n 	<li>Document system operation</li>\r\n 	<li>Identify Operations &amp; Maintenance (O&amp;M) personnel training needs and provide training</li>\r\n 	<li>Minimize operational risk and increase asset value</li>\r\n 	<li>Extend equipment life-cycle</li>\r\n 	<li>Ensure the persistence of improvements over the building’s life</li>\r\n 	<li>Assist in achieving LEED for Existing Buildings <a href=\"http://www.usgbc.org/LEED\">www.usgbc.org/LEED</a></li>\r\n 	<li>Improve the building’s ENERGY STAR rating <a href=\"http://www.energystar.gov/\">http://www.energystar.gov/</a></li>\r\n</ul>\r\n<div>\r\n<p class=\"\">The commissioning process is a team effort, usually led by a commissioning lead, who verifies that the building meets the owner’s expectations at each stage of the design and construction process.&nbsp; Since each building project is unique, the commissioning lead will adapt the process to meet the project’s specific goals. This guide outlines a comprehensive process for reaching those goals.&nbsp; The scope of the individual projects may differ, depending on size, complexity, and budget. The parts of the commissioning process that are included in the commissioning lead’s scope of work can also vary. In the scope, the lead typically is engaged to perform the following activities:</p>\r\n<strong>Document the building’s functional and performance requirements.</strong> The commissioning lead works with the owner and design team to ensure that the Owner’s Project Requirements (OPR) document clearly describes the owner’s performance and maintainability criteria. Ideally, this occurs during the design phase of the project.\r\n<p class=\"\"><strong>Provide tools and documentation to improve the project team’s deliverables. </strong>These include Issues Logs, which track issues from identification to resolution at each phase of development, and a Commissioning Report, which documents the results of inspections and functional performance tests.</p>\r\n<p class=\"\"><strong>Verify and document that systems perform as specified in the OPR. </strong>To ensure that the building will perform as expected, the commissioning lead observes equipment start-up, writes and observes functional testing, verifies that control system calibration and testing, adjusting, and balancing have been performed satisfactorily, and documents these activities.</p>\r\n<strong>Verify that the building owner and manager receive adequate and accurate system documentation and staff training.</strong> The commissioning lead ensures that these requirements are included in the specifications, tracks their delivery, and may oversee the work of training leads in developing curriculum and conducting training sessions.\r\n\r\n<strong>Bring a holistic perspective to the design and construction process that integrates and enhances its traditionally separate functions.</strong> The commissioning process brings project team members together on a regular basis and encourages the group to work together to solve problems.\r\n\r\n</div>\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">why commission your building</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">In today’s complex buildings, systems are highly interactive. Increased system inter- activity, together with the nearly universal presence of sophisticated control systems,&nbsp; results in a trickle-down effect on building operations — small problems have big effects on performance.</p>\r\nNo matter how carefully a building is designed, if the systems, equipment and materials are not installed and operating as intended, the building will not perform well.\r\n<p class=\"\">Now more than ever, effective operations require subsystems and components that work effectively and reliably and a building staff with the knowledge and resources to operate and maintain them. But in today’s construction environment, project team members are more cost-conscious than ever, and seldom is there adequate budget allocated to quality assurance processes.</p>\r\nThe result of this situation? Poorly performing buildings where:\r\n<ul class=\"\">\r\n 	<li>System and equipment problems result in higher than necessary utility bills.</li>\r\n 	<li>Unexpected or excessive equipment repair and replacements due to premature failures cost the owner money and eat up staff time.</li>\r\n 	<li>Poor indoor environmental quality causes employee absenteeism, tenant complaints and turnover, and in the most severe cases, leads to lawsuits and expensive retrofits.</li>\r\n</ul>\r\n<p class=\"\">Benefits from commissioning can be achieved no matter when the process begins.&nbsp; With a potential savings of up to 20% in owning and operating cost, the earlier the commissioning process begins, the greater the benefits. Commissioning benefits owners\' through improved energy efficiency, improved workplace performance due to higher quality environments, reduced risk from threats, and prevention of business losses. Organizations that have researched the benefits of commissioning confirm that owners can achieve <strong>savings in operations of $4 over the first five years of occupancy as a direct result of every $1 invested in commissioning</strong>. Meanwhile, the cost of not commissioning is equal to the costs of correcting deficiencies plus the costs of inefficient operations. For mission-critical facilities, the cost of not commissioning can be measured by the cost of downtime and lack of appropriate facility use.</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"wp-image-436 size-large aligncenter\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/77_0_450_300.16930022573_vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37-1024x591.jpg\" alt=\"\" width=\"450\" height=\"300\" data-imhwpb-built-photo-search=\"10|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Commissioning Overview','','publish','closed','closed','','cx-overview','','','2019-08-29 19:04:19','2019-08-29 19:04:19','',18,'http://dev.buildingsystemsgroup.com/about-us/',0,'page','',0),(21,1,'2019-08-29 16:14:08','2019-08-29 16:14:08',' ','','','publish','closed','closed','','21','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',0,'http://dev.buildingsystemsgroup.com/21/',2,'nav_menu_item','',0),(22,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\r\n\r\nPlease use the contact form below, if you have any general questions or requests about our services.\r\n\r\nWe will try our best to respond back to you within 24 hours.\r\n<div class=\"boldgrid-shortcode wpforms-shortcode\" data-imhwpb-draggable=\"true\">\r\n\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\r\n<h3><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<a href=\"mailto:info@buildingsystemsgroup.com\">info@buildingsystemsgroup.com</a>\r\n<h3><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">(757) 581-5898</p>\r\n\r\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\n3324 Kline Drive, Virginia Beach, VA 23452\r\n<p class=\"mod-reset\"><img class=\"wp-image-58 size-full aligncenter\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/BSG-Logo.png\" alt=\"\" width=\"222\" height=\"232\" data-imhwpb-built-photo-search=\"52|portrait\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','publish','closed','closed','','contact-us','','','2019-08-29 19:02:23','2019-08-29 19:02:23','',0,'http://dev.buildingsystemsgroup.com/contact-us/',0,'page','',0),(23,1,'2019-08-29 16:14:08','2019-08-29 16:14:08',' ','','','publish','closed','closed','','23','','','2019-08-29 17:57:46','2019-08-29 17:57:46','',0,'http://dev.buildingsystemsgroup.com/23/',5,'nav_menu_item','',0),(24,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://dev.buildingsystemsgroup.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',2,'http://dev.buildingsystemsgroup.com/2-revision-v1/',0,'revision','',0),(25,1,'2019-08-29 16:14:08','2019-08-29 16:14:08','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2019-08-29 16:14:08','2019-08-29 16:14:08','',1,'http://dev.buildingsystemsgroup.com/1-revision-v1/',0,'revision','',0),(60,1,'2019-08-29 18:21:54','2019-08-29 18:21:54','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row gridblock\">\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<h2 class=\"\">What is Building commissioning</h2>\n<div class=\"row gridblock\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n\n<hr>\n\n</div>\n</div>\n</div>\n</div>\n<p class=\"\">Building Commissioning is the process of verifying, in new construction, that all the subsystems for HVAC, Plumbing, Electrical, Fire/Life safety, Building Envelopes, Interior Systems, cogeneration, utility plants, sustainable systems, Lighting, Wastewater, Controls, and Building Security achieve the owner\'s project requirements as intended by the building owner and as designed by the building architects and engineers. Building commissioning is a quality-focused process necessary for both non-complex and complex modern construction projects. While the practice of building commissioning process is still fairly new in the construction industry, it has quickly become common practice as savvy building owners and developers have seen substantial returns on their investment. The ultimate goal of the commissioning process is to deliver for the owner a project that is on schedule, has reduced first cost of delivery and substantial life cost reductions and meets the needs of users and occupants, including a fully operational and optimized building and building systems and assemblies.</p>\n\n<div class=\"row gridblock\">\n<div class=\"mod-space\"></div>\n</div>\n<div class=\"gridblock\"></div>\n</div>\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\n<p class=\"mod-img\"><img class=\"alignnone wp-image-57 \" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/133_0_600_450.39577836412_measurement-systems-lab-1024x569.jpg\" alt=\"NASA Langley Measurement Systems Laboratory\" width=\"792\" height=\"594\" data-imhwpb-asset-id=\"780377\"></p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row gridblock\">\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\n<p class=\"mod-img\"><img class=\"aligncenter wp-image-59 size-large\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cq5dam-web-1280-1280-13-1024x576.jpg\" alt=\"ODU - Foreman Field Reconstruction\" width=\"1024\" height=\"576\" data-imhwpb-asset-id=\"780378\"></p>\n\n</div>\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\n<h2 class=\"\">COMMISSIONING GOALS</h2>\n<div class=\"row gridblock\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n\n<hr>\n\n</div>\n</div>\n</div>\n</div>\n<p class=\"\">All forms of building commissioning share the same goals: to produce a building that meets the unique needs of its owner and occupants, operates as efficiently as possible, provides a safe, comfortable work environment, and is operated and maintained by a well-trained staff or service contractor.</p>\n<strong>The purpose of Building Commissioning is as follows:</strong>\n<ul class=\"\">\n 	<li>Verify that a facility and its systems meet the CFR</li>\n 	<li>Improve building performance by saving energy and reducing operational costs</li>\n 	<li>Ientify and resolve building system operation, control and maintenance problems</li>\n 	<li>Reduce or eliminate occupant complaints and increase tenant satisfaction</li>\n 	<li>Improve indoor environmental comfort and quality and reduce associated liability</li>\n 	<li>Document system operation</li>\n 	<li>Identify Operations &amp; Maintenance (O&amp;M) personnel training needs and provide training</li>\n 	<li>Minimize operational risk and increase asset value</li>\n 	<li>Extend equipment life-cycle</li>\n 	<li>Ensure the persistence of improvements over the building’s life</li>\n 	<li>Assist in achieving LEED for Existing Buildings <a href=\"http://www.usgbc.org/LEED\">www.usgbc.org/LEED</a></li>\n 	<li>Improve the building’s ENERGY STAR rating <a href=\"http://www.energystar.gov/\">http://www.energystar.gov/</a></li>\n</ul>\n<div>\n<p class=\"\">The commissioning process is a team effort, usually led by a commissioning lead, who verifies that the building meets the owner’s expectations at each stage of the design and construction process.&nbsp; Since each building project is unique, the commissioning lead will adapt the process to meet the project’s specific goals. This guide outlines a comprehensive process for reaching those goals.&nbsp; The scope of the individual projects may differ, depending on size, complexity, and budget. The parts of the commissioning process that are included in the commissioning lead’s scope of work can also vary. In the scope, the lead typically is engaged to perform the following activities:</p>\n<strong>Document the building’s functional and performance requirements.</strong> The commissioning lead works with the owner and design team to ensure that the Owner’s Project Requirements (OPR) document clearly describes the owner’s performance and maintainability criteria. Ideally, this occurs during the design phase of the project.\n<p class=\"\"><strong>Provide tools and documentation to improve the project team’s deliverables. </strong>These include Issues Logs, which track issues from identification to resolution at each phase of development, and a Commissioning Report, which documents the results of inspections and functional performance tests.</p>\n<p class=\"\"><strong>Verify and document that systems perform as specified in the OPR. </strong>To ensure that the building will perform as expected, the commissioning lead observes equipment start-up, writes and observes functional testing, verifies that control system calibration and testing, adjusting, and balancing have been performed satisfactorily, and documents these activities.</p>\n<strong>Verify that the building owner and manager receive adequate and accurate system documentation and staff training.</strong> The commissioning lead ensures that these requirements are included in the specifications, tracks their delivery, and may oversee the work of training leads in developing curriculum and conducting training sessions.\n\n<strong>Bring a holistic perspective to the design and construction process that integrates and enhances its traditionally separate functions.</strong> The commissioning process brings project team members together on a regular basis and encourages the group to work together to solve problems.\n\n</div>\n<div class=\"row gridblock\">\n<div class=\"mod-space\"></div>\n</div>\n<div class=\"gridblock\"></div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row gridblock\">\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\n<h2 class=\"\">why commission your building</h2>\n<div class=\"row gridblock\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n\n<hr>\n\n</div>\n</div>\n</div>\n</div>\n<p class=\"\">In today’s complex buildings, systems are highly interactive. Increased system inter- activity, together with the nearly universal presence of sophisticated control systems,&nbsp; results in a trickle-down effect on building operations — small problems have big effects on performance.</p>\nNo matter how carefully a building is designed, if the systems, equipment and materials are not installed and operating as intended, the building will not perform well.\n<p class=\"\">Now more than ever, effective operations require subsystems and components that work effectively and reliably and a building staff with the knowledge and resources to operate and maintain them. But in today’s construction environment, project team members are more cost-conscious than ever, and seldom is there adequate budget allocated to quality assurance processes.</p>\nThe result of this situation? Poorly performing buildings where:\n<ul class=\"\">\n 	<li>System and equipment problems result in higher than necessary utility bills.</li>\n 	<li>Unexpected or excessive equipment repair and replacements due to premature failures cost the owner money and eat up staff time.</li>\n 	<li>Poor indoor environmental quality causes employee absenteeism, tenant complaints and turnover, and in the most severe cases, leads to lawsuits and expensive retrofits.</li>\n</ul>\n<p class=\"\">Benefits from commissioning can be achieved no matter when the process begins.&nbsp; With a potential savings of up to 20% in owning and operating cost, the earlier the commissioning process begins, the greater the benefits. Commissioning benefits owners\' through improved energy efficiency, improved workplace performance due to higher quality environments, reduced risk from threats, and prevention of business losses. Organizations that have researched the benefits of commissioning confirm that owners can achieve <strong>savings in operations of $4 over the first five years of occupancy as a direct result of every $1 invested in commissioning</strong>. Meanwhile, the cost of not commissioning is equal to the costs of correcting deficiencies plus the costs of inefficient operations. For mission-critical facilities, the cost of not commissioning can be measured by the cost of downtime and lack of appropriate facility use.</p>\n<p class=\"\"><strong>COST SAVINGS OF COMMISSIONED PROJECTS:</strong></p>\n\n<ul class=\"\">\n 	<li>Reduction in design problems</li>\n 	<li>Reduced project delays</li>\n 	<li>Reduced change orders</li>\n 	<li>Correct start-up requirements</li>\n 	<li>Shorten building turnover period</li>\n 	<li>Reduced post occupancy corrective work</li>\n 	<li>Improved quality of indoor working environment</li>\n 	<li>Increased building system/equipment reliability and maintainability</li>\n 	<li>Reduced energy and operating cost</li>\n 	<li>Increased value as a result of better quality construction</li>\n</ul>\n<strong>DEFICIENCIES MOST OFTEN DISCOVERED DURING COMMISSIONING:</strong>\n<ul class=\"\">\n 	<li>Incorrect heating and cooling sequence of operation</li>\n 	<li>Lack of building control strategies for optimum comfort and efficient operation</li>\n 	<li>Incorrect equipment installation</li>\n 	<li>Malfunctioning economizer (free cooling) systems</li>\n 	<li>Short cycling of HVAC equipment leading to premature failures</li>\n 	<li>Missing specified and paid for equipment</li>\n 	<li>O&amp;M manuals not specific to installed equipment</li>\n 	<li>Problems resulting from lack of training for staff maintenance personnel</li>\n 	<li>Lack or documentation for equipment/systems problems during the warranty period</li>\n</ul>\n</div>\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\n<p class=\"mod-img\"><img class=\"alignnone wp-image-36 size-full\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/d059a2ca-53d6b1-peshkov150600019.jpg\" alt=\"\" width=\"450\" height=\"300\" data-imhwpb-built-photo-search=\"10|landscape\"></p>\n\n</div>\n</div>\n</div>\n</div>','Commissioning Overview','','inherit','closed','closed','','20-autosave-v1','','','2019-08-29 18:21:54','2019-08-29 18:21:54','',20,'http://dev.buildingsystemsgroup.com/20-autosave-v1/',0,'revision','',0),(59,1,'2019-08-29 16:27:04','2019-08-29 16:27:04','','cq5dam-web-1280-1280-13','','inherit','open','closed','','cq5dam-web-1280-1280-13','','','2019-08-29 16:27:28','2019-08-29 16:27:28','',20,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cq5dam-web-1280-1280-13.jpg',0,'attachment','image/jpeg',0),(36,1,'2019-08-29 16:14:10','2019-08-29 16:14:10','','','','inherit','open','closed','','36','','','2019-08-29 19:03:32','2019-08-29 19:03:32','',22,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/d059a2ca-53d6b1-peshkov150600019.jpg',0,'attachment','image/jpeg',0),(629,1,'2019-08-29 18:16:39','2019-08-29 18:16:39','<div class=\"boldgrid-section\"></div>\r\n<div class=\"boldgrid-section color-neutral-background-color color-neutral-text-default\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 46px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"color2-color\" style=\"text-align: center;\">Commissioning CONCEPT</h2>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 14px; padding-bottom: 40px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-6\">\r\n<p class=\"\" style=\"text-align: center;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-442 size-large\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/2016-ODU-Broderick-Dining1-1400x800-1024x585.jpg\" alt=\"\" width=\"1024\" height=\"585\" data-imhwpb-asset-id=\"695357\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 align-column-center\">\r\n<div class=\"\">\r\n<p class=\"\">Commissioning is a planned and integrated systematic process to ensure through documented verification that all building equipment/systems operate according to design intent. The commissioning process requires a collaborative team effort and can begin in the pre-design phase and continue through all phases of construction, initial occupancy, training of O&amp;M staff, preventive maintenance program review and warranty period.</p>\r\n<p class=\"\">Benefits from commissioning can be achieved no matter when the process starts. With a potential savings of up to 20% in owning and operating cost, the earlier the commissioning process begins the greater the benefits.</p>\r\n<p class=\"\">Commissioning gives the building owner/operator assurance of a correctly operating building at completion of construction. The owner/operator can be confident in continued correct operation because of equipment/system documentation and staff training.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color3-text-default\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 49px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"color1-color\" style=\"text-align: center;\">what\'s the benefit</h2>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0em; padding-bottom: 0em; margin-top: 0px; margin-right: -100px; margin-left: -100px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<h5 class=\"color1-color\" style=\"text-align: left;\">Cost savings of commissioned projects:</h5>\r\n<p class=\"\">Reduction in design problems</p>\r\n<p class=\"\">Reduction in design problemsReduced project delays</p>\r\n<p class=\"\">Reduced change orders</p>\r\n<p class=\"\">Correct start-up requirements</p>\r\n<p class=\"\">Shorten building turnover period</p>\r\n<p class=\"\">Reduced post occupancy corrective work</p>\r\n<p class=\"\">Improved quality of indoor working environment</p>\r\n<p class=\"\">Increased building system/equipment reliability and maintainability</p>\r\n<p class=\"\">Reduced energy and operating cost</p>\r\n<p class=\"\">Increased value as a result of better quality construction</p>\r\n\r\n</div>\r\n<div class=\"col-md-8 col-sm-6 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-1 aligncenter wp-image-441 size-large\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/HRC_Rendering-Intersection_FINAL-1024x549.png\" alt=\"\" width=\"1024\" height=\"549\" data-imhwpb-asset-id=\"695359\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-8 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color-neutral-background-color color-neutral-text-default\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 43px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"color2-color\" style=\"text-align: center;\">immediate results</h2>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 18px; padding-bottom: 47px; width: auto; margin-right: -100px; margin-left: -100px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<h5 class=\"color1-color\" style=\"text-align: left;\">Deficiencies most often discovered by commissioning new and existing buildings:</h5>\r\n<p class=\"\">Incorrect heating and cooling sequence of operation</p>\r\n<p class=\"\">Lack of building control strategies for optimum comfort and efficient operation</p>\r\n<p class=\"\">Incorrect equipment installation</p>\r\n<p class=\"\">Malfunctioning economizer (free cooling) systems</p>\r\n<p class=\"\">Short cycling of HVAC equipment leading to premature failures</p>\r\n<p class=\"\">Missing specified and paid for equipment</p>\r\n<p class=\"\">O&amp;M manuals not specific to installed equipment</p>\r\n<p class=\"\">Problems resulting from lack of training for staff maintenance personnel</p>\r\n<p class=\"\">Lack of documentation for equipment/systems problems during warranty period</p>\r\n\r\n</div>\r\n<div class=\"col-md-8 col-sm-6 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-1 aligncenter wp-image-437 size-large\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/smile-12-1024x630.jpg\" alt=\"\" width=\"1024\" height=\"630\" data-imhwpb-asset-id=\"695359\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color3-text-default\">\r\n<div class=\"container\"></div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2019-08-29 18:16:39','2019-08-29 18:16:39','',18,'http://dev.buildingsystemsgroup.com/18-revision-v1/',0,'revision','',0),(37,1,'2019-08-29 16:14:10','2019-08-29 16:14:10','\n<div class=\"boldgrid-section\">\n\n</div>\n<div class=\"boldgrid-section color-neutral-background-color color-neutral-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 46px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color2-color\" style=\"text-align: center;\">INNOVATIVE CONCEPTS</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 57px;\">\n<div class=\"col-md-6 col-xs-12 col-sm-6\">\n<p style=\"text-align: center;\"><img class=\"aligncenter size-full bg-img bg-img-1 wp-image-26\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_KLbZ4RgovUI-imhwpb-ahynqyzw1j6u9pd.jpg\" alt=\"klbz4rgovui\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"695357\"></p>\n<p style=\"text-align: left;\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-6 col-sm-6 col-xs-12 align-column-center\">\n<div class=\"\">\n<p class=\"color2-color\" style=\"text-align: left;\">Take a look at some of our award-winning designs and concepts.</p>\n<p class=\"\">We integrate the latest concepts and web advancements to create breathtaking sites for universal appeal. With a knack for innovative thought design, our process goes beyond the norm, integrating flat design, user interface and mobile management processes to provide the most enhanced user experience for complete customer engagement.</p>\n<p class=\"\">Our team integrates experience with current design techniques to offer the most comprehensive and integrative web design solutions on the market. We make clear, crisp designs that flow from a consumer-based perspective. Using your research, customer personas and models, we use a detailed methodology to deliver the best outcomes and solutions.</p>\n<p class=\"\">&nbsp;</p>\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More </a></p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color3-background-color color3-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 49px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color1-color\" style=\"text-align: center;\">ABOUT US</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 18px; padding-bottom: 47px;\">\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\n<h5 class=\"color1-color\" style=\"text-align: left;\">Our Vision and Experience</h5>\n<p class=\"\">We have the vision and experience of transforming spaces into breathtaking settings with flair. We transform ideas into reality with efficient planning and seamless cohesion each and every time.</p>\n<p class=\"\"><img class=\"aligncenter size-full bg-img bg-img-rounded-bottom-left bg-img-rounded-bottom-right wp-image-27\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_Z0_lvddNnVI-imhwpb-96lz88yo5j4xwnk.jpg\" alt=\"z0_lvddnnvi\" width=\"600\" height=\"600\" data-imhwpb-asset-id=\"695358\"></p>\n\n<h5 class=\"color1-color\" style=\"text-align: center;\">Ariel Johnson</h5>\n<h3 class=\"color1-color\" style=\"text-align: center;\">CEO</h3>\n</div>\n<div class=\"col-md-8 col-sm-6 col-xs-12\">\n<p class=\"mod-reset\"><img class=\"aligncenter size-full bg-img bg-img-1 wp-image-28\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_nUzt8uVCYyI-imhwpb-3hycbwzp1fmegpa.jpg\" alt=\"nuzt8uvcyyi\" width=\"900\" height=\"450\" data-imhwpb-asset-id=\"695359\"></p>\n<p class=\"mod-reset\">&nbsp;</p>\n<p class=\"mod-reset\">Attention to detail, passion and appreciation for beautiful events. We use modular and LED pieces to enhance our concepts, bringing our talents to the forefront in creating unique and inventive designs that combine the elements of style, mood and theme.</p>\n<p class=\"mod-reset\">&nbsp;</p>\n<p class=\"mod-reset\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More </a></p>\n<p class=\"mod-reset\">&nbsp;</p>\n\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\n<div></div>\n</div>\n</div>\n</div>\n<div class=\"col-md-8 col-sm-12 col-xs-12\"></div>\n</div>\n</div>\n<div class=\"boldgrid-section color-neutral-background-color color-neutral-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 43px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2 class=\"color2-color\" style=\"text-align: center;\">WHAT WE CAN OFFER</h2>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 19px; padding-bottom: 82px;\">\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\n<div style=\"margin-top: 20px; margin-bottom: 20px; padding: 1.5em 1.9em;\" class=\"bg-box bg-box-rounded-bottom-right bg-box-rounded-top-right color4-text-default color4-background-color\">\n<h4 class=\"color2-color\">Decor and Display</h4>\n<p class=\"\">Beautiful projects with purpose and vibrant integration in urban planning, interior design and sleek architecture. Our designs are innovative, iconic and tailored to exceed expectations.</p>\n&nbsp;\n<h4 class=\"color2-color\">Illustrative Solutions</h4>\n<p class=\"\">We are innovators in the art design industry known for our artwork that captures the essence of any subject or area. From children&rsquo;s spaces to art deco projects, we transform canvases into breathtaking conversation pieces.</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\n<div>\n\n<img class=\"aligncenter size-full bg-img bg-img-9 wp-image-29\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_jjtdL443L4w-imhwpb-ank5nsz2covmbqv.jpg\" alt=\"jjtdl443l4w\" width=\"600\" height=\"600\" data-imhwpb-asset-id=\"695360\"></div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12\">\n<h4 class=\"color2-color\">Premier Architectural Design</h4>\n<p class=\"\">We are a full service specialty event and design firm providing the ultimate experience in bringing concepts to life. We offer an unparalleled experience in event production, design, display, lighting, signage, decor and display.</p>\n<img class=\"aligncenter size-full bg-img bg-img-1 wp-image-30\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_gcsNOsPEXfs-imhwpb-yctsomz1s3db9jd.jpg\" alt=\"gcsnospexfs\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"695361\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color3-background-color color3-text-default\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 59px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div style=\"background-color: transparent;\" class=\"\">\n<h2 class=\"color1-color\" style=\"text-align: center;\">WE ARE EXPERTS</h2>\n</div>\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 98px;\">\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n\n<img class=\"aligncenter size-full bg-img bg-img-rounded wp-image-31\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_DtDlVpy-vvQ-imhwpb-3fq3cvgi3gbebvo.jpg\" alt=\"dtdlvpy-vvq\" width=\"600\" height=\"600\" data-imhwpb-asset-id=\"695362\"></div>\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\n\n<img class=\"aligncenter size-full bg-img bg-img-rounded wp-image-32\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/tmp_VZ07w73ta-k-imhwpb-74781mv4bxif63t.jpg\" alt=\"vz07w73ta-k\" width=\"600\" height=\"600\" data-imhwpb-asset-id=\"695363\"></div>\n<div class=\"col-md-3 col-sm-12 col-xs-12\">\n<p class=\"\">We develop interior and exterior components to become conversation pieces in any setting. Our work has stood out in many industries for its captivating appeal and earthy personality.</p>\n<p class=\"\">Using design and a variety of elements that complement the pieces in the space, we deliver interesting and innovative results, time and time again.</p>\n\n</div>\n<div class=\"col-md-3 col-sm-12 col-xs-12\">\n<p class=\"\">All of our artists have been thoroughly trained in environmental design processes. We&rsquo;re experts in historical preservation and make designing to compliment existing structures our main focus in all that we do.</p>\n<p class=\"\">&nbsp;</p>\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"#\">Read More</a></p>\n\n</div>\n</div>\n</div>\n</div>\n','Home','','inherit','closed','closed','','18-revision-v1','','','2019-08-29 16:14:10','2019-08-29 16:14:10','',18,'http://dev.buildingsystemsgroup.com/18-revision-v1/',0,'revision','',0),(38,1,'2019-08-29 16:14:10','2019-08-29 16:14:10','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h2>An Intrinsic Love for The Craft</h2>\r\n<h4>Capturing Magic Through The Lens</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">I\'ve always had a love for awesome photography, since my father took me along on photo shoots as a young child. The way he could capture a special moment, beautiful landscape or someone\'s personality on paper always seemed a little bit like magic. With a Master of Fine Arts from California Institute of the Arts focusing on portrait photography, I\'ve developed that magic in my photography style.</p>\r\n<p class=\"\">Whether it\'s a graduation, wedding, new baby, family portrait or other event you\'d like captured, I\'d be delighted to apply that magical touch through amazing art photography.</p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\">\r\n<p class=\"p-button-primary\"><a class=\"button-primary\" href=\"#\">View Services</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone size-full wp-image-33\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzYzcFA2X0Zsbk1ZLzYwMHg0NTA_3D-imhwpb-wsnb232r7vp46aq.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780377\"></p>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone size-full wp-image-34\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09rSlZXU3VoZGljLzYwMHg0NTA_3D-imhwpb-im71egtdtp1xz8x.jpg\" alt=\"\" width=\"600\" height=\"450\" data-imhwpb-asset-id=\"780378\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Fine Art Photography</h2>\r\n<h4>One Artistic Eye Deserves Another</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nOver the years, I\'ve developed a good feel for creating exceptional images of your fine art projects. Whether you need new slides for an art show application, shots of you in action for your studio\'s website or just want to capture your beautiful art collection, I can get the photos you need with the spirit you\'re looking for without compromising your artistic vision.\r\n\r\nWe\'ve worked with dozens of artists and fine art collectors over the years to document their artwork. No matter the reason why, I can provide you with documentation that not only documents your artwork, but captures its inner soul.\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\">\r\n<p class=\"p-button-primary\"><a class=\"button-primary\" href=\"#\">Visit Gallery</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Capturing Special Events</h2>\r\n<h4>Your Biggest Moments Captured, Without Interruption</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nLet\'s face it - a special event is something we look back on for years to come, remembering the good times we\'ve had and the wonderful people we\'ve shared our lives with. Capturing that event is just as important as any other detail you need to work out. My photography will help you capture the magic of the moment, whether it\'s a graduation, wedding, anniversary, baptism or similar special moment in your life.\r\n\r\nBecause I\'ve worked with so many clients in so many different environments, you\'ll barely notice I\'m there - the occasional touch to fix a hem or request to turn slightly is all you\'ll notice. This is just one way I capture the magic.\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/a73f2d90-f7254bad-halfpoint150100426-555x250.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"10|landscape\" width=\"555\" class=\"wp-image-35\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n','About Us','','inherit','closed','closed','','20-revision-v1','','','2019-08-29 16:14:10','2019-08-29 16:14:10','',20,'http://dev.buildingsystemsgroup.com/20-revision-v1/',0,'revision','',0),(39,1,'2019-08-29 16:14:10','2019-08-29 16:14:10','\n<div class=\"boldgrid-section\"><div class=\"container\"><div class=\"row\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\r\n<p>Please use the contact form below, if you have any general questions or requests about our services.</p>\r\n<p>We will try our best to respond back to you within 24 hours.</p>\r\n\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\r\n\r\n<h3><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<p><a href=\"mailto:info@buildingsystemsgroup.com\">info@buildingsystemsgroup.com</a></p>\r\n\r\n<h3><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p>(757)581-5898</p>\r\n\r\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\n<p>3324 Kline Drive, Virginia Beach, VA 23452</p>\r\n<p class=\"boldgrid-google-maps\" style=\"width:100%;height:200px;\"><iframe style=\"width:100%;height:100%;\" src=\"https://maps.google.com/maps?q=3324+Kline+Drive%2C+Virginia+Beach%2C+VA+23452&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n\r\n<p class=\"mod-reset\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/d059a2ca-53d6b1-peshkov150600019-360x300.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"52|portrait\" width=\"360\" class=\"wp-image-36\"></p>\r\n\r\n</div></div></div></div>\n','Contact Us','','inherit','closed','closed','','22-revision-v1','','','2019-08-29 16:14:10','2019-08-29 16:14:10','',22,'http://dev.buildingsystemsgroup.com/22-revision-v1/',0,'revision','',0),(40,1,'2019-08-29 16:14:12','2019-08-29 16:14:12','','','','inherit','open','closed','','40','','','2019-08-29 16:14:12','2019-08-29 16:14:12','',0,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/vacation-design-imhwpb-mqabhwebuwl1x5u.jpg',0,'attachment','image/jpeg',0),(1801,1,'2019-08-29 19:33:57','0000-00-00 00:00:00','','BoldGrid - GridBlock Set - Preview Page','','draft','closed','closed','','boldgrid-gridblock-set-preview-page','','','2019-08-29 19:33:57','0000-00-00 00:00:00','',0,'http://dev.buildingsystemsgroup.com/?page_id=1801',0,'page','',0),(51,1,'2019-08-29 16:15:06','0000-00-00 00:00:00','','Block Preview Page','','draft','closed','closed','','','','','2019-08-29 16:15:06','0000-00-00 00:00:00','',0,'http://dev.buildingsystemsgroup.com/?page_id=51',0,'page','',0),(57,1,'2019-08-29 16:19:43','2019-08-29 16:19:43','','measurement-systems-lab','','inherit','open','closed','','measurement-systems-lab','','','2019-08-29 16:20:14','2019-08-29 16:20:14','',20,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/measurement-systems-lab.jpg',0,'attachment','image/jpeg',0),(58,1,'2019-08-29 16:22:08','2019-08-29 16:22:08','','BSG Logo','','inherit','open','closed','','bsg-logo','','','2019-08-29 16:22:08','2019-08-29 16:22:08','',20,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/BSG-Logo.png',0,'attachment','image/png',0),(807,1,'2019-08-29 18:22:12','2019-08-29 18:22:12','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">What is Building commissioning</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">Building Commissioning is the process of verifying, in new construction, that all the subsystems for HVAC, Plumbing, Electrical, Fire/Life safety, Building Envelopes, Interior Systems, cogeneration, utility plants, sustainable systems, Lighting, Wastewater, Controls, and Building Security achieve the owner\'s project requirements as intended by the building owner and as designed by the building architects and engineers. Building commissioning is a quality-focused process necessary for both non-complex and complex modern construction projects. While the practice of building commissioning process is still fairly new in the construction industry, it has quickly become common practice as savvy building owners and developers have seen substantial returns on their investment. The ultimate goal of the commissioning process is to deliver for the owner a project that is on schedule, has reduced first cost of delivery and substantial life cost reductions and meets the needs of users and occupants, including a fully operational and optimized building and building systems and assemblies.</p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\"></div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-57 \" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/133_0_600_450.39577836412_measurement-systems-lab-1024x569.jpg\" alt=\"NASA Langley Measurement Systems Laboratory\" width=\"792\" height=\"594\" data-imhwpb-asset-id=\"780377\"></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter wp-image-59 size-large\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cq5dam-web-1280-1280-13-1024x576.jpg\" alt=\"ODU - Foreman Field Reconstruction\" width=\"1024\" height=\"576\" data-imhwpb-asset-id=\"780378\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">COMMISSIONING GOALS</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">All forms of building commissioning share the same goals: to produce a building that meets the unique needs of its owner and occupants, operates as efficiently as possible, provides a safe, comfortable work environment, and is operated and maintained by a well-trained staff or service contractor.</p>\r\n<strong>The purpose of Building Commissioning is as follows:</strong>\r\n<ul class=\"\">\r\n 	<li>Verify that a facility and its systems meet the CFR</li>\r\n 	<li>Improve building performance by saving energy and reducing operational costs</li>\r\n 	<li>Ientify and resolve building system operation, control and maintenance problems</li>\r\n 	<li>Reduce or eliminate occupant complaints and increase tenant satisfaction</li>\r\n 	<li>Improve indoor environmental comfort and quality and reduce associated liability</li>\r\n 	<li>Document system operation</li>\r\n 	<li>Identify Operations &amp; Maintenance (O&amp;M) personnel training needs and provide training</li>\r\n 	<li>Minimize operational risk and increase asset value</li>\r\n 	<li>Extend equipment life-cycle</li>\r\n 	<li>Ensure the persistence of improvements over the building’s life</li>\r\n 	<li>Assist in achieving LEED for Existing Buildings <a href=\"http://www.usgbc.org/LEED\">www.usgbc.org/LEED</a></li>\r\n 	<li>Improve the building’s ENERGY STAR rating <a href=\"http://www.energystar.gov/\">http://www.energystar.gov/</a></li>\r\n</ul>\r\n<div>\r\n<p class=\"\">The commissioning process is a team effort, usually led by a commissioning lead, who verifies that the building meets the owner’s expectations at each stage of the design and construction process.&nbsp; Since each building project is unique, the commissioning lead will adapt the process to meet the project’s specific goals. This guide outlines a comprehensive process for reaching those goals.&nbsp; The scope of the individual projects may differ, depending on size, complexity, and budget. The parts of the commissioning process that are included in the commissioning lead’s scope of work can also vary. In the scope, the lead typically is engaged to perform the following activities:</p>\r\n<strong>Document the building’s functional and performance requirements.</strong> The commissioning lead works with the owner and design team to ensure that the Owner’s Project Requirements (OPR) document clearly describes the owner’s performance and maintainability criteria. Ideally, this occurs during the design phase of the project.\r\n<p class=\"\"><strong>Provide tools and documentation to improve the project team’s deliverables. </strong>These include Issues Logs, which track issues from identification to resolution at each phase of development, and a Commissioning Report, which documents the results of inspections and functional performance tests.</p>\r\n<p class=\"\"><strong>Verify and document that systems perform as specified in the OPR. </strong>To ensure that the building will perform as expected, the commissioning lead observes equipment start-up, writes and observes functional testing, verifies that control system calibration and testing, adjusting, and balancing have been performed satisfactorily, and documents these activities.</p>\r\n<strong>Verify that the building owner and manager receive adequate and accurate system documentation and staff training.</strong> The commissioning lead ensures that these requirements are included in the specifications, tracks their delivery, and may oversee the work of training leads in developing curriculum and conducting training sessions.\r\n\r\n<strong>Bring a holistic perspective to the design and construction process that integrates and enhances its traditionally separate functions.</strong> The commissioning process brings project team members together on a regular basis and encourages the group to work together to solve problems.\r\n\r\n</div>\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">why commission your building</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">In today’s complex buildings, systems are highly interactive. Increased system inter- activity, together with the nearly universal presence of sophisticated control systems,&nbsp; results in a trickle-down effect on building operations — small problems have big effects on performance.</p>\r\nNo matter how carefully a building is designed, if the systems, equipment and materials are not installed and operating as intended, the building will not perform well.\r\n<p class=\"\">Now more than ever, effective operations require subsystems and components that work effectively and reliably and a building staff with the knowledge and resources to operate and maintain them. But in today’s construction environment, project team members are more cost-conscious than ever, and seldom is there adequate budget allocated to quality assurance processes.</p>\r\nThe result of this situation? Poorly performing buildings where:\r\n<ul class=\"\">\r\n 	<li>System and equipment problems result in higher than necessary utility bills.</li>\r\n 	<li>Unexpected or excessive equipment repair and replacements due to premature failures cost the owner money and eat up staff time.</li>\r\n 	<li>Poor indoor environmental quality causes employee absenteeism, tenant complaints and turnover, and in the most severe cases, leads to lawsuits and expensive retrofits.</li>\r\n</ul>\r\n<p class=\"\">Benefits from commissioning can be achieved no matter when the process begins.&nbsp; With a potential savings of up to 20% in owning and operating cost, the earlier the commissioning process begins, the greater the benefits. Commissioning benefits owners\' through improved energy efficiency, improved workplace performance due to higher quality environments, reduced risk from threats, and prevention of business losses. Organizations that have researched the benefits of commissioning confirm that owners can achieve <strong>savings in operations of $4 over the first five years of occupancy as a direct result of every $1 invested in commissioning</strong>. Meanwhile, the cost of not commissioning is equal to the costs of correcting deficiencies plus the costs of inefficient operations. For mission-critical facilities, the cost of not commissioning can be measured by the cost of downtime and lack of appropriate facility use.</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-36 size-full\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/d059a2ca-53d6b1-peshkov150600019.jpg\" alt=\"\" width=\"450\" height=\"300\" data-imhwpb-built-photo-search=\"10|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Commissioning Overview','','inherit','closed','closed','','20-revision-v1','','','2019-08-29 18:22:12','2019-08-29 18:22:12','',20,'http://dev.buildingsystemsgroup.com/20-revision-v1/',0,'revision','',0),(61,1,'2019-08-29 16:33:08','2019-08-29 16:33:08','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">What is Building commissioning</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">Building Commissioning is the process of verifying, in new construction, that all the subsystems for HVAC, Plumbing, Electrical, Fire/Life safety, Building Envelopes, Interior Systems, cogeneration, utility plants, sustainable systems, Lighting, Wastewater, Controls, and Building Security achieve the owner\'s project requirements as intended by the building owner and as designed by the building architects and engineers. Building commissioning is a quality-focused process necessary for both non-complex and complex modern construction projects. While the practice of building commissioning process is still fairly new in the construction industry, it has quickly become common practice as savvy building owners and developers have seen substantial returns on their investment. The ultimate goal of the commissioning process is to deliver for the owner a project that is on schedule, has reduced first cost of delivery and substantial life cost reductions and meets the needs of users and occupants, including a fully operational and optimized building and building systems and assemblies.</p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\"></div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-57 \" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/133_0_600_450.39577836412_measurement-systems-lab-1024x569.jpg\" alt=\"NASA Langley Measurement Systems Laboratory\" width=\"792\" height=\"594\" data-imhwpb-asset-id=\"780377\"></p>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter wp-image-59 size-large\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cq5dam-web-1280-1280-13-1024x576.jpg\" alt=\"ODU - Foreman Field Reconstruction\" width=\"1024\" height=\"576\" data-imhwpb-asset-id=\"780378\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">COMMISSIONING GOALS</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">All forms of building commissioning share the same goals: to produce a building that meets the unique needs of its owner and occupants, operates as efficiently as possible, provides a safe, comfortable work environment, and is operated and maintained by a well-trained staff or service contractor.\r\n\r\n<strong>The purpose of Building Commissioning is as follows:</strong>\r\n\r\n</p>\r\n\r\n<ul class=\"\">\r\n 	<li>Verify that a facility and its systems meet the CFR</li>\r\n 	<li>Improve building performance by saving energy and reducing operational costs</li>\r\n 	<li>Ientify and resolve building system operation, control and maintenance problems</li>\r\n 	<li>Reduce or eliminate occupant complaints and increase tenant satisfaction</li>\r\n 	<li>Improve indoor environmental comfort and quality and reduce associated liability</li>\r\n 	<li>Document system operation</li>\r\n 	<li>Identify Operations &amp; Maintenance (O&amp;M) personnel training needs and provide training</li>\r\n 	<li>Minimize operational risk and increase asset value</li>\r\n 	<li>Extend equipment life-cycle</li>\r\n 	<li>Ensure the persistence of improvements over the building’s life</li>\r\n 	<li>Assist in achieving LEED for Existing Buildings <a href=\"http://www.usgbc.org/LEED\">www.usgbc.org/LEED</a></li>\r\n 	<li>Improve the building’s ENERGY STAR rating <a href=\"http://www.energystar.gov/\">http://www.energystar.gov/</a></li>\r\n</ul>\r\n<div>\r\nThe commissioning process is a team effort, usually led by a commissioning lead, who verifies that the building meets the owner’s expectations at each stage of the design and construction process.&nbsp; Since each building project is unique, the commissioning lead will adapt the process to meet the project’s specific goals. This guide outlines a comprehensive process for reaching those goals.&nbsp; The scope of the individual projects may differ, depending on size, complexity, and budget. The parts of the commissioning process that are included in the commissioning lead’s scope of work can also vary.\r\n\r\nIn the scope, the lead typically is engaged to perform the following activities:\r\n\r\n<strong>Document the building’s functional and performance requirements.</strong> The commissioning lead works with the owner and design team to ensure that the Owner’s Project Requirements (OPR) document clearly describes the owner’s performance and maintainability criteria. Ideally, this occurs during the design phase of the project.\r\n\r\n<strong>Provide tools and documentation to improve the project team’s deliverables. </strong>These include Issues Logs, which track issues from identification to resolution at each phase of development, and a Commissioning Report, which documents the results of inspections and functional performance tests.\r\n\r\n<strong>Verify and document that systems perform as specified in the OPR. </strong>To ensure that the building will perform as expected, the commissioning lead observes equipment start-up, writes and observes functional testing, verifies that control system calibration and testing, adjusting, and balancing have been performed satisfactorily, and documents these activities.\r\n\r\n<strong>Verify that the building owner and manager receive adequate and accurate system documentation and staff training.</strong> The commissioning lead ensures that these requirements are included in the specifications, tracks their delivery, and may oversee the work of training leads in developing curriculum and conducting training sessions.\r\n\r\n<strong>Bring a holistic perspective to the design and construction process that integrates and enhances its traditionally separate functions.</strong> The commissioning process brings project team members together on a regular basis and encourages the group to work together to solve problems.</div>\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">why commission your building</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">In today’s complex buildings, systems are highly interactive. Increased system inter- activity, together with the nearly universal presence of sophisticated control systems,&nbsp; results in a trickle-down effect on building operations — small problems have big effects on performance.\r\n\r\nNo matter how carefully a building is designed, if the systems, equipment and materials are not installed and operating as intended, the building will not perform well.\r\n\r\nNow more than ever, effective operations require subsystems and components that work effectively and reliably and a building staff with the knowledge and resources to operate and maintain them. But in today’s construction environment, project team members are more cost-conscious than ever, and seldom is there adequate budget allocated to quality assurance processes.\r\n\r\nThe result of this situation? Poorly performing buildings where:</p>\r\n\r\n<ul class=\"\">\r\n 	<li>System and equipment problems result in higher than necessary utility bills.</li>\r\n 	<li>Unexpected or excessive equipment repair and replacements due to premature failures cost the owner money and eat up staff time.</li>\r\n 	<li>Poor indoor environmental quality causes employee absenteeism, tenant complaints and turnover, and in the most severe cases, leads to lawsuits and expensive retrofits.</li>\r\n</ul>\r\n<p class=\"\">\r\nBenefits from commissioning can be achieved no matter when the process begins.&nbsp; With a potential savings of up to 20% in owning and operating cost, the earlier the commissioning process begins, the greater the benefits. Commissioning benefits owners\' through improved energy efficiency, improved workplace performance due to higher quality environments, reduced risk from threats, and prevention of business losses. Organizations that have researched the benefits of commissioning confirm that owners can achieve <strong>savings in operations of $4 over the first five years of occupancy as a direct result of every $1 invested in commissioning</strong>. Meanwhile, the cost of not commissioning is equal to the costs of correcting deficiencies plus the costs of inefficient operations. For mission-critical facilities, the cost of not commissioning can be measured by the cost of downtime and lack of appropriate facility use.\r\n\r\n<strong>COST SAVINGS OF COMMISSIONED PROJECTS:</strong></p>\r\n\r\n<ul>\r\n 	<li>Reduction in design problems</li>\r\n 	<li>Reduced project delays</li>\r\n 	<li>Reduced change orders</li>\r\n 	<li>Correct start-up requirements</li>\r\n 	<li>Shorten building turnover period</li>\r\n 	<li>Reduced post occupancy corrective work</li>\r\n 	<li>Improved quality of indoor working environment</li>\r\n 	<li>Increased building system/equipment reliability and maintainability</li>\r\n 	<li>Reduced energy and operating cost</li>\r\n 	<li>Increased value as a result of better quality construction</li>\r\n</ul>\r\n<strong>DEFICIENCIES MOST OFTEN DISCOVERED DURING COMMISSIONING:</strong>\r\n<ul class=\"\">\r\n 	<li>Incorrect heating and cooling sequence of operation</li>\r\n 	<li>Lack of building control strategies for optimum comfort and efficient operation</li>\r\n 	<li>Incorrect equipment installation</li>\r\n 	<li>Malfunctioning economizer (free cooling) systems</li>\r\n 	<li>Short cycling of HVAC equipment leading to premature failures</li>\r\n 	<li>Missing specified and paid for equipment</li>\r\n 	<li>O&amp;M manuals not specific to installed equipment</li>\r\n 	<li>Problems resulting from lack of training for staff maintenance personnel</li>\r\n 	<li>Lack or documentation for equipment/systems problems during the warranty period</li>\r\n</ul>\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-36 size-full\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/d059a2ca-53d6b1-peshkov150600019.jpg\" alt=\"\" width=\"450\" height=\"300\" data-imhwpb-built-photo-search=\"10|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Commissioning Overview','','inherit','closed','closed','','20-revision-v1','','','2019-08-29 16:33:08','2019-08-29 16:33:08','',20,'http://dev.buildingsystemsgroup.com/20-revision-v1/',0,'revision','',0),(1553,1,'2019-08-29 19:02:23','2019-08-29 19:02:23','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\r\n\r\nPlease use the contact form below, if you have any general questions or requests about our services.\r\n\r\nWe will try our best to respond back to you within 24 hours.\r\n<div class=\"boldgrid-shortcode wpforms-shortcode\" data-imhwpb-draggable=\"true\">\r\n\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\r\n<h3><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<a href=\"mailto:info@buildingsystemsgroup.com\">info@buildingsystemsgroup.com</a>\r\n<h3><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">(757) 581-5898</p>\r\n\r\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\n3324 Kline Drive, Virginia Beach, VA 23452\r\n<p class=\"mod-reset\"><img class=\"wp-image-58 size-full aligncenter\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/BSG-Logo.png\" alt=\"\" width=\"222\" height=\"232\" data-imhwpb-built-photo-search=\"52|portrait\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','22-revision-v1','','','2019-08-29 19:02:23','2019-08-29 19:02:23','',22,'http://dev.buildingsystemsgroup.com/22-revision-v1/',0,'revision','',0),(74,1,'2019-08-29 16:35:37','2019-08-29 16:35:37','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\r\n\r\nPlease use the contact form below, if you have any general questions or requests about our services.\r\n\r\nWe will try our best to respond back to you within 24 hours.\r\n<div class=\"boldgrid-shortcode wpforms-shortcode\" data-imhwpb-draggable=\"true\">\r\n\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\r\n<h3><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\r\n<a href=\"mailto:info@buildingsystemsgroup.com\">info@buildingsystemsgroup.com</a>\r\n<h3><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\r\n<p class=\"\">(757) 581-5898</p>\r\n\r\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\r\n3324 Kline Drive, Virginia Beach, VA 23452\r\n<p class=\"boldgrid-google-maps\" style=\"width: 100%; height: 200px;\"><iframe style=\"width: 100%; height: 100%;\" src=\"https://maps.google.com/maps?q=3324+Kline+Drive%2C+Virginia+Beach%2C+VA+23452&amp;t=m&amp;z=16&amp;output=embed\" frameborder=\"0\"></iframe></p>\r\n<p class=\"mod-reset\"><img class=\"wp-image-58 size-full aligncenter\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/BSG-Logo.png\" alt=\"\" width=\"222\" height=\"232\" data-imhwpb-built-photo-search=\"52|portrait\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','22-revision-v1','','','2019-08-29 16:35:37','2019-08-29 16:35:37','',22,'http://dev.buildingsystemsgroup.com/22-revision-v1/',0,'revision','',0),(78,1,'2019-08-29 16:56:01','2019-08-29 16:56:01','{\n    \"boldgrid-vacation::boldgrid_font_toggle\": {\n        \"value\": true,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:37:23\"\n    },\n    \"boldgrid-vacation::logo_font_family\": {\n        \"value\": \"Arbutus Slab\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:41:24\"\n    },\n    \"boldgrid-vacation::logo_font_size\": {\n        \"value\": \"42\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:37:23\"\n    },\n    \"boldgrid-vacation::logo_text_transform\": {\n        \"value\": \"uppercase\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:37:23\"\n    },\n    \"blogdescription\": {\n        \"value\": \"NVESTIGATION - COMMISSIONING - VERIFICATION\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:38:23\"\n    },\n    \"boldgrid-vacation::boldgrid_logo_setting\": {\n        \"value\": \"\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:38:23\"\n    },\n    \"site_icon\": {\n        \"value\": 80,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:39:24\"\n    },\n    \"boldgrid-vacation::boldgrid_position_toggle\": {\n        \"value\": false,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:41:24\"\n    },\n    \"boldgrid-vacation::boldgrid_compiled_css\": {\n        \"value\": \"/** * Text Contrast * Compares contrast of a given color to the light/dark arguments and returns whichever is most \\\"contrasty\\\" */.color1-text-default {  color: #ffffff; }.color-1-text-contrast {  color: #ffffff !important; }.color-1-text-contrast-hover:hover, .color-1-text-contrast-hover:focus {  color: #ffffff !important; }.color2-text-default {  color: #ffffff; }.color-2-text-contrast {  color: #ffffff !important; }.color-2-text-contrast-hover:hover, .color-2-text-contrast-hover:focus {  color: #ffffff !important; }.color3-text-default {  color: #545454; }.color-3-text-contrast,.color-3-text-contrast-hover:hover {  color: #545454 !important; }.color-4-text-contrast,.color-4-text-contrast-hover:hover {  color: !important; }.color-5-text-contrast,.color-5-text-contrast-hover:hover {  color: !important; }.color-neutral-text-default {  color: #545454; }.color-neutral-text-contrast,.color-neutral-text-contrast-hover:hover {  color: #545454 !important; }/*create single css classes to apply palettes on universal elements*/.color1-color {  color: #446cb3 !important; }.color1-color-hover:focus, .color1-color-hover:hover {  color: #446cb3 !important; }.color2-color {  color: #203356 !important; }.color2-color-hover:focus, .color2-color-hover:hover {  color: #203356 !important; }.color3-color {  color: #b7b7b7 !important; }.color3-color-hover:focus, .color3-color-hover:hover {  color: #b7b7b7 !important; }.color-neutral-color {  color: #ffffff !important; }.color1-background {  background: #446cb3 !important; }.color1-background-hover:focus, .color1-background-hover:hover {  background: #446cb3 !important; }.color2-background {  background: #203356 !important; }.color2-background-hover:focus, .color2-background-hover:hover {  background: #203356 !important; }.color3-background {  background: #b7b7b7 !important; }.color3-background-hover:focus, .color3-background-hover:hover {  background: #b7b7b7 !important; }.color-neutral-background {  background: #ffffff !important; }.color1-background-color {  background-color: #446cb3 !important; }.color1-background-color-hover:focus, .color1-background-color-hover:hover {  background-color: #446cb3 !important; }.color2-background-color {  background-color: #203356 !important; }.color2-background-color-hover:focus, .color2-background-color-hover:hover {  background-color: #203356 !important; }.color3-background-color {  background-color: #b7b7b7 !important; }.color3-background-color-hover:focus, .color3-background-color-hover:hover {  background-color: #b7b7b7 !important; }.color-neutral-background-color {  background-color: #ffffff !important; }.color1-border-color {  border-color: #446cb3 !important; }.color1-border-color-hover:focus, .color1-border-color-hover:hover {  border-color: #446cb3 !important; }.color2-border-color {  border-color: #203356 !important; }.color2-border-color-hover:focus, .color2-border-color-hover:hover {  border-color: #203356 !important; }.color3-border-color {  border-color: #b7b7b7 !important; }.color3-border-color-hover:focus, .color3-border-color-hover:hover {  border-color: #b7b7b7 !important; }.color-neutral-border-color {  border-color: #ffffff !important; }/** Adding minimal color definitions for default breadcrumbs **/.breadcrumb li a.filler {  background: #203356;  color: #ffffff; }  .breadcrumb li a.filler:after {    border-left-color: #203356; }.breadcrumb li a:not(.filler) {  color: #ffffff; }  .breadcrumb li a:not(.filler):after {    border-left-color: #446cb3 !important; }  .breadcrumb li a:not(.filler):hover, .breadcrumb li a:not(.filler):focus {    background: #203356;    color: #ffffff; }    .breadcrumb li a:not(.filler):hover:after, .breadcrumb li a:not(.filler):focus:after {      border-left-color: #203356 !important;      color: #ffffff; }/** WooCommerce overrides **/.woocommerce div.product .stock,.woocommerce div.product span.price,.woocommerce div.product p.price {  color: #446cb3; }/** Gallery overrides **/.wc-image-links .gallery-caption,.wc-gallery-captions-show .gallery-caption,.wc-gallery-captions-onhover .gallery-caption,.wc-gallery-captions-showon .gallery-caption {  background-color: #b7b7b7;  color: #545454; }  .wc-image-links .gallery-caption > *,  .wc-gallery-captions-show .gallery-caption > *,  .wc-gallery-captions-onhover .gallery-caption > *,  .wc-gallery-captions-showon .gallery-caption > * {    color: #545454; }/** Base Colors** Create colors for buttons* (.button-primary, .button-secondary, etc.)*/.btn-color-1,.btn-color-1-flat {  background-color: #446cb3;  border-color: #446cb3;  color: #ffffff !important; }  .btn-color-1:visited,  .btn-color-1-flat:visited {    color: #ffffff; }  .btn-color-1:hover, .btn-color-1:focus,  .btn-color-1-flat:hover,  .btn-color-1-flat:focus {    background-color: #6588c5;    border-color: #6588c5;    color: #ffffff !important; }  .btn-color-1:active, .btn-color-1.active, .btn-color-1.is-active,  .btn-color-1-flat:active,  .btn-color-1-flat.active,  .btn-color-1-flat.is-active {    background-color: #506fa7;    border-color: #506fa7;    color: #36568e !important; }.btn-color-2,.btn-color-2-flat {  background-color: #203356;  border-color: #203356;  color: #ffffff !important; }  .btn-color-2:visited,  .btn-color-2-flat:visited {    color: #ffffff; }  .btn-color-2:hover, .btn-color-2:focus,  .btn-color-2-flat:hover,  .btn-color-2-flat:focus {    background-color: #2e497b;    border-color: #2e497b;    color: #ffffff !important; }  .btn-color-2:active, .btn-color-2.active, .btn-color-2.is-active,  .btn-color-2-flat:active,  .btn-color-2-flat.active,  .btn-color-2-flat.is-active {    background-color: #263550;    border-color: #263550;    color: #121d31 !important; }.btn-color-3,.btn-color-3-flat {  background-color: #b7b7b7;  border-color: #b7b7b7;  color: #545454 !important; }  .btn-color-3:visited,  .btn-color-3-flat:visited {    color: #545454; }  .btn-color-3:hover, .btn-color-3:focus,  .btn-color-3-flat:hover,  .btn-color-3-flat:focus {    background-color: #d1d1d1;    border-color: #d1d1d1;    color: #545454 !important; }  .btn-color-3:active, .btn-color-3.active, .btn-color-3.is-active,  .btn-color-3-flat:active,  .btn-color-3-flat.active,  .btn-color-3-flat.is-active {    background-color: #b7b7b7;    border-color: #b7b7b7;    color: #9e9e9e !important; }.btn-neutral-color,.btn-neutral-color-flat {  background-color: #ffffff;  border-color: #ffffff;  color: #545454 !important; }  .btn-neutral-color:visited,  .btn-neutral-color-flat:visited {    color: #545454; }  .btn-neutral-color:hover, .btn-neutral-color:focus,  .btn-neutral-color-flat:hover,  .btn-neutral-color-flat:focus {    background-color: white;    border-color: white;    color: #545454 !important; }  .btn-neutral-color:active, .btn-neutral-color.active, .btn-neutral-color.is-active,  .btn-neutral-color-flat:active,  .btn-neutral-color-flat.active,  .btn-neutral-color-flat.is-active {    background-color: white;    border-color: white;    color: #e6e6e6 !important; }/*------------------------------------------------------------------------# Palettes------------------------------------------------------------------------*/.palette-primary {  color: #545454;  /*-----------------------------------------------\\t## 1\\t-----------------------------------------------*/  /*-----------------------------------------------\\t## 2\\t-----------------------------------------------*/  /*-----------------------------------------------\\t## 3\\t-----------------------------------------------*/  /*-----------------------------------------------\\t## Neutral\\t-----------------------------------------------*/  /*-----------------------------------------------\\t# Et Cetera\\t-----------------------------------------------*/  /* ## Social Menus */  /* Social Media Color Overlay */ }  .palette-primary .navbar-default .navbar-nav .open .dropdown-menu,  .palette-primary .gridblock li:before {    background: #446cb3; }  .palette-primary .navbar-default .navbar-toggle {    border-color: #ffffff; }  .palette-primary .navbar-default .navbar-toggle .icon-bar,  .palette-primary .navbar-default .navbar-toggle:hover,  .palette-primary .navbar-default .navbar-toggle:focus {    background-color: #ffffff; }  .palette-primary .navbar-default .navbar-toggle:hover .icon-bar,  .palette-primary .navbar-default .navbar-toggle:focus .icon-bar {    background-color: #446cb3; }  .palette-primary .background-alpha {    background: #446cb3;    /* Box Shadow */    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25), 0 0 50px rgba(0, 0, 0, 0.1) inset;    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25), 0 0 50px rgba(0, 0, 0, 0.1) inset;    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25), 0 0 50px rgba(0, 0, 0, 0.1) inset; }  .palette-primary .navbar-default .navbar-nav > li > a:hover,  .palette-primary .navbar-default .navbar-nav > li > a:focus,  .palette-primary .navbar-default .navbar-nav > .active > a,  .palette-primary .navbar-default .navbar-nav > .active > a:hover,  .palette-primary .navbar-default .navbar-nav > .active > a:focus,  .palette-primary .leaderbox-text ul li i.fa,  .palette-primary .mod-alpha i.fa,  .palette-primary .mod-beta i,  .palette-primary a,  .palette-primary .current_page_item a,  .palette-primary.disabled-footer .site-footer a,  .palette-primary .icon-circle i.fa {    color: #446cb3; }  .palette-primary .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,  .palette-primary .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,  .palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,  .palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,  .palette-primary .open > .dropdown-toggle.btn-primary,  .palette-primary .navbar-default .navbar-nav > .open > a,  .palette-primary .navbar-default .navbar-nav > .open > a:hover,  .palette-primary .navbar-default .navbar-nav > .open > a:focus {    background: #203356; }  .palette-primary .button-primary,  .palette-primary .dropdown-menu > li > a,  .palette-primary .dropdown-menu > li > a:hover,  .palette-primary .dropdown-menu > li > a:focus,  .palette-primary .dropdown-toggle,  .palette-primary .site-header,  .palette-primary .nav > li > a:focus,  .palette-primary .nav > li > a:hover,  .palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a,  .palette-primary .mark,  .palette-primary mark {    background: #446cb3;    color: #ffffff; }  .palette-primary .site-title a,  .palette-primary .site-description,  .palette-primary .secondary-menu li a,  .palette-primary .tertiary-menu li a {    color: #ffffff; }  .palette-primary #reviews #comments ol.commentlist li .comment-text {    border: 1px solid #446cb3; }  .palette-primary .navbar-default .navbar-nav > .current-menu-parent > a {    background: none;    color: #446cb3; }  .palette-primary .button-secondary,  .palette-primary .widget .table-striped > tbody > tr:nth-child(2n+1) > td,  .palette-primary .navbar-default .navbar-nav .open .dropdown-menu > .active > a,  .palette-primary .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,  .palette-primary .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,  .palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,  .palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,  .palette-primary .navbar-default .navbar-nav > li > a {    background: #203356;    color: #ffffff; }  .palette-primary .navbar-nav,  .palette-primary .icon-circle,  .palette-primary #secondary-menu {    background: #203356; }  .palette-primary .mod-alpha h2,  .palette-primary .mod-alpha p,  .palette-primary .link-secondary,  .palette-primary .section-title,  .palette-primary .details h3 i,  .palette-primary .agent-profile h2,  .palette-primary .button-primary i.fa,  .palette-primary .widget-title,  .palette-primary .entry-title,  .palette-primary #reply-title,  .palette-primary .tertiary-menu .current_page_item a {    color: #203356; }  .palette-primary .secondary-menu .current_page_item a,  .palette-primary .footer-center-menu .current_page_item a {    color: #446cb3; }  .palette-primary .mod-blockquote {    border-left: 7px solid #203356; }  .palette-primary .mod-divider a {    background: #ffffff;    color: #203356; }  .palette-primary .site-footer,  .palette-primary .site-footer p,  .palette-primary .button-primary:hover,  .palette-primary .button-primary:focus,  .palette-primary .button-secondary:hover,  .palette-primary .button-secondary:focus,  .palette-primary .navbar-default .navbar-nav > .open > a,  .palette-primary .navbar-default .navbar-nav > .open > a:hover,  .palette-primary .navbar-default .navbar-nav > .open > a:focus {    background: #b7b7b7;    color: #545454; }  .palette-primary .mod-divider a,  .palette-primary.single .entry-title,  .palette-primary .entry-title a,  .palette-primary .comment-text {    background: #ffffff;    color: #545454; }  .palette-primary .footer-center-menu li a {    color: #545454; }  .palette-primary .background-primary,  .palette-primary.error404 .site-content,  .palette-primary.page-template-default .site-content,  .palette-primary.search .site-content,  .palette-primary.single .site-content,  .palette-primary.archive .site-content,  .palette-primary.blog .site-content, .palette-primary.mce-content-body {    background: #ffffff;    color: #545454; }  .palette-primary.disabled-footer .site-footer,  .palette-primary #boldgrid-sticky-filler,  .palette-primary #boldgrid-sticky-push {    background: #ffffff; }  .palette-primary .mod-blockquote p,  .palette-primary .mod-gamma-1 h2,  .palette-primary .mod-gamma-1 h3,  .palette-primary .comment-content p,  .palette-primary #reviews #comments ol.commentlist li .meta {    color: #545454; }  .palette-primary .entry-title:before,  .palette-primary .mod-divider:before {    border-top: 1px solid #545454; }  .palette-primary hr {    background: #545454; }  .palette-primary .mod-beta h3 {    color: #333; }  .palette-primary .call-to-action {    background: rgba(15, 19, 28, 0.75); }  .palette-primary .call-to-action h2 {    border-bottom: 1px #e1e1e1 solid;    color: #e1e1e1; }  .palette-primary .call-to-action p,  .palette-primary .menu-social li a {    color: #fff; }  .palette-primary .ratings i {    color: #f39c12; }  .palette-primary .background-alpha:before,  .palette-primary .background-alpha:after {    /* Box Shadow */    -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);    -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7); }  .palette-primary .menu-social li.youtube a {    background: #bb0000; }  .palette-primary .menu-social li.facebook a {    background: #3b5998; }  .palette-primary .menu-social li.google-plus a {    background: #dd4b39; }  .palette-primary .menu-social li.twitter a {    background: #00aced; }  .palette-primary .menu-social li.linkedin a {    background: #0976b4; }  .palette-primary .menu-social li.bitbucket a {    background: #205081; }  .palette-primary .menu-social li.codepen a {    background: #000; }  .palette-primary .menu-social li.dribbble a {    background: #444444; }  .palette-primary .menu-social li.dropbox a {    background: #007ee5; }  .palette-primary .menu-social li.flickr a {    background: #ff0084; }  .palette-primary .menu-social li.foursquare a {    background: #0072b1; }  .palette-primary .menu-social li.github a {    background: #333; }  .palette-primary .menu-social li.gratipay a {    background: #663300; }  .palette-primary .menu-social li.instagram a {    background: #3f729b; }  .palette-primary .menu-social li.jsfiddle a {    background: #4679BD; }  .palette-primary .menu-social li.xing a {    background: #026466; }  .palette-primary .menu-social li.wpcom a {    background: #21759b; }  .palette-primary .menu-social li.weibo a {    background: #E71D34; }  .palette-primary .menu-social li.tumblr a {    background: #35465c; }  .palette-primary .menu-social li.trello a {    background: #256a92; }  .palette-primary .menu-social li.snapchat a {    background: #FFFC00; }  .palette-primary .menu-social li.reddit a {    background: #ff4500; }  .palette-primary .menu-social li.renren a {    background: #005EAC; }  .palette-primary .menu-social li.pinterest a {    background: #cc2127; }  .palette-primary .menu-social li.envelope a {    background: #777; }  .palette-primary .menu-social li.yelp a {    background: #af0606; }  .palette-primary .menu-social li.slideshare a {    background: #e98325; }  .palette-primary .menu-social li.stack-overflow a {    background: #fe7a15; }  .palette-primary .menu-social li.stack-exchange a {    background: #000; }  .palette-primary .menu-social li.soundcloud a {    background: #f80; }  .palette-primary .menu-social li.steam a {    background: #0B0B0B; }  .palette-primary .menu-social li.vimeo a {    background: #1ab7ea; }  .palette-primary .menu-social li.vine a {    background: #00b488; }  .palette-primary .menu-social li.vk a {    background: #45668e; }  .palette-primary .menu-social li.twitch a {    background: #6441A4; }  .palette-primary .menu-social li a {    position: relative;    width: 100%;    height: 100%; }  .palette-primary .menu-social li a:hover:after {    content: \\\"\\\\A\\\";    width: 100%;    height: 100%;    background: rgba(0, 0, 0, 0.1);    position: absolute;    top: 0;    left: 0; }  .palette-primary .tertiary-menu li.menu-social a:hover {    color: #203356; }  .palette-primary .secondary-menu li.menu-social a:hover,  .palette-primary .footer-center-menu li.menu-social a:hover {    color: #446cb3; }  .palette-primary .menu-social li.menu-item-object-page a,  .palette-primary .menu-social li.menu-item-object-post a {    background: rgba(15, 19, 28, 0.75); }\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:56:01\"\n    },\n    \"boldgrid-vacation::boldgrid_color_palette\": {\n        \"value\": \"{\\\"state\\\":{\\\"active-palette\\\":\\\"palette-primary\\\",\\\"active-palette-id\\\":\\\"3c972f9f094995e0120c7a340cd6ba03\\\",\\\"palettes\\\":{\\\"palette-primary\\\":{\\\"format\\\":\\\"palette-primary\\\",\\\"colors\\\":[\\\"rgb(68, 108, 179)\\\",\\\"rgb(32, 51, 86)\\\",\\\"rgb(183, 183, 183)\\\"],\\\"neutral-color\\\":\\\"#ffffff\\\"}},\\\"saved_palettes\\\":[]}}\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:44:24\"\n    },\n    \"boldgrid-vacation::headings_font_size\": {\n        \"value\": \"15\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:45:25\"\n    },\n    \"boldgrid-vacation::alternate_headings_font_size\": {\n        \"value\": \"15\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:45:25\"\n    },\n    \"widget_black-studio-tinymce[0]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo1OntzOjU6InRpdGxlIjtzOjE0OiJDYWxsIFRvIEFjdGlvbiI7czo0OiJ0ZXh0IjtzOjg0NToiPGRpdiBjbGFzcz0iY29udGFpbmVyIj4NCjxkaXYgY2xhc3M9InJvdyI+DQo8ZGl2IGNsYXNzPSJjb2wtbWQtNiI+PC9kaXY+DQo8ZGl2IGNsYXNzPSJjb2wtbWQtNiI+DQo8ZGl2IGNsYXNzPSJjYWxsLXRvLWFjdGlvbiI+DQo8aDI+V0hBVCBTRVRTIFVTIEFQQVJUPC9oMj4NCkJTRyBpcyBhIEFDRyBjZXJ0aWZpZWQgZmlybSBzcGVjaWFsaXppbmcgaW4gaW5kZXBlbmRlbnQgYnVpbGRpbmcgY29tbWlzc2lvbmluZyBmb3IgbmV3IGJ1aWxkaW5nIGNvbnN0cnVjdGlvbiwgcmVub3ZhdGlvbiwgcmV0cm8tY29tbWlzc2lvbmluZyAoQ29tbWlzc2lvbmluZyBvZiBleGlzdGluZyBidWlsZGluZ3MpIGFuZCBpbnZlc3RpZ2F0aW9uIG9mIGV4aXN0aW5nIGJ1aWxkaW5nIGVxdWlwbWVudC9zeXN0ZW1zIG9wZXJhdGlvbmFsIGlzc3Vlcy4gQnVpbGRpbmcgU3lzdGVtcyBHcm91cCBpcyBjb21wcmlzZWQgb2YgZXhwZXJpZW5jZWQgZW5naW5lZXJpbmcgcHJvZmVzc2lvbmFscyBhbmQgZmllbGQgdGVjaG5pY2lhbnMuIEJTRyBoYXMgYSBwb3NpdGl2ZSByZXB1dGF0aW9uIGluIGJ1aWxkaW5nIGNvbW1pc3Npb25pbmcsIGVxdWlwbWVudC9zeXN0ZW1zIHRyb3VibGVzaG9vdGluZywgZW5lcmd5IGVmZmljaWVudCBvcGVyYXRpb24gc3VydmV5cywgYW5kIElBUSBpc3N1ZXMuIE91ciBhcHByb2FjaCB0byBjb21taXNzaW9uaW5nIGlzIGhhbmRzLW9uIHZlcmlmaWNhdGlvbiBpbiB0aGUgZmllbGQgdG8gZW5zdXJlIHlvdXIgYnVpbGRpbmcgcHJvamVjdCBpcyBjb21wbGV0ZWQgYW5kIG9wZXJhdGluZyBhcyBpdCB3YXMgb3JpZ2luYWxseSBkZXNpZ25lZC48L2Rpdj4NCjwvZGl2Pg0KPC9kaXY+DQo8L2Rpdj4iO3M6NDoidHlwZSI7czo2OiJ2aXN1YWwiO3M6NjoiZmlsdGVyIjtzOjE6IjEiO3M6NToibGFiZWwiO3M6MjA6ImJsYWNrLXN0dWRpby10aW55bWNlIjt9\",\n            \"title\": \"Call To Action\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"8bdafd1876087986c97784a7e3e886d5\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 16:54:29\"\n    }\n}','','','trash','closed','closed','','26b4f9b5-4c06-4111-9a55-719992b1cd1a','','','2019-08-29 16:56:01','2019-08-29 16:56:01','',0,'http://dev.buildingsystemsgroup.com/?p=78',0,'customize_changeset','',0),(79,1,'2019-08-29 16:38:01','2019-08-29 16:38:01','http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cropped-BSG-Logo.png','cropped-BSG-Logo.png','','inherit','open','closed','','cropped-bsg-logo-png','','','2019-08-29 16:38:01','2019-08-29 16:38:01','',0,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cropped-BSG-Logo.png',0,'attachment','image/png',0),(80,1,'2019-08-29 16:38:54','2019-08-29 16:38:54','http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cropped-BSG-Logo-1.png','cropped-BSG-Logo-1.png','','inherit','open','closed','','cropped-bsg-logo-1-png','','','2019-08-29 16:38:54','2019-08-29 16:38:54','',0,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cropped-BSG-Logo-1.png',0,'attachment','image/png',0),(85,1,'2019-08-29 16:56:43','2019-08-29 16:56:43','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://dev.buildingsystemsgroup.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2019-08-29 16:56:43','2019-08-29 16:56:43','',3,'http://dev.buildingsystemsgroup.com/3-revision-v1/',0,'revision','',0),(96,1,'2019-08-29 17:20:26','2019-08-29 17:20:26','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">R. Glenn Capps</h2>\r\n<h4 class=\"\"><b>President - Certified Commissioning Authority</b></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 3px; padding-bottom: 3px;\">\r\n<div class=\"col-md-12 col-sm-12 col-margin-bottom col-xs-12\">\r\n<p class=\"\">Mr. Capps has more than 50 years experience in facility operation and maintenance, mechanical design, facility planning, construction administration, constructability reviews, and facility commissioning for renovations/alterations and new construction.&nbsp; Having served as the “owner’s representative” on over $72 Million in construction provides Mr. Capps a unique perspective on operational and maintenance issues relevant to facility owner’s and operators.&nbsp; The design experience, coupled with the construction administration, provide a complete and comprehensive understanding that has proven to be invaluable in systems commissioning.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">qualifications</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<ul class=\"\">\r\n 	<li>ACG Certified Commissioning Authority</li>\r\n 	<li>Mechanical Engineer</li>\r\n 	<li>American Society of Heating, Refrigerating and Air-Conditioning Engineers</li>\r\n 	<li>Association of School Business Officials</li>\r\n 	<li>Building Commissioning Association</li>\r\n 	<li>Council of Educational Facility Planners International</li>\r\n 	<li>Certified Energy Auditor</li>\r\n 	<li>Virginia Educational Facility Planners, Former President</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\" style=\"padding-bottom: 20px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\" style=\"padding-bottom: 20px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Brent m. capps</h2>\r\n<h4 class=\"\"><b>project manager - Certified Commissioning technician</b></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"width: 70%; margin-left: auto; margin-right: auto;\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"width: auto; margin-left: -8px; padding: 2em 0em;\">Mr. Capps has twelve years experience as Project Manager and Field Technician for Building Systems Group, Inc.; a Hampton Roads based facility commissioning company. Mr. Capps has provided independent building commissioning for new building construction, renovation, retro-commissioning (Commissioning of existing buildings) and investigation of existing building equipment/systems operational problems.&nbsp; His approach to commissioning is hands-on verification in the field to ensure your building project is completed and operating correctly.&nbsp; Mr. Capps’ level of commissioning experience ranges from provided services as required by SMACNA Commissioning Manual to Leadership in Energy and Environmental Design (LEED®) Enhanced Commissioning.</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">qualifications</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<ul class=\"\" style=\"padding-left: 4em;\">\r\n 	<li>ACG Certified Commissioning Technician</li>\r\n 	<li>Eight years experience in marketing, program development and administration.</li>\r\n 	<li>Twelve years experience in HVAC, Plumbing, and Electrical Commissioning</li>\r\n 	<li>Graduate of The University of Wisconsin-Madison:&nbsp;The Commissioning Process in Practice: An Intensive Project-Based Course for Providers&nbsp;</li>\r\n 	<li>Building Commissioning Association (BCxA) – Professional Member</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Commissioning Team','','publish','closed','closed','','commissioning-team','','','2019-08-29 19:01:35','2019-08-29 19:01:35','',18,'http://dev.buildingsystemsgroup.com/?page_id=96',0,'page','',0),(130,1,'2019-08-29 17:20:01','2019-08-29 17:20:01','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">R. Glenn Capps</h2>\r\n<h4 class=\"\"><b>President - Certified Commissioning Authority</b></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 3px; padding-bottom: 3px;\">\r\n<div class=\"col-md-12 col-sm-12 col-margin-bottom col-xs-12\">\r\n<p class=\"\">Mr. Capps has more than 50 years experience in facility operation and maintenance, mechanical design, facility planning, construction administration, constructability reviews, and facility commissioning for renovations/alterations and new construction.&nbsp; Having served as the “owner’s representative” on over $72 Million in construction provides Mr. Capps a unique perspective on operational and maintenance issues relevant to facility owner’s and operators.&nbsp; The design experience, coupled with the construction administration, provide a complete and comprehensive understanding that has proven to be invaluable in systems commissioning.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">qualifications</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<ul class=\"\">\r\n 	<li>ACG Certified Commissioning Authority</li>\r\n 	<li>Mechanical Engineer</li>\r\n 	<li>American Society of Heating, Refrigerating and Air-Conditioning Engineers</li>\r\n 	<li>Association of School Business Officials</li>\r\n 	<li>Building Commissioning Association</li>\r\n 	<li>Council of Educational Facility Planners International</li>\r\n 	<li>Certified Energy Auditor</li>\r\n 	<li>Virginia Educational Facility Planners, Former President</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\" style=\"padding-bottom: 20px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Brent m. capps</h2>\r\n<h4 class=\"\"><b>project manager - Certified Commissioning technician</b></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"width: 70%; margin-left: auto; margin-right: auto;\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"width: auto; margin-left: -8px; padding: 2em 0em;\">Mr. Capps has twelve years experience as Project Manager and Field Technician for Building Systems Group, Inc.; a Hampton Roads based facility commissioning company. Mr. Capps has provided independent building commissioning for new building construction, renovation, retro-commissioning (Commissioning of existing buildings) and investigation of existing building equipment/systems operational problems.&nbsp; His approach to commissioning is hands-on verification in the field to ensure your building project is completed and operating correctly.&nbsp; Mr. Capps’ level of commissioning experience ranges from provided services as required by SMACNA Commissioning Manual to Leadership in Energy and Environmental Design (LEED®) Enhanced Commissioning.</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">qualifications</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<ul class=\"\" style=\"padding-left: 4em;\">\r\n 	<li>ACG Certified Commissioning Technician</li>\r\n 	<li>Eight years experience in marketing, program development and administration.</li>\r\n 	<li>Twelve years experience in HVAC, Plumbing, and Electrical Commissioning</li>\r\n 	<li>Graduate of The University of Wisconsin-Madison:&nbsp;The Commissioning Process in Practice: An Intensive Project-Based Course for Providers&nbsp;</li>\r\n 	<li>Building Commissioning Association (BCxA) – Professional Member</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Commissioning Team','','inherit','closed','closed','','96-revision-v1','','','2019-08-29 17:20:01','2019-08-29 17:20:01','',96,'http://dev.buildingsystemsgroup.com/96-revision-v1/',0,'revision','',0),(129,1,'2019-08-29 17:19:43','2019-08-29 17:19:43','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">R. Glenn Capps</h2>\r\n<h4 class=\"\"><b>President - Certified Commissioning Authority</b></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 3px; padding-bottom: 3px;\">\r\n<div class=\"col-md-12 col-sm-12 col-margin-bottom col-xs-12\">\r\n<p class=\"\">Mr. Capps has more than 50 years experience in facility operation and maintenance, mechanical design, facility planning, construction administration, constructability reviews, and facility commissioning for renovations/alterations and new construction.&nbsp; Having served as the “owner’s representative” on over $72 Million in construction provides Mr. Capps a unique perspective on operational and maintenance issues relevant to facility owner’s and operators.&nbsp; The design experience, coupled with the construction administration, provide a complete and comprehensive understanding that has proven to be invaluable in systems commissioning.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">qualifications</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<ul class=\"\">\r\n 	<li>ACG Certified Commissioning Authority</li>\r\n 	<li>Mechanical Engineer</li>\r\n 	<li>American Society of Heating, Refrigerating and Air-Conditioning Engineers</li>\r\n 	<li>Association of School Business Officials</li>\r\n 	<li>Building Commissioning Association</li>\r\n 	<li>Council of Educational Facility Planners International</li>\r\n 	<li>Certified Energy Auditor</li>\r\n 	<li>Virginia Educational Facility Planners, Former President</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\" style=\"padding-bottom: 20px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Brent m. capps</h2>\r\n<h4 class=\"\"><b>project manager - Certified Commissioning technician</b></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"width: 70%; margin-left: auto; margin-right: auto;\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"width: auto; margin-left: -8px; padding: 2em 0em;\">Mr. Capps has twelve years experience as Project Manager and Field Technician for Building Systems Group, Inc.; a Hampton Roads based facility commissioning company. Mr. Capps has provided independent building commissioning for new building construction, renovation, retro-commissioning (Commissioning of existing buildings) and investigation of existing building equipment/systems operational problems.&nbsp; His approach to commissioning is hands-on verification in the field to ensure your building project is completed and operating correctly.&nbsp; Mr. Capps’ level of commissioning experience ranges from provided services as required by SMACNA Commissioning Manual to Leadership in Energy and Environmental Design (LEED®) Enhanced Commissioning.</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">qualifications</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<ul class=\"\" style=\"padding-left: 4em;\">\r\n 	<li>ACG Certified Commissioning Technician</li>\r\n 	<li>Eight years experience in marketing, program development and administration.</li>\r\n 	<li>Twelve years experience in HVAC, Plumbing, and Electrical Commissioning</li>\r\n 	<li>Graduate of The University of Wisconsin-Madison:&nbsp;The Commissioning Process in Practice: An Intensive Project-Based Course for Providers&nbsp;</li>\r\n 	<li>Building Commissioning Association (BCxA) – Professional Member</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Commissioning Team','','inherit','closed','closed','','96-revision-v1','','','2019-08-29 17:19:43','2019-08-29 17:19:43','',96,'http://dev.buildingsystemsgroup.com/96-revision-v1/',0,'revision','',0),(128,1,'2019-08-29 17:18:48','2019-08-29 17:18:48','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">R. Glenn Capps</h2>\r\n<h4 class=\"\"><b>President - Certified Commissioning Authority</b></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 3px; padding-bottom: 3px;\">\r\n<div class=\"col-md-12 col-sm-12 col-margin-bottom col-xs-12\">\r\n<p class=\"\">Mr. Capps has more than 50 years experience in facility operation and maintenance, mechanical design, facility planning, construction administration, constructability reviews, and facility commissioning for renovations/alterations and new construction.&nbsp; Having served as the “owner’s representative” on over $72 Million in construction provides Mr. Capps a unique perspective on operational and maintenance issues relevant to facility owner’s and operators.&nbsp; The design experience, coupled with the construction administration, provide a complete and comprehensive understanding that has proven to be invaluable in systems commissioning.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">qualifications</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<ul class=\"\">\r\n 	<li>ACG Certified Commissioning Authority</li>\r\n 	<li>Mechanical Engineer</li>\r\n 	<li>American Society of Heating, Refrigerating and Air-Conditioning Engineers</li>\r\n 	<li>Association of School Business Officials</li>\r\n 	<li>Building Commissioning Association</li>\r\n 	<li>Council of Educational Facility Planners International</li>\r\n 	<li>Certified Energy Auditor</li>\r\n 	<li>Virginia Educational Facility Planners, Former President</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Brent m. capps</h2>\r\n<h4 class=\"\"><b>project manager - Certified Commissioning technician</b></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"width: 70%; margin-left: auto; margin-right: auto;\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"width: auto; margin-left: -8px; padding: 2em 0em;\">Mr. Capps has twelve years experience as Project Manager and Field Technician for Building Systems Group, Inc.; a Hampton Roads based facility commissioning company. Mr. Capps has provided independent building commissioning for new building construction, renovation, retro-commissioning (Commissioning of existing buildings) and investigation of existing building equipment/systems operational problems.&nbsp; His approach to commissioning is hands-on verification in the field to ensure your building project is completed and operating correctly.&nbsp; Mr. Capps’ level of commissioning experience ranges from provided services as required by SMACNA Commissioning Manual to Leadership in Energy and Environmental Design (LEED®) Enhanced Commissioning.</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">qualifications</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<ul class=\"\" style=\"padding-left: 4em;\">\r\n 	<li>ACG Certified Commissioning Technician</li>\r\n 	<li>Eight years experience in marketing, program development and administration.</li>\r\n 	<li>Twelve years experience in HVAC, Plumbing, and Electrical Commissioning</li>\r\n 	<li>Graduate of The University of Wisconsin-Madison:&nbsp;The Commissioning Process in Practice: An Intensive Project-Based Course for Providers&nbsp;</li>\r\n 	<li>Building Commissioning Association (BCxA) – Professional Member</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Commissioning Team','','inherit','closed','closed','','96-revision-v1','','','2019-08-29 17:18:48','2019-08-29 17:18:48','',96,'http://dev.buildingsystemsgroup.com/96-revision-v1/',0,'revision','',0),(106,1,'2019-08-29 16:59:16','2019-08-29 16:59:16','<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\" \"http://www.w3.org/TR/REC-html40/loose.dtd\">\n<html><body><div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Cat Dyson</h2>\r\n<h4>Premier Art Photography</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-12 col-margin-bottom col-xs-12\"></div>\r\n<div class=\"col-md-2 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/7c53e901-55cfa000-axelbueckert141000039.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"8|portrait\" width=\"150\" class=\"wp-image-53\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-xs-12 col-sm-12\">\r\n\r\nPhotographer Cat Dyson has over 20 years of experience in the photography trade. With an eye towards capturing the magic of the moment, she\'s developed techniques that let her slide unnoticed into her client\'s comfort zones.\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12\">\r\n\r\nIn addition to special event and family portraiture, Ms. Dyson has an extensive background in art photography, capturing images that have won her accolades and awards at a variety of art competitions over the years.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Educational Background</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\"></div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n\r\nAfter completing a BFA at New York City\'s Academy of Fine Arts and pursuing an MFA specializing in artistic portrait photography, Ms. Dyson has dedicated years to her education. She has spent years working with educational programs in photography that help capture the magic of the moment. As a way of paying forward her degree, she offers a variety of photography technique classes through several different venues, including online and college classes, local and regional art council workshops and national photography convention offerings.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">A Study of Subjects</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\"></div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n\r\nMs. Dyson uses her minor in psychology to determine how to best approach her subjects and get inside their comfort zone without having them shut her out. This ability allows her to capture the magic of the moment in her special event photography and unique portraits, providing her clients with amazing images that delight them.\r\n\r\nShe has spent a significant time in the art photography trade, going to great lengths to take pictures that capture her client&acirc;&euro;&trade;s personality and spirit. With an adventurous spirit, she\'s taken photographs using a number of techniques including rappelling, skydiving, aerial photography and many more. Here are some of her wildest photo shoots:\r\n\r\n</div>\r\n<div class=\"col-md-2 col-xs-12 col-sm-6 text-center\">\r\n<div data-imhwpb-draggable=\"true\"><i class=\"fa fa-3x fa-bicycle\"> </i></div>\r\n<h5>Zion National Park, Utah</h5>\r\n<div data-imhwpb-draggable=\"true\"><i class=\"fa fa-3x fa-sun-o\"> </i></div>\r\n<h5>Sunset over Lake Michigan</h5>\r\n</div>\r\n<div class=\"col-md-2 col-xs-12 col-sm-6 text-center\">\r\n<div data-imhwpb-draggable=\"true\"><i class=\"fa fa-3x fa-university\"> </i></div>\r\n<h5>National Cathedral, Washington D.C.</h5>\r\n<div data-imhwpb-draggable=\"true\"><i class=\"fa fa-3x fa-diamond\"> </i></div>\r\n<h5>Malibu Beach Wedding, CA</h5>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Capturing the Magic</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-6\">\r\n\r\nMs. Dyson spent time in her undergraduate program pursuing a minor in psychology at an affiliated college. She looked into the psychology of personal space and boundaries to learn how to get inside of their comfort zone and capture the true wealth of their spirit. This allows her to get the magic of special events down on paper.\r\n\r\nMs. Dyson doesn\'t only limit her application of psychology to the magic she captures in her photography. She\'s also an avid volunteer in child abuse intervention services in her region.\r\n\r\n</div>\r\n<div class=\"col-md-3 col-xs-12 col-sm-6\">\r\n<h5>Client List</h5>\r\n<ul><li>Johnson Wedding Planning Services</li>\r\n 	<li>Beautiful Babies Boutique</li>\r\n 	<li>Fair River Art Show and Festival</li>\r\n 	<li>Pretty Woman Wedding Shows</li>\r\n 	<li>Amazing Grace Baby Services</li>\r\n 	<li>Mount Green Musical Festival</li>\r\n</ul></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Sample Pieces</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\"></div>\r\n<div class=\"col-md-2 col-sm-3 col-xs-6 text-center\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/4eb7e26f-71280d42-konradbak131200112.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"110\" class=\"wp-image-54\"></p>\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/049815ef-94b585b1-stockbroker141101204.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"110\" class=\"wp-image-55\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-3 col-xs-6 text-center\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/1e90ba79-43556005-georgerudy150600236.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"110\" class=\"wp-image-56\"></p>\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/51c7c506-4f8fcc-pressmaster141000597.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"110\" class=\"wp-image-57\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-3 col-xs-6 text-center\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/ad93b136-8e9c904c-gstockstudio150600485.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"110\" class=\"wp-image-58\"></p>\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/4674c4aa-59f7fe34-gstockstudio150500009.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"110\" class=\"wp-image-59\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-3 col-xs-6 text-center\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/b5e9919d-e9d9171c-gstockstudio150700502.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"110\" class=\"wp-image-60\"></p>\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/9cbb82bc-34bee842-dolgachov150501462.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"110\" class=\"wp-image-61\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div></body></html>\n','Resume','','inherit','closed','closed','','96-revision-v1','','','2019-08-29 16:59:16','2019-08-29 16:59:16','',96,'http://dev.buildingsystemsgroup.com/96-revision-v1/',0,'revision','',0),(97,1,'2019-08-29 16:59:12','2019-08-29 16:59:12','','','','inherit','open','closed','','97','','','2019-08-29 16:59:12','2019-08-29 16:59:12','',96,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/7c53e901-55cfa000-axelbueckert141000039.jpg',0,'attachment','image/jpeg',0),(98,1,'2019-08-29 16:59:13','2019-08-29 16:59:13','','','','inherit','open','closed','','98','','','2019-08-29 16:59:13','2019-08-29 16:59:13','',96,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/4eb7e26f-71280d42-konradbak131200112.jpg',0,'attachment','image/jpeg',0),(99,1,'2019-08-29 16:59:13','2019-08-29 16:59:13','','','','inherit','open','closed','','99','','','2019-08-29 16:59:13','2019-08-29 16:59:13','',96,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/049815ef-94b585b1-stockbroker141101204.jpg',0,'attachment','image/jpeg',0),(100,1,'2019-08-29 16:59:14','2019-08-29 16:59:14','','','','inherit','open','closed','','100','','','2019-08-29 16:59:14','2019-08-29 16:59:14','',96,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/1e90ba79-43556005-georgerudy150600236.jpg',0,'attachment','image/jpeg',0),(101,1,'2019-08-29 16:59:14','2019-08-29 16:59:14','','','','inherit','open','closed','','101','','','2019-08-29 16:59:14','2019-08-29 16:59:14','',96,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/51c7c506-4f8fcc-pressmaster141000597.jpg',0,'attachment','image/jpeg',0),(102,1,'2019-08-29 16:59:15','2019-08-29 16:59:15','','','','inherit','open','closed','','102','','','2019-08-29 16:59:15','2019-08-29 16:59:15','',96,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/ad93b136-8e9c904c-gstockstudio150600485.jpg',0,'attachment','image/jpeg',0),(103,1,'2019-08-29 16:59:15','2019-08-29 16:59:15','','','','inherit','open','closed','','103','','','2019-08-29 16:59:15','2019-08-29 16:59:15','',96,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/4674c4aa-59f7fe34-gstockstudio150500009.jpg',0,'attachment','image/jpeg',0),(104,1,'2019-08-29 16:59:16','2019-08-29 16:59:16','','','','inherit','open','closed','','104','','','2019-08-29 16:59:16','2019-08-29 16:59:16','',96,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/b5e9919d-e9d9171c-gstockstudio150700502.jpg',0,'attachment','image/jpeg',0),(105,1,'2019-08-29 16:59:16','2019-08-29 16:59:16','','','','inherit','open','closed','','105','','','2019-08-29 16:59:16','2019-08-29 16:59:16','',96,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/9cbb82bc-34bee842-dolgachov150501462.jpg',0,'attachment','image/jpeg',0),(131,1,'2019-08-29 17:20:26','2019-08-29 17:20:26',' ','','','publish','closed','closed','','131','','','2019-08-29 17:57:46','2019-08-29 17:57:46','',18,'http://dev.buildingsystemsgroup.com/131/',3,'nav_menu_item','',0),(173,1,'2019-08-29 17:53:38','2019-08-29 17:53:38','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\">Commissioning Project List</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">Current and Completed Commissioning Projects</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-215 size-medium\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/0_512_1200_480_odu-2-1920x1280.jpg\" alt=\"\" width=\"1200\" height=\"480\" data-imhwpb-asset-id=\"780384\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Federal</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n211V Building V53 BRAC Renovations for SPAWAR - Naval Station Norfolk, VA (LEED®)\r\n<p class=\"\">800 - 1200 Meter Ranges - Ft. AP Hill, VA</p>\r\nAdministrative Facility for Naval Reserve Forces Command - Naval Station Norfolk, VA (LEED®)\r\n<p class=\"\">Advanced Individual Training Battalion Headquarters USMC - Ft. Lee, VA (LEED®)</p>\r\nAIT Dining Facility - Ft. Eustis, VA (LEED®)\r\n\r\nArmy Reserve Center - Suffolk, VA\r\n\r\nBayview Towers - Langley Air Force Base, VA\r\n\r\nBEQ 423 - Naval Air Station Oceana, VA\r\n\r\nBEQ 441 - 445 - Naval Air Station Oceana, VA\r\n\r\nBEQ Building 3601 Renovation - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nBoone Clinic HVAC Renovations - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nBuilding 002 Emergency Department Expansion - NMC Portsmouth, VA\r\n\r\nBuilding 108 - Renovate 2nd Floor HVAC System - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nBuilding 171 Special Project RM 12-0734 - Norfolk Naval Shipyard, VA\r\n\r\nBuilding 705 - Gallery Renovation - NWS Yorktown, VA\r\n\r\nBuilding 1816 Boiler Replacement - NWS Yorktown, VA\r\n\r\nBuilding 1816 HVAC Renovation - Phase 2 - NWS Yorktown, VA\r\n\r\nBuilding 2075 Repair Domestic and Heating Hot Water Systems - NWS Yorktown, VA\r\n\r\nBuilding 3505 School of Music Rehearsal Hall - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nBuilding CEP-162 CIAT Trainer Renovation - Naval Station Norfolk, VA\r\n\r\nBuilding CEP-162 WTI/WATS Trainer Renovation - Naval Station Norfolk, VA\r\n\r\nBuilding CEP-200 Renovate 2nd Floor - Naval Station Norfolk, VA\r\n\r\nBuilding M-22 Renovate First and Second Floors for SurfMEPP - Norfolk Naval Shipyard, VA\r\n\r\nBuilding Z-144 - Naval Station Norfolk, VA (LEED®)\r\n\r\nCAD 30 Install Exhaust Fans and Controls - NWS Yorktown, VA\r\n\r\nCAD 108 HVAC Renovations - NWS Yorktown, VA\r\n\r\nChesapeake CBOC Expansion Project - Chesapeake, VA\r\n\r\nChild Development Center - Portsmouth Naval Medical Center, VA (LEED®)\r\n\r\nComfort Station Cheatham Annex - NWS Yorktown, VA\r\n\r\nEnergy Investment Program (EIP) HVAC System Repair - Quantico, VA\r\n\r\nEnergy-ICS Retrocommissioning &amp; DDC Upgrade - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nExpansion/ Renovation Surgery Buildings 110 - 110A - 110B - Department of Veteran Affairs - Hampton, VA\r\n\r\nFY07 Dormitory - Langley Air Force Base, VA (LEED®)\r\n\r\nHangar 111 Fire Protection &amp; Structural Repairs - Naval Air Station Oceana, VA\r\n\r\nK-Ranges Phase II - Camp Lejeune, NC (LEED®)\r\n\r\nLangley Bowling Center - Langley Air Force Base, VA (LEED®)\r\n\r\nLogistics Support Facility P-164 &amp; Military Working Dog Facility P-826 - Naval Air Station Oceana - Dam Neck Annex, VA(LEED®)\r\n\r\nMarina - NAVMWR - Retail Store &amp; Piers - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nMulti-Purpose Gun Range and Engineer Training Complex - Camp Lejeune, NC\r\n\r\nMWR Youth Center - Naval Air Station Oceana, VA (LEED®)\r\n\r\nMWR Youth Center - NWS Yorktown, VA\r\n\r\nNASA Measurement Systems Laboratory - Hampton, VA (LEED®)\r\n\r\nNASA Research Building 1230 Renovation – Hampton, VA\r\n\r\nNaval Hospital Additions and Renovations - Camp Lejeune, NC (LEED®)\r\n\r\nNEX Mini Mart / Gas Station - Naval Station Norfolk, VA\r\n\r\nNEXCOM Headquarters Consolidation - Virginia Beach, VA (LEED®)\r\n\r\nNH-95 Energy Conservation Measures - Naval Station Norfolk, VA\r\n\r\nOffice Addition for Building SP-47 SP-48 - Naval Station Norfolk, VA\r\n\r\nOnslow Beach Marine Mart - Camp Lejeune, NC (LEED®)\r\n\r\nP-1063 Mount Enhancements - Camp Lejeune, NC (LEED®)\r\n\r\nP-157 Human Performance Center - Naval Air Station Oceana - Dam Neck Annex, VA\r\n\r\nP-166 QDR SOF Mobile Comm Facility - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nP-236 Fitness Center - Camp Lemonniwer - Djibouiti, Africa\r\n\r\nP-461 Small Arms Ranges - NWS Yorktown, VA\r\n\r\nP-473 Design Build Operations Facility - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-513 A School Barracks - Naval Air Station Oceana - Dam Neck Annex, VA (LEED®)\r\n\r\nP-518 MH60 AVET Training Facility - Virginia Beach, VA\r\n\r\nP-527 SOF Perimeter &amp; Main Entry Improvement - Naval Air Station Oceana - Dam Neck Annex, VA (LEED®)\r\n\r\nP-527 Submarine Maintenance Facility - Norfolk Naval Shipyard, VA (LEED®)\r\n\r\nP-674 Aircraft Component Facility - Naval Air Station Jacksonville, FL\r\n\r\nP-701 Fire Station - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-707 Helicopter Training Facility - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-762 UMM Antenna Mast Repair Maintenance Tower - Naval Station Norfolk, VA\r\n\r\nP-773 SOF Support Activity Operations Facility - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nP-828 Field Medical Services School - Camp Lejeune, NC (LEED®)\r\n\r\nP-838 E-2D Facilities Upgrade - Naval Station Norfolk, VA\r\n\r\nP-891 Small Arms Range - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nP-933 NEPMU 2 Replacement Facility - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-992 FAST Company Training - NWS Yorktown, VA\r\n\r\nParaloft Facility Addition, Bldg. 310 – Naval Air Station Oceana, VA (LEED®)\r\n\r\nPax River Bldg. 1370 - Patuxent, MD\r\n\r\nQ4 - BQ Renovations - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nRange Communications Facility - Cape Canaveral Air Force Station, FL\r\n\r\nRenovate Barracks KL - KM - KQ - Naval Station Norfolk, VA (LEED®)\r\n\r\nRenovate Building U-112 - Naval Station Norfolk, VA (LEED®)\r\n\r\nRenovate UH Building IB - Enterprise Hall - Naval Station Norfolk, VA\r\n\r\nRepair - Improve Telephone Exchange Building 1999 - Quantico, VA\r\n\r\nRepair Barracks Building 3001 - Ft. Lee, VA\r\n\r\nRepair NGIS Building A-125 - Naval Station Norfolk, VA\r\n\r\nRepair NGIS Building 241 - Naval Air Station Oceana - Dam Neck Annex, VA\r\n\r\nReplace Chillers &amp; Circulation Pumps Building 1236 NTF Facility - NASA Langley Research Center, VA\r\n\r\nReplace HVAC, Elec, Install Snow Guards Facility 1302 and 1308 - Langley AFB, VA\r\n\r\nReplace Paint Booth Environmental Controls Building 2134 - Quantico, VA\r\n\r\nReserve Training Center and Vehicle Maintenance Facility - Camp Lejeune, NC (LEED®)\r\n\r\nRM13-1361 HVAC and DDC Facility Optimization - Naval Station Norfolk, VA\r\n\r\nRM14-1272 Energy ICS and DDC Upgrades - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nSATCOM Complex / NEC - Fort Buckner and Torii Station - Okinawa, Japan\r\n\r\nSeal Delivery Vehicle Maintenance &amp; Engineering Facility - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nUSMC Collocated Training Facility C-11 - Ft. Lee, VA (LEED®)\r\n\r\nUSMC MCCS Marine Mart Convenience Store - Camp Lejeune, NC (LEED®)\r\n\r\nWounded Warrior - Battalion Headquarters - Camp Lejeune, NC\r\n<p class=\"\">Wounded Warrior - Hope and Care Center - Camp Lejeune, NC</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row gridblock\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">City - state</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">Adult Detention Facility Expansion - Newport News, VA</p>\r\nAlanton Elementary School - Virginia Beach, VA\r\n\r\nAnimal Services Facility - Chesapeake, VA (LEED®)\r\n\r\nBirdneck Elementary School - Virginia Beach, VA\r\n\r\nBirdneck Elementary School - Virginia Beach, VA\r\n\r\nButts Road Primary School - 2019 - Chesapeake, VA\r\n\r\nCamelot Elementary School - Chesapeake, VA\r\n\r\nCedar Road Elementary School - Chesapeake, VA\r\n\r\nCedar Road ES - Chesapeake, VA\r\n\r\nChesapeake Beach Fire &amp; EMS Station - Virginia Beach, VA (LEED®)\r\n\r\nChicod Elementary School - Greenville, NC\r\n\r\nChrysler Hall Complex Improvements – Norfolk, VA\r\n\r\nColeman Place Elementary School - Norfolk, VA\r\n\r\nCounty Administration Building - Accomack, VA\r\n\r\nCox High School - Virginia Beach, VA\r\n\r\nCrestwood Intermediate School – Chesapeake VA\r\n\r\nCrestwood Middle School – Chesapeake VA\r\n\r\nDeep Creek Central Elementary School - Chesapeake, VA\r\n\r\nDeep Creek Middle School - 2015 - Chesapeake, VA\r\n\r\nDiamond Springs Elementary School - Virginia Beach, VA\r\n\r\nGrassfield High School - Chesapeake, VA\r\n\r\nGrassfield Elementary School Classroom Addition - 2019 - Chesapeake, VA\r\n\r\nGreat Bridge Middle School - Chesapeake, VA\r\n\r\nGreat Bridge Primary School Replacement - 2019 - Chesapeake, VA\r\n\r\nGreat Neck Middle School - Virginia Beach, VA (LEED®)\r\n\r\nGreen Run High School - Virginia Beach, VA\r\n\r\nGreenbrier Primary School Classroom Addition - Chesapeake, VA\r\n\r\nHickory Elementary School - Chesapeake, VA\r\n\r\nHickory High School - 2015 - Chesapeake, VA\r\n\r\nHickory Middle School Addition - 2019 - Chesapeake, VA\r\n\r\nHickory Middle School HVAC Replacement - 2018 - Chesapeake, VA\r\n\r\nHousing Resource Center - Virginia Beach, VA (LEED®)\r\n\r\nHugo Owens Middle School HVAC Replacement - 2018- Chesapeake, VA\r\n\r\nIndian River Middle School - 2015 - Chesapeake, VA\r\n\r\nJohn B Dey Elementary School Modernization - Virginia Beach, VA\r\n\r\nKempsville Food Lab - Virginia Beach, VA\r\n\r\nKempsville Meadows Elementary School - Virginia Beach, VA\r\n\r\nKingston Elementary School - Virginia Beach, VA\r\n\r\nLarkspur Middle School - Virginia Beach, VA\r\n\r\nLynnhaven Elementary School - Virginia Beach, VA\r\n\r\nMoss-Nuckols Elementary School - Louisa County, VA\r\n\r\nNew Kent Middle School Computer Lab Modification – New Kent, VA\r\n\r\nNewport News Animal Shelter - Newport News, VA (LEED®)\r\n\r\nNewport News Animal Shelter - Newport News, VA (LEED®)\r\n\r\nOld Dominion University Basketball Practice Facility - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Dining Hall - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Hughes - Dragas Hall - Norfolk VA\r\n\r\nOld Dominion University L.R. Hill Sports Complex Addition - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University New Art Studio Building - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University New Arts Building - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University New Child Study Center - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Reconstruction of the Football Stadium Foreman Field - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Systems Research and Academic Building - Norfolk, VA (LEED®)\r\n\r\nOld Warrick County Courthouse - Newport News, VA\r\n\r\nOscar Smith High School - Chesapeake, VA\r\n\r\nOscar Smith High School Addition – 2018 - Chesapeake, VA\r\n\r\nOscar Smith Middle School - Chesapeake, VA\r\n\r\nPetersburg Multi-Modal Transit Center - Petersburg, VA\r\n\r\nPlaza Annex Office Building Addition - Virginia Beach, VA (LEED®)\r\n\r\nPrincess Anne Elementary School - Virginia Beach, VA\r\n\r\nPrincess Anne High School - Virginia Beach, VA\r\n\r\nPrincess Anne Middle School Cafeteria Unit Replacement - Virginia Beach, VA\r\n\r\nSocial Services Building - Accomack, VA\r\n\r\nSouth Greenville Recreation Center - Greenville, NC (LEED®)\r\n\r\nSoutheastern Elementary School – Chesapeake, VA\r\n\r\nSouthwestern Elementary School - Chesapeake, VA\r\n\r\nStonehouse Elementary School - Williamsburg, VA\r\n\r\nStrawbridge Elementary School - Virginia Beach, VA\r\n\r\nTallwood High School - Virginia Beach, VA\r\n\r\nThoroughgood Elementary School - Virginia Beach, VA\r\n\r\nTruitt Intermediate School - Chesapeake, VA\r\n\r\nVirginia Beach Housing Resource Center - Virginia Beach, VA (LEED®)\r\n\r\nVirginia Beach Parks &amp; Recreation Building - Virginia Beach, VA (LEED®)\r\n\r\nVirginia Aquarium Marine Animal Conservation Center - Virginia Beach, VA\r\n\r\nWestern Branch High School - Chesapeake, VA\r\n\r\nWestern Branch Intermediate School - 2016 - Chesapeake, VA\r\n\r\nWestern Branch Middle School - 2015 - Chesapeake, VA\r\n\r\nWestern Branch Primary School Classroom Addition - 2019 - Chesapeake, VA\r\n\r\nWestern Branch Primary School - 2017 - Chesapeake, VA\r\n<p class=\"\">Williams Farm Park Community Recreational Center - Virginia Beach, VA (LEED®)</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Private</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nAAA Customer Service Center - Suffolk, VA\r\n\r\nBusch Gardens Italy Restaurant and Restroom Renovation - Williamsburg, VA\r\n<p class=\"\">CDG Hampton NASCAR OTB - Hampton, VA</p>\r\n<p class=\"\">Chesapeake Safety Complex - Chesapeake, VA</p>\r\nEastern Shore Seafood Facility - Melfa, VA\r\n\r\nINIT US Headquarters - Virginia Beach, VA\r\n\r\nKaufman Pavilion HVAC Replacement – Sentara Norfolk General, VA\r\n\r\nLiberty Baptist Church - Hampton, VA\r\n\r\nNew City Hall – Virginia Beach, VA (LEED®)\r\n\r\nNewport News Redevelopment and Housing - Newport News, VA\r\n\r\nOperation Smile Global Headquarters - Virginia Beach, VA (LEED®)\r\n\r\nPatriots Colony Dining Addition and Renovations – Riverside Health System – Williamsburg, VA\r\n\r\nThe Salvation Army Ray and Joan Kroc Corps Community Center - Norfolk VA (LEED®)\r\n\r\nVirginia Sports Hall of Fame - Portsmouth, VA\r\n\r\nVirginia Wesleyan College - Virginia Beach, VA (LEED®)\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Project List','','publish','closed','closed','','project-list','','','2019-08-29 18:25:09','2019-08-29 18:25:09','',18,'http://dev.buildingsystemsgroup.com/?page_id=173',0,'page','',0),(215,1,'2019-08-29 17:44:48','2019-08-29 17:44:48','','odu-2-1920x1280','','inherit','open','closed','','odu-2-1920x1280','','','2019-08-29 17:44:48','2019-08-29 17:44:48','',173,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/odu-2-1920x1280.jpg',0,'attachment','image/jpeg',0),(181,1,'2019-08-29 17:22:03','2019-08-29 17:22:03','<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\" \"http://www.w3.org/TR/REC-html40/loose.dtd\">\n<html><body><div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h2>Capturing the Magic</h2>\r\n<h4>Curated Images You\'re Guaranteed to Love</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nMy clients are often awe-struck when they get a chance to see their proofs. Because digital photography makes it inexpensive to capture many pictures in a setting, I go through hundreds of photographs, picking only the ones that really capture the magic of the event and the client\'s personality.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n<p class=\"mod-img\"><img class=\"alignnone size-full wp-image-63\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJxTFRfUnEtMnRrLzEyMDB4NDgw-imhwpb-ntmiz347g2anmcc.jpg\" alt=\"\" width=\"1200\" height=\"480\" data-imhwpb-asset-id=\"780384\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-4 text-center\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/0fc679-9066586a-gstockstudio150700496.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"180\" class=\"wp-image-64\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-4 text-center\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/94588391-afa5c88c-vadymvdrobot150700272.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"180\" class=\"wp-image-65\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-4 text-center\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/e64e81a3-b99b28eb-katiemartynova150400014.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"180\" class=\"wp-image-66\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-4 text-center\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/64ed5a93-faf7b326-piksel150600102.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"180\" class=\"wp-image-67\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-4 text-center\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/5c7a133b-fe7e0227-dolgachov141000278.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"180\" class=\"wp-image-68\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-4 text-center\">\r\n<p class=\"mod-img\"><img src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/c97e1305-d9878181-gpointstudio150600489.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"16|square\" width=\"180\" class=\"wp-image-69\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<h2>How I Capture the Moment</h2>\r\n<h4>Keep the Client Comfortable</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nBecause I\'ve spent a great deal of time working on the arts scene, I\'ve had plenty of time to study how people react to someone in their comfort zone.\r\n\r\nTowards that end, I\'ve created a way of getting close without making the photo\'s subjects uncomfortable. If it takes a minute or an hour to capture the perfect magic of your special moment, I\'ll find a way in without breaking the mood.\r\n\r\n</div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n<h2>A Study of Subjects</h2>\r\n<h4>Therapeutic Solutions for Capturing You At Your Best</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nAs an art photographer, I\'ve learned how to approach a subject from a number of different possible angles, both physically and figuratively.\r\n\r\nUnlike big-box photography studios, I work with my subject to make them comfortable so that they\'re willing to reveal that special magic to me. Instead of snapping the first picture of a child smiling, I look for more.\r\n\r\nI\'ve used play therapy to help children open up for their pictures, letting them show their real personality in the photographs I capture.\r\n\r\nI spend time before the wedding getting to know my clients so that their love shows through in photos that they\'ll adore because it captures their spirit.\r\n\r\nFamily portraits don\'t have to be staged and staid! I\'m willing to travel to your favorite place and catch your family at play.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div></body></html>\n','Info','','inherit','closed','closed','','173-revision-v1','','','2019-08-29 17:22:03','2019-08-29 17:22:03','',173,'http://dev.buildingsystemsgroup.com/173-revision-v1/',0,'revision','',0),(174,1,'2019-08-29 17:22:00','2019-08-29 17:22:00','','','','inherit','open','closed','','174','','','2019-08-29 17:22:00','2019-08-29 17:22:00','',173,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJxTFRfUnEtMnRrLzEyMDB4NDgw-imhwpb-ntmiz347g2anmcc.jpg',0,'attachment','image/jpeg',0),(175,1,'2019-08-29 17:22:01','2019-08-29 17:22:01','','','','inherit','open','closed','','175','','','2019-08-29 17:22:01','2019-08-29 17:22:01','',173,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/0fc679-9066586a-gstockstudio150700496.jpg',0,'attachment','image/jpeg',0),(176,1,'2019-08-29 17:22:01','2019-08-29 17:22:01','','','','inherit','open','closed','','176','','','2019-08-29 17:22:01','2019-08-29 17:22:01','',173,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/94588391-afa5c88c-vadymvdrobot150700272.jpg',0,'attachment','image/jpeg',0),(177,1,'2019-08-29 17:22:02','2019-08-29 17:22:02','','','','inherit','open','closed','','177','','','2019-08-29 17:22:02','2019-08-29 17:22:02','',173,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/e64e81a3-b99b28eb-katiemartynova150400014.jpg',0,'attachment','image/jpeg',0),(178,1,'2019-08-29 17:22:02','2019-08-29 17:22:02','','','','inherit','open','closed','','178','','','2019-08-29 17:22:02','2019-08-29 17:22:02','',173,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/64ed5a93-faf7b326-piksel150600102.jpg',0,'attachment','image/jpeg',0),(179,1,'2019-08-29 17:22:03','2019-08-29 17:22:03','','','','inherit','open','closed','','179','','','2019-08-29 17:22:03','2019-08-29 17:22:03','',173,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/5c7a133b-fe7e0227-dolgachov141000278.jpg',0,'attachment','image/jpeg',0),(180,1,'2019-08-29 17:22:03','2019-08-29 17:22:03','','','','inherit','open','closed','','180','','','2019-08-29 17:22:03','2019-08-29 17:22:03','',173,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/c97e1305-d9878181-gpointstudio150600489.jpg',0,'attachment','image/jpeg',0),(216,1,'2019-08-29 17:50:20','2019-08-29 17:50:20','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\">Commissioning Project List</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">Current and Completed Commissioning Projects</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-215 size-medium\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/0_512_1200_480_odu-2-1920x1280.jpg\" alt=\"\" width=\"1200\" height=\"480\" data-imhwpb-asset-id=\"780384\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Federal</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n211V Building V53 BRAC Renovations for SPAWAR - Naval Station Norfolk, VA (LEED®)\r\n<p class=\"\">800 - 1200 Meter Ranges - Ft. AP Hill, VA</p>\r\nAdministrative Facility for Naval Reserve Forces Command - Naval Station Norfolk, VA (LEED®)\r\n<p class=\"\">Advanced Individual Training Battalion Headquarters USMC - Ft. Lee, VA (LEED®)</p>\r\nAIT Dining Facility - Ft. Eustis, VA (LEED®)\r\n\r\nArmy Reserve Center - Suffolk, VA\r\n\r\nBayview Towers - Langley Air Force Base, VA\r\n\r\nBEQ 423 - Naval Air Station Oceana, VA\r\n\r\nBEQ 441 - 445 - Naval Air Station Oceana, VA\r\n\r\nBEQ Building 3601 Renovation - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nBoone Clinic HVAC Renovations - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nBuilding 002 Emergency Department Expansion - NMC Portsmouth, VA\r\n\r\nBuilding 108 - Renovate 2nd Floor HVAC System - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nBuilding 171 Special Project RM 12-0734 - Norfolk Naval Shipyard, VA\r\n\r\nBuilding 705 - Gallery Renovation - NWS Yorktown, VA\r\n\r\nBuilding 1816 Boiler Replacement - NWS Yorktown, VA\r\n\r\nBuilding 1816 HVAC Renovation - Phase 2 - NWS Yorktown, VA\r\n\r\nBuilding 2075 Repair Domestic and Heating Hot Water Systems - NWS Yorktown, VA\r\n\r\nBuilding 3505 School of Music Rehearsal Hall - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nBuilding CEP-162 CIAT Trainer Renovation - Naval Station Norfolk, VA\r\n\r\nBuilding CEP-162 WTI/WATS Trainer Renovation - Naval Station Norfolk, VA\r\n\r\nBuilding CEP-200 Renovate 2nd Floor - Naval Station Norfolk, VA\r\n\r\nBuilding M-22 Renovate First and Second Floors for SurfMEPP - Norfolk Naval Shipyard, VA\r\n\r\nBuilding Z-144 - Naval Station Norfolk, VA (LEED®)\r\n\r\nCAD 30 Install Exhaust Fans and Controls - NWS Yorktown, VA\r\n\r\nCAD 108 HVAC Renovations - NWS Yorktown, VA\r\n\r\nChesapeake CBOC Expansion Project - Chesapeake, VA\r\n\r\nChild Development Center - Portsmouth Naval Medical Center, VA (LEED®)\r\n\r\nComfort Station Cheatham Annex - NWS Yorktown, VA\r\n\r\nEnergy Investment Program (EIP) HVAC System Repair - Quantico, VA\r\n\r\nEnergy-ICS Retrocommissioning &amp; DDC Upgrade - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nExpansion/ Renovation Surgery Buildings 110 - 110A - 110B - Department of Veteran Affairs - Hampton, VA\r\n\r\nFY07 Dormitory - Langley Air Force Base, VA (LEED®)\r\n\r\nHangar 111 Fire Protection &amp; Structural Repairs - Naval Air Station Oceana, VA\r\n\r\nK-Ranges Phase II - Camp Lejeune, NC (LEED®)\r\n\r\nLangley Bowling Center - Langley Air Force Base, VA (LEED®)\r\n\r\nLogistics Support Facility P-164 &amp; Military Working Dog Facility P-826 - Naval Air Station Oceana - Dam Neck Annex, VA(LEED®)\r\n\r\nMarina - NAVMWR - Retail Store &amp; Piers - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nMulti-Purpose Gun Range and Engineer Training Complex - Camp Lejeune, NC\r\n\r\nMWR Youth Center - Naval Air Station Oceana, VA (LEED®)\r\n\r\nMWR Youth Center - NWS Yorktown, VA\r\n\r\nNASA Measurement Systems Laboratory - Hampton, VA (LEED®)\r\n\r\nNASA Research Building 1230 Renovation – Hampton, VA\r\n\r\nNaval Hospital Additions and Renovations - Camp Lejeune, NC (LEED®)\r\n\r\nNEX Mini Mart / Gas Station - Naval Station Norfolk, VA\r\n\r\nNEXCOM Headquarters Consolidation - Virginia Beach, VA (LEED®)\r\n\r\nNH-95 Energy Conservation Measures - Naval Station Norfolk, VA\r\n\r\nOffice Addition for Building SP-47 SP-48 - Naval Station Norfolk, VA\r\n\r\nOnslow Beach Marine Mart - Camp Lejeune, NC (LEED®)\r\n\r\nP-1063 Mount Enhancements - Camp Lejeune, NC (LEED®)\r\n\r\nP-157 Human Performance Center - Naval Air Station Oceana - Dam Neck Annex, VA\r\n\r\nP-166 QDR SOF Mobile Comm Facility - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nP-236 Fitness Center - Camp Lemonniwer - Djibouiti, Africa\r\n\r\nP-461 Small Arms Ranges - NWS Yorktown, VA\r\n\r\nP-473 Design Build Operations Facility - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-513 A School Barracks - Naval Air Station Oceana - Dam Neck Annex, VA (LEED®)\r\n\r\nP-518 MH60 AVET Training Facility - Virginia Beach, VA\r\n\r\nP-527 SOF Perimeter &amp; Main Entry Improvement - Naval Air Station Oceana - Dam Neck Annex, VA (LEED®)\r\n\r\nP-527 Submarine Maintenance Facility - Norfolk Naval Shipyard, VA (LEED®)\r\n\r\nP-674 Aircraft Component Facility - Naval Air Station Jacksonville, FL\r\n\r\nP-701 Fire Station - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-707 Helicopter Training Facility - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-762 UMM Antenna Mast Repair Maintenance Tower - Naval Station Norfolk, VA\r\n\r\nP-773 SOF Support Activity Operations Facility - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nP-828 Field Medical Services School - Camp Lejeune, NC (LEED®)\r\n\r\nP-838 E-2D Facilities Upgrade - Naval Station Norfolk, VA\r\n\r\nP-891 Small Arms Range - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nP-933 NEPMU 2 Replacement Facility - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-992 FAST Company Training - NWS Yorktown, VA\r\n\r\nParaloft Facility Addition, Bldg. 310 – Naval Air Station Oceana, VA (LEED®)\r\n\r\nPax River Bldg. 1370 - Patuxent, MD\r\n\r\nQ4 - BQ Renovations - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nRange Communications Facility - Cape Canaveral Air Force Station, FL\r\n\r\nRenovate Barracks KL - KM - KQ - Naval Station Norfolk, VA (LEED®)\r\n\r\nRenovate Building U-112 - Naval Station Norfolk, VA (LEED®)\r\n\r\nRenovate UH Building IB - Enterprise Hall - Naval Station Norfolk, VA\r\n\r\nRepair - Improve Telephone Exchange Building 1999 - Quantico, VA\r\n\r\nRepair Barracks Building 3001 - Ft. Lee, VA\r\n\r\nRepair NGIS Building A-125 - Naval Station Norfolk, VA\r\n\r\nRepair NGIS Building 241 - Naval Air Station Oceana - Dam Neck Annex, VA\r\n\r\nReplace Chillers &amp; Circulation Pumps Building 1236 NTF Facility - NASA Langley Research Center, VA\r\n\r\nReplace HVAC, Elec, Install Snow Guards Facility 1302 and 1308 - Langley AFB, VA\r\n\r\nReplace Paint Booth Environmental Controls Building 2134 - Quantico, VA\r\n\r\nReserve Training Center and Vehicle Maintenance Facility - Camp Lejeune, NC (LEED®)\r\n\r\nRM13-1361 HVAC and DDC Facility Optimization - Naval Station Norfolk, VA\r\n\r\nRM14-1272 Energy ICS and DDC Upgrades - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nSATCOM Complex / NEC - Fort Buckner and Torii Station - Okinawa, Japan\r\n\r\nSeal Delivery Vehicle Maintenance &amp; Engineering Facility - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nUSMC Collocated Training Facility C-11 - Ft. Lee, VA (LEED®)\r\n\r\nUSMC MCCS Marine Mart Convenience Store - Camp Lejeune, NC (LEED®)\r\n\r\nWounded Warrior - Battalion Headquarters - Camp Lejeune, NC\r\n<p class=\"\">Wounded Warrior - Hope and Care Center - Camp Lejeune, NC</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row gridblock\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">City - state</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">Adult Detention Facility Expansion - Newport News, VA</p>\r\nAlanton Elementary School - Virginia Beach, VA\r\n\r\nAnimal Services Facility - Chesapeake, VA (LEED®)\r\n\r\nBirdneck Elementary School - Virginia Beach, VA\r\n\r\nBirdneck Elementary School - Virginia Beach, VA\r\n\r\nButts Road Primary School - 2019 - Chesapeake, VA\r\n\r\nCamelot Elementary School - Chesapeake, VA\r\n\r\nCedar Road Elementary School - Chesapeake, VA\r\n\r\nCedar Road ES - Chesapeake, VA\r\n\r\nChesapeake Beach Fire &amp; EMS Station - Virginia Beach, VA (LEED®)\r\n\r\nChicod Elementary School - Greenville, NC\r\n\r\nChrysler Hall Complex Improvements – Norfolk, VA\r\n\r\nColeman Place Elementary School - Norfolk, VA\r\n\r\nCounty Administration Building - Accomack, VA\r\n\r\nCox High School - Virginia Beach, VA\r\n\r\nCrestwood Intermediate School – Chesapeake VA\r\n\r\nCrestwood Middle School – Chesapeake VA\r\n\r\nDeep Creek Central Elementary School - Chesapeake, VA\r\n\r\nDeep Creek Middle School - 2015 - Chesapeake, VA\r\n\r\nDiamond Springs Elementary School - Virginia Beach, VA\r\n\r\nGrassfield High School - Chesapeake, VA\r\n\r\nGrassfield Elementary School Classroom Addition - 2019 - Chesapeake, VA\r\n\r\nGreat Bridge Middle School - Chesapeake, VA\r\n\r\nGreat Bridge Primary School Replacement - 2019 - Chesapeake, VA\r\n\r\nGreat Neck Middle School - Virginia Beach, VA (LEED®)\r\n\r\nGreen Run High School - Virginia Beach, VA\r\n\r\nGreenbrier Primary School Classroom Addition - Chesapeake, VA\r\n\r\nHickory Elementary School - Chesapeake, VA\r\n\r\nHickory High School - 2015 - Chesapeake, VA\r\n\r\nHickory Middle School Addition - 2019 - Chesapeake, VA\r\n\r\nHickory Middle School HVAC Replacement - 2018 - Chesapeake, VA\r\n\r\nHousing Resource Center - Virginia Beach, VA (LEED®)\r\n\r\nHugo Owens Middle School HVAC Replacement - 2018- Chesapeake, VA\r\n\r\nIndian River Middle School - 2015 - Chesapeake, VA\r\n\r\nJohn B Dey Elementary School Modernization - Virginia Beach, VA\r\n\r\nKempsville Food Lab - Virginia Beach, VA\r\n\r\nKempsville Meadows Elementary School - Virginia Beach, VA\r\n\r\nKingston Elementary School - Virginia Beach, VA\r\n\r\nLarkspur Middle School - Virginia Beach, VA\r\n\r\nLynnhaven Elementary School - Virginia Beach, VA\r\n\r\nMoss-Nuckols Elementary School - Louisa County, VA\r\n\r\nNew Kent Middle School Computer Lab Modification – New Kent, VA\r\n\r\nNewport News Animal Shelter - Newport News, VA (LEED®)\r\n\r\nNewport News Animal Shelter - Newport News, VA (LEED®)\r\n\r\nOld Dominion University Basketball Practice Facility - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Dining Hall - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Hughes - Dragas Hall - Norfolk VA\r\n\r\nOld Dominion University L.R. Hill Sports Complex Addition - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University New Art Studio Building - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University New Arts Building - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University New Child Study Center - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Reconstruction of the Football Stadium Foreman Field - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Systems Research and Academic Building - Norfolk, VA (LEED®)\r\n\r\nOld Warrick County Courthouse - Newport News, VA\r\n\r\nOscar Smith High School - Chesapeake, VA\r\n\r\nOscar Smith High School Addition – 2018 - Chesapeake, VA\r\n\r\nOscar Smith Middle School - Chesapeake, VA\r\n\r\nPetersburg Multi-Modal Transit Center - Petersburg, VA\r\n\r\nPlaza Annex Office Building Addition - Virginia Beach, VA (LEED®)\r\n\r\nPrincess Anne Elementary School - Virginia Beach, VA\r\n\r\nPrincess Anne High School - Virginia Beach, VA\r\n\r\nPrincess Anne Middle School Cafeteria Unit Replacement - Virginia Beach, VA\r\n\r\nSocial Services Building - Accomack, VA\r\n\r\nSouth Greenville Recreation Center - Greenville, NC (LEED®)\r\n\r\nSoutheastern Elementary School – Chesapeake, VA\r\n\r\nSouthwestern Elementary School - Chesapeake, VA\r\n\r\nStonehouse Elementary School - Williamsburg, VA\r\n\r\nStrawbridge Elementary School - Virginia Beach, VA\r\n\r\nTallwood High School - Virginia Beach, VA\r\n\r\nThoroughgood Elementary School - Virginia Beach, VA\r\n\r\nTruitt Intermediate School - Chesapeake, VA\r\n\r\nVirginia Beach Housing Resource Center - Virginia Beach, VA (LEED®)\r\n\r\nVirginia Beach Parks &amp; Recreation Building - Virginia Beach, VA (LEED®)\r\n\r\nVirginia Aquarium Marine Animal Conservation Center - Virginia Beach, VA\r\n\r\nWestern Branch High School - Chesapeake, VA\r\n\r\nWestern Branch Intermediate School - 2016 - Chesapeake, VA\r\n\r\nWestern Branch Middle School - 2015 - Chesapeake, VA\r\n\r\nWestern Branch Primary School Classroom Addition - 2019 - Chesapeake, VA\r\n\r\nWestern Branch Primary School - 2017 - Chesapeake, VA\r\n<p class=\"\">Williams Farm Park Community Recreational Center - Virginia Beach, VA (LEED®)</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Private</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nAAA Customer Service Center - Suffolk, VA\r\n\r\nBusch Gardens Italy Restaurant and Restroom Renovation - Williamsburg, VA\r\n<p class=\"\">CDG Hampton NASCAR OTB - Hampton, VA</p>\r\n<p class=\"\">Chesapeake Safety Complex - Chesapeake, VA</p>\r\nEastern Shore Seafood Facility - Melfa, VA\r\n\r\nINIT US Headquarters - Virginia Beach, VA\r\n\r\nKaufman Pavilion HVAC Replacement – Sentara Norfolk General, VA\r\n\r\nLiberty Baptist Church - Hampton, VA\r\n\r\nNew City Hall – Virginia Beach, VA (LEED®)\r\n\r\nNewport News Redevelopment and Housing - Newport News, VA\r\n\r\nOperation Smile Global Headquarters - Virginia Beach, VA (LEED®)\r\n\r\nPatriots Colony Dining Addition and Renovations – Riverside Health System – Williamsburg, VA\r\n\r\nThe Salvation Army Ray and Joan Kroc Corps Community Center - Norfolk VA (LEED®)\r\n\r\nVirginia Sports Hall of Fame - Portsmouth, VA\r\n\r\nVirginia Wesleyan College - Virginia Beach, VA (LEED®)\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Commissioning Project List','','inherit','closed','closed','','173-revision-v1','','','2019-08-29 17:50:20','2019-08-29 17:50:20','',173,'http://dev.buildingsystemsgroup.com/173-revision-v1/',0,'revision','',0),(217,1,'2019-08-29 17:53:38','2019-08-29 17:53:38',' ','','','publish','closed','closed','','217','','','2019-08-29 17:57:46','2019-08-29 17:57:46','',18,'http://dev.buildingsystemsgroup.com/217/',4,'nav_menu_item','',0),(317,1,'2019-08-29 17:55:59','2019-08-29 17:55:59','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\">Commissioning Project List</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div>\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">Current and Completed Commissioning Projects</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-215 size-medium\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/0_512_1200_480_odu-2-1920x1280.jpg\" alt=\"\" width=\"1200\" height=\"480\" data-imhwpb-asset-id=\"780384\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Federal</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n211V Building V53 BRAC Renovations for SPAWAR - Naval Station Norfolk, VA (LEED®)\r\n<p class=\"\">800 - 1200 Meter Ranges - Ft. AP Hill, VA</p>\r\nAdministrative Facility for Naval Reserve Forces Command - Naval Station Norfolk, VA (LEED®)\r\n<p class=\"\">Advanced Individual Training Battalion Headquarters USMC - Ft. Lee, VA (LEED®)</p>\r\nAIT Dining Facility - Ft. Eustis, VA (LEED®)\r\n\r\nArmy Reserve Center - Suffolk, VA\r\n\r\nBayview Towers - Langley Air Force Base, VA\r\n\r\nBEQ 423 - Naval Air Station Oceana, VA\r\n\r\nBEQ 441 - 445 - Naval Air Station Oceana, VA\r\n\r\nBEQ Building 3601 Renovation - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nBoone Clinic HVAC Renovations - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nBuilding 002 Emergency Department Expansion - NMC Portsmouth, VA\r\n\r\nBuilding 108 - Renovate 2nd Floor HVAC System - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nBuilding 171 Special Project RM 12-0734 - Norfolk Naval Shipyard, VA\r\n\r\nBuilding 705 - Gallery Renovation - NWS Yorktown, VA\r\n\r\nBuilding 1816 Boiler Replacement - NWS Yorktown, VA\r\n\r\nBuilding 1816 HVAC Renovation - Phase 2 - NWS Yorktown, VA\r\n\r\nBuilding 2075 Repair Domestic and Heating Hot Water Systems - NWS Yorktown, VA\r\n\r\nBuilding 3505 School of Music Rehearsal Hall - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nBuilding CEP-162 CIAT Trainer Renovation - Naval Station Norfolk, VA\r\n\r\nBuilding CEP-162 WTI/WATS Trainer Renovation - Naval Station Norfolk, VA\r\n\r\nBuilding CEP-200 Renovate 2nd Floor - Naval Station Norfolk, VA\r\n\r\nBuilding M-22 Renovate First and Second Floors for SurfMEPP - Norfolk Naval Shipyard, VA\r\n\r\nBuilding Z-144 - Naval Station Norfolk, VA (LEED®)\r\n\r\nCAD 30 Install Exhaust Fans and Controls - NWS Yorktown, VA\r\n\r\nCAD 108 HVAC Renovations - NWS Yorktown, VA\r\n\r\nChesapeake CBOC Expansion Project - Chesapeake, VA\r\n\r\nChild Development Center - Portsmouth Naval Medical Center, VA (LEED®)\r\n\r\nComfort Station Cheatham Annex - NWS Yorktown, VA\r\n\r\nEnergy Investment Program (EIP) HVAC System Repair - Quantico, VA\r\n\r\nEnergy-ICS Retrocommissioning &amp; DDC Upgrade - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nExpansion/ Renovation Surgery Buildings 110 - 110A - 110B - Department of Veteran Affairs - Hampton, VA\r\n\r\nFY07 Dormitory - Langley Air Force Base, VA (LEED®)\r\n\r\nHangar 111 Fire Protection &amp; Structural Repairs - Naval Air Station Oceana, VA\r\n\r\nK-Ranges Phase II - Camp Lejeune, NC (LEED®)\r\n\r\nLangley Bowling Center - Langley Air Force Base, VA (LEED®)\r\n\r\nLogistics Support Facility P-164 &amp; Military Working Dog Facility P-826 - Naval Air Station Oceana - Dam Neck Annex, VA(LEED®)\r\n\r\nMarina - NAVMWR - Retail Store &amp; Piers - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nMulti-Purpose Gun Range and Engineer Training Complex - Camp Lejeune, NC\r\n\r\nMWR Youth Center - Naval Air Station Oceana, VA (LEED®)\r\n\r\nMWR Youth Center - NWS Yorktown, VA\r\n\r\nNASA Measurement Systems Laboratory - Hampton, VA (LEED®)\r\n\r\nNASA Research Building 1230 Renovation – Hampton, VA\r\n\r\nNaval Hospital Additions and Renovations - Camp Lejeune, NC (LEED®)\r\n\r\nNEX Mini Mart / Gas Station - Naval Station Norfolk, VA\r\n\r\nNEXCOM Headquarters Consolidation - Virginia Beach, VA (LEED®)\r\n\r\nNH-95 Energy Conservation Measures - Naval Station Norfolk, VA\r\n\r\nOffice Addition for Building SP-47 SP-48 - Naval Station Norfolk, VA\r\n\r\nOnslow Beach Marine Mart - Camp Lejeune, NC (LEED®)\r\n\r\nP-1063 Mount Enhancements - Camp Lejeune, NC (LEED®)\r\n\r\nP-157 Human Performance Center - Naval Air Station Oceana - Dam Neck Annex, VA\r\n\r\nP-166 QDR SOF Mobile Comm Facility - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nP-236 Fitness Center - Camp Lemonniwer - Djibouiti, Africa\r\n\r\nP-461 Small Arms Ranges - NWS Yorktown, VA\r\n\r\nP-473 Design Build Operations Facility - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-513 A School Barracks - Naval Air Station Oceana - Dam Neck Annex, VA (LEED®)\r\n\r\nP-518 MH60 AVET Training Facility - Virginia Beach, VA\r\n\r\nP-527 SOF Perimeter &amp; Main Entry Improvement - Naval Air Station Oceana - Dam Neck Annex, VA (LEED®)\r\n\r\nP-527 Submarine Maintenance Facility - Norfolk Naval Shipyard, VA (LEED®)\r\n\r\nP-674 Aircraft Component Facility - Naval Air Station Jacksonville, FL\r\n\r\nP-701 Fire Station - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-707 Helicopter Training Facility - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-762 UMM Antenna Mast Repair Maintenance Tower - Naval Station Norfolk, VA\r\n\r\nP-773 SOF Support Activity Operations Facility - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nP-828 Field Medical Services School - Camp Lejeune, NC (LEED®)\r\n\r\nP-838 E-2D Facilities Upgrade - Naval Station Norfolk, VA\r\n\r\nP-891 Small Arms Range - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nP-933 NEPMU 2 Replacement Facility - Naval Station Norfolk, VA (LEED®)\r\n\r\nP-992 FAST Company Training - NWS Yorktown, VA\r\n\r\nParaloft Facility Addition, Bldg. 310 – Naval Air Station Oceana, VA (LEED®)\r\n\r\nPax River Bldg. 1370 - Patuxent, MD\r\n\r\nQ4 - BQ Renovations - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nRange Communications Facility - Cape Canaveral Air Force Station, FL\r\n\r\nRenovate Barracks KL - KM - KQ - Naval Station Norfolk, VA (LEED®)\r\n\r\nRenovate Building U-112 - Naval Station Norfolk, VA (LEED®)\r\n\r\nRenovate UH Building IB - Enterprise Hall - Naval Station Norfolk, VA\r\n\r\nRepair - Improve Telephone Exchange Building 1999 - Quantico, VA\r\n\r\nRepair Barracks Building 3001 - Ft. Lee, VA\r\n\r\nRepair NGIS Building A-125 - Naval Station Norfolk, VA\r\n\r\nRepair NGIS Building 241 - Naval Air Station Oceana - Dam Neck Annex, VA\r\n\r\nReplace Chillers &amp; Circulation Pumps Building 1236 NTF Facility - NASA Langley Research Center, VA\r\n\r\nReplace HVAC, Elec, Install Snow Guards Facility 1302 and 1308 - Langley AFB, VA\r\n\r\nReplace Paint Booth Environmental Controls Building 2134 - Quantico, VA\r\n\r\nReserve Training Center and Vehicle Maintenance Facility - Camp Lejeune, NC (LEED®)\r\n\r\nRM13-1361 HVAC and DDC Facility Optimization - Naval Station Norfolk, VA\r\n\r\nRM14-1272 Energy ICS and DDC Upgrades - Joint Expeditionary Base Little Creek-Fort Story, VA\r\n\r\nSATCOM Complex / NEC - Fort Buckner and Torii Station - Okinawa, Japan\r\n\r\nSeal Delivery Vehicle Maintenance &amp; Engineering Facility - Joint Expeditionary Base Little Creek-Fort Story, VA (LEED®)\r\n\r\nUSMC Collocated Training Facility C-11 - Ft. Lee, VA (LEED®)\r\n\r\nUSMC MCCS Marine Mart Convenience Store - Camp Lejeune, NC (LEED®)\r\n\r\nWounded Warrior - Battalion Headquarters - Camp Lejeune, NC\r\n<p class=\"\">Wounded Warrior - Hope and Care Center - Camp Lejeune, NC</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row gridblock\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">City - state</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">Adult Detention Facility Expansion - Newport News, VA</p>\r\nAlanton Elementary School - Virginia Beach, VA\r\n\r\nAnimal Services Facility - Chesapeake, VA (LEED®)\r\n\r\nBirdneck Elementary School - Virginia Beach, VA\r\n\r\nBirdneck Elementary School - Virginia Beach, VA\r\n\r\nButts Road Primary School - 2019 - Chesapeake, VA\r\n\r\nCamelot Elementary School - Chesapeake, VA\r\n\r\nCedar Road Elementary School - Chesapeake, VA\r\n\r\nCedar Road ES - Chesapeake, VA\r\n\r\nChesapeake Beach Fire &amp; EMS Station - Virginia Beach, VA (LEED®)\r\n\r\nChicod Elementary School - Greenville, NC\r\n\r\nChrysler Hall Complex Improvements – Norfolk, VA\r\n\r\nColeman Place Elementary School - Norfolk, VA\r\n\r\nCounty Administration Building - Accomack, VA\r\n\r\nCox High School - Virginia Beach, VA\r\n\r\nCrestwood Intermediate School – Chesapeake VA\r\n\r\nCrestwood Middle School – Chesapeake VA\r\n\r\nDeep Creek Central Elementary School - Chesapeake, VA\r\n\r\nDeep Creek Middle School - 2015 - Chesapeake, VA\r\n\r\nDiamond Springs Elementary School - Virginia Beach, VA\r\n\r\nGrassfield High School - Chesapeake, VA\r\n\r\nGrassfield Elementary School Classroom Addition - 2019 - Chesapeake, VA\r\n\r\nGreat Bridge Middle School - Chesapeake, VA\r\n\r\nGreat Bridge Primary School Replacement - 2019 - Chesapeake, VA\r\n\r\nGreat Neck Middle School - Virginia Beach, VA (LEED®)\r\n\r\nGreen Run High School - Virginia Beach, VA\r\n\r\nGreenbrier Primary School Classroom Addition - Chesapeake, VA\r\n\r\nHickory Elementary School - Chesapeake, VA\r\n\r\nHickory High School - 2015 - Chesapeake, VA\r\n\r\nHickory Middle School Addition - 2019 - Chesapeake, VA\r\n\r\nHickory Middle School HVAC Replacement - 2018 - Chesapeake, VA\r\n\r\nHousing Resource Center - Virginia Beach, VA (LEED®)\r\n\r\nHugo Owens Middle School HVAC Replacement - 2018- Chesapeake, VA\r\n\r\nIndian River Middle School - 2015 - Chesapeake, VA\r\n\r\nJohn B Dey Elementary School Modernization - Virginia Beach, VA\r\n\r\nKempsville Food Lab - Virginia Beach, VA\r\n\r\nKempsville Meadows Elementary School - Virginia Beach, VA\r\n\r\nKingston Elementary School - Virginia Beach, VA\r\n\r\nLarkspur Middle School - Virginia Beach, VA\r\n\r\nLynnhaven Elementary School - Virginia Beach, VA\r\n\r\nMoss-Nuckols Elementary School - Louisa County, VA\r\n\r\nNew Kent Middle School Computer Lab Modification – New Kent, VA\r\n\r\nNewport News Animal Shelter - Newport News, VA (LEED®)\r\n\r\nNewport News Animal Shelter - Newport News, VA (LEED®)\r\n\r\nOld Dominion University Basketball Practice Facility - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Dining Hall - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Hughes - Dragas Hall - Norfolk VA\r\n\r\nOld Dominion University L.R. Hill Sports Complex Addition - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University New Art Studio Building - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University New Arts Building - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University New Child Study Center - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Reconstruction of the Football Stadium Foreman Field - Norfolk, VA (LEED®)\r\n\r\nOld Dominion University Systems Research and Academic Building - Norfolk, VA (LEED®)\r\n\r\nOld Warrick County Courthouse - Newport News, VA\r\n\r\nOscar Smith High School - Chesapeake, VA\r\n\r\nOscar Smith High School Addition – 2018 - Chesapeake, VA\r\n\r\nOscar Smith Middle School - Chesapeake, VA\r\n\r\nPetersburg Multi-Modal Transit Center - Petersburg, VA\r\n\r\nPlaza Annex Office Building Addition - Virginia Beach, VA (LEED®)\r\n\r\nPrincess Anne Elementary School - Virginia Beach, VA\r\n\r\nPrincess Anne High School - Virginia Beach, VA\r\n\r\nPrincess Anne Middle School Cafeteria Unit Replacement - Virginia Beach, VA\r\n\r\nSocial Services Building - Accomack, VA\r\n\r\nSouth Greenville Recreation Center - Greenville, NC (LEED®)\r\n\r\nSoutheastern Elementary School – Chesapeake, VA\r\n\r\nSouthwestern Elementary School - Chesapeake, VA\r\n\r\nStonehouse Elementary School - Williamsburg, VA\r\n\r\nStrawbridge Elementary School - Virginia Beach, VA\r\n\r\nTallwood High School - Virginia Beach, VA\r\n\r\nThoroughgood Elementary School - Virginia Beach, VA\r\n\r\nTruitt Intermediate School - Chesapeake, VA\r\n\r\nVirginia Beach Housing Resource Center - Virginia Beach, VA (LEED®)\r\n\r\nVirginia Beach Parks &amp; Recreation Building - Virginia Beach, VA (LEED®)\r\n\r\nVirginia Aquarium Marine Animal Conservation Center - Virginia Beach, VA\r\n\r\nWestern Branch High School - Chesapeake, VA\r\n\r\nWestern Branch Intermediate School - 2016 - Chesapeake, VA\r\n\r\nWestern Branch Middle School - 2015 - Chesapeake, VA\r\n\r\nWestern Branch Primary School Classroom Addition - 2019 - Chesapeake, VA\r\n\r\nWestern Branch Primary School - 2017 - Chesapeake, VA\r\n<p class=\"\">Williams Farm Park Community Recreational Center - Virginia Beach, VA (LEED®)</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Private</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nAAA Customer Service Center - Suffolk, VA\r\n\r\nBusch Gardens Italy Restaurant and Restroom Renovation - Williamsburg, VA\r\n<p class=\"\">CDG Hampton NASCAR OTB - Hampton, VA</p>\r\n<p class=\"\">Chesapeake Safety Complex - Chesapeake, VA</p>\r\nEastern Shore Seafood Facility - Melfa, VA\r\n\r\nINIT US Headquarters - Virginia Beach, VA\r\n\r\nKaufman Pavilion HVAC Replacement – Sentara Norfolk General, VA\r\n\r\nLiberty Baptist Church - Hampton, VA\r\n\r\nNew City Hall – Virginia Beach, VA (LEED®)\r\n\r\nNewport News Redevelopment and Housing - Newport News, VA\r\n\r\nOperation Smile Global Headquarters - Virginia Beach, VA (LEED®)\r\n\r\nPatriots Colony Dining Addition and Renovations – Riverside Health System – Williamsburg, VA\r\n\r\nThe Salvation Army Ray and Joan Kroc Corps Community Center - Norfolk VA (LEED®)\r\n\r\nVirginia Sports Hall of Fame - Portsmouth, VA\r\n\r\nVirginia Wesleyan College - Virginia Beach, VA (LEED®)\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>','Project List','','inherit','closed','closed','','173-revision-v1','','','2019-08-29 17:55:59','2019-08-29 17:55:59','',173,'http://dev.buildingsystemsgroup.com/173-revision-v1/',0,'revision','',0),(1202,1,'2019-08-29 18:33:40','0000-00-00 00:00:00','{\n    \"sidebars_widgets[boldgrid-widget-2]\": {\n        \"value\": [],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:28:44\"\n    },\n    \"widget_media_image[3]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToxNTp7czo0OiJzaXplIjtzOjQ6ImZ1bGwiO3M6NToid2lkdGgiO2k6MjIyO3M6NjoiaGVpZ2h0IjtpOjIzMjtzOjc6ImNhcHRpb24iO3M6MDoiIjtzOjM6ImFsdCI7czowOiIiO3M6OToibGlua190eXBlIjtzOjY6ImN1c3RvbSI7czo4OiJsaW5rX3VybCI7czowOiIiO3M6MTM6ImltYWdlX2NsYXNzZXMiO3M6MDoiIjtzOjEyOiJsaW5rX2NsYXNzZXMiO3M6MDoiIjtzOjg6ImxpbmtfcmVsIjtzOjA6IiI7czoxNzoibGlua190YXJnZXRfYmxhbmsiO2I6MDtzOjExOiJpbWFnZV90aXRsZSI7czowOiIiO3M6MTM6ImF0dGFjaG1lbnRfaWQiO2k6NTg7czozOiJ1cmwiO3M6NzU6Imh0dHA6Ly9kZXYuYnVpbGRpbmdzeXN0ZW1zZ3JvdXAuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE5LzA4L0JTRy1Mb2dvLnBuZyI7czo1OiJ0aXRsZSI7czowOiIiO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"0aa7f4b0a53dee894e7e7f1481225c55\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:27:43\"\n    },\n    \"widget_black-studio-tinymce[0]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo1OntzOjU6InRpdGxlIjtzOjE0OiJDYWxsIFRvIEFjdGlvbiI7czo0OiJ0ZXh0IjtzOjkwNToiPGRpdiBjbGFzcz0iY29udGFpbmVyIj4NCjxkaXYgY2xhc3M9InJvdyIgc3R5bGU9InRleHQtYWxpZ246IHJpZ2h0OyI+DQo8ZGl2IGNsYXNzPSJjb2wtbWQtNiI+DQo8ZGl2IGNsYXNzPSJjYWxsLXRvLWFjdGlvbiI+DQo8aDIgc3R5bGU9InRleHQtYWxpZ246IGxlZnQ7Ij5XSEFUIFNFVFMgVVMgQVBBUlQ8L2gyPg0KPHAgc3R5bGU9InRleHQtYWxpZ246IGxlZnQ7Ij5CU0cgaXMgYSBBQ0cgY2VydGlmaWVkIGZpcm0gc3BlY2lhbGl6aW5nIGluIGluZGVwZW5kZW50IGJ1aWxkaW5nIGNvbW1pc3Npb25pbmcgZm9yIG5ldyBidWlsZGluZyBjb25zdHJ1Y3Rpb24sIHJlbm92YXRpb24sIHJldHJvLWNvbW1pc3Npb25pbmcgKENvbW1pc3Npb25pbmcgb2YgZXhpc3RpbmcgYnVpbGRpbmdzKSBhbmQgaW52ZXN0aWdhdGlvbiBvZiBleGlzdGluZyBidWlsZGluZyBlcXVpcG1lbnQvc3lzdGVtcyBvcGVyYXRpb25hbCBpc3N1ZXMuIEJ1aWxkaW5nIFN5c3RlbXMgR3JvdXAgaXMgY29tcHJpc2VkIG9mIGV4cGVyaWVuY2VkIGVuZ2luZWVyaW5nIHByb2Zlc3Npb25hbHMgYW5kIGZpZWxkIHRlY2huaWNpYW5zLiBCU0cgaGFzIGEgcG9zaXRpdmUgcmVwdXRhdGlvbiBpbiBidWlsZGluZyBjb21taXNzaW9uaW5nLCBlcXVpcG1lbnQvc3lzdGVtcyB0cm91Ymxlc2hvb3RpbmcsIGVuZXJneSBlZmZpY2llbnQgb3BlcmF0aW9uIHN1cnZleXMsIGFuZCBJQVEgaXNzdWVzLiBPdXIgYXBwcm9hY2ggdG8gY29tbWlzc2lvbmluZyBpcyBoYW5kcy1vbiB2ZXJpZmljYXRpb24gaW4gdGhlIGZpZWxkIHRvIGVuc3VyZSB5b3VyIGJ1aWxkaW5nIHByb2plY3QgaXMgY29tcGxldGVkIGFuZCBvcGVyYXRpbmcgYXMgaXQgd2FzIG9yaWdpbmFsbHkgZGVzaWduZWQuPC9wPg0KDQo8L2Rpdj4NCjwvZGl2Pg0KPC9kaXY+DQo8L2Rpdj4iO3M6NDoidHlwZSI7czo2OiJ2aXN1YWwiO3M6NjoiZmlsdGVyIjtzOjE6IjEiO3M6NToibGFiZWwiO3M6MjA6ImJsYWNrLXN0dWRpby10aW55bWNlIjt9\",\n            \"title\": \"Call To Action\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"106477270e58efea21ab7c8c21d901f1\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:33:40\"\n    },\n    \"sidebars_widgets[boldgrid-widget-1]\": {\n        \"value\": [\n            \"black-studio-tinymce-0\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:30:47\"\n    },\n    \"boldgrid-vacation::background_image\": {\n        \"value\": \"\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:33:40\"\n    },\n    \"widget_media_image[4]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToxNTp7czo0OiJzaXplIjtzOjQ6ImZ1bGwiO3M6NToid2lkdGgiO2k6MjIyO3M6NjoiaGVpZ2h0IjtpOjIzMjtzOjc6ImNhcHRpb24iO3M6MDoiIjtzOjM6ImFsdCI7czowOiIiO3M6OToibGlua190eXBlIjtzOjY6ImN1c3RvbSI7czo4OiJsaW5rX3VybCI7czowOiIiO3M6MTM6ImltYWdlX2NsYXNzZXMiO3M6MDoiIjtzOjEyOiJsaW5rX2NsYXNzZXMiO3M6MDoiIjtzOjg6ImxpbmtfcmVsIjtzOjA6IiI7czoxNzoibGlua190YXJnZXRfYmxhbmsiO2I6MDtzOjExOiJpbWFnZV90aXRsZSI7czowOiIiO3M6MTM6ImF0dGFjaG1lbnRfaWQiO2k6NTg7czozOiJ1cmwiO3M6NzU6Imh0dHA6Ly9kZXYuYnVpbGRpbmdzeXN0ZW1zZ3JvdXAuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE5LzA4L0JTRy1Mb2dvLnBuZyI7czo1OiJ0aXRsZSI7czowOiIiO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"0aa7f4b0a53dee894e7e7f1481225c55\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:30:47\"\n    },\n    \"boldgrid-vacation::background_attachment\": {\n        \"value\": \"fixed\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:31:40\"\n    }\n}','','','auto-draft','closed','closed','','b61472d8-b86b-4c08-a550-6dfaedd845e0','','','2019-08-29 18:33:40','2019-08-29 18:33:40','',0,'http://dev.buildingsystemsgroup.com/?p=1202',0,'customize_changeset','',0),(1203,1,'2019-08-29 18:31:08','2019-08-29 18:31:08','http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cropped-WILLIAMSFARM-44FINAL.jpg','cropped-WILLIAMSFARM-44FINAL.jpg','','inherit','open','closed','','cropped-williamsfarm-44final-jpg','','','2019-08-29 18:31:08','2019-08-29 18:31:08','',0,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cropped-WILLIAMSFARM-44FINAL.jpg',0,'attachment','image/jpeg',0),(1253,1,'2019-08-29 18:45:34','2019-08-29 18:45:34','{\n    \"widget_black-studio-tinymce[0]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo1OntzOjU6InRpdGxlIjtzOjE0OiJDYWxsIFRvIEFjdGlvbiI7czo0OiJ0ZXh0IjtzOjEwMjY6IjxkaXYgY2xhc3M9ImNvbnRhaW5lciI+DQo8ZGl2IGNsYXNzPSJyb3ciPg0KPGRpdiBjbGFzcz0iY29sLW1kLTYiPjwvZGl2Pg0KPGRpdiBjbGFzcz0iY29sLW1kLTYiPg0KPGRpdiBjbGFzcz0iY2FsbC10by1hY3Rpb24iPg0KPGgyIHN0eWxlPSJ0ZXh0LWFsaWduOiBjZW50ZXI7Ij5XSG8gd2UgYXJlPC9oMj4NCjxpbWcgY2xhc3M9InNpemUtZnVsbCB3cC1pbWFnZS01OCBhbGlnbmxlZnQiIHNyYz0iaHR0cDovL2Rldi5idWlsZGluZ3N5c3RlbXNncm91cC5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTkvMDgvQlNHLUxvZ28ucG5nIiBhbHQ9IiIgd2lkdGg9IjIyMiIgaGVpZ2h0PSIyMzIiIC8+QlNHIGlzIGEgQUNHIGNlcnRpZmllZCBmaXJtIHNwZWNpYWxpemluZyBpbiBpbmRlcGVuZGVudCBidWlsZGluZyBjb21taXNzaW9uaW5nIGZvciBuZXcgYnVpbGRpbmcgY29uc3RydWN0aW9uLCByZW5vdmF0aW9uLCByZXRyby1jb21taXNzaW9uaW5nIChDb21taXNzaW9uaW5nIG9mIGV4aXN0aW5nIGJ1aWxkaW5ncykgYW5kIGludmVzdGlnYXRpb24gb2YgZXhpc3RpbmcgYnVpbGRpbmcgZXF1aXBtZW50L3N5c3RlbXMgb3BlcmF0aW9uYWwgaXNzdWVzLiBCdWlsZGluZyBTeXN0ZW1zIEdyb3VwIGlzIGNvbXByaXNlZCBvZiBleHBlcmllbmNlZCBlbmdpbmVlcmluZyBwcm9mZXNzaW9uYWxzIGFuZCBmaWVsZCB0ZWNobmljaWFucy4gQlNHIGhhcyBhIHBvc2l0aXZlIHJlcHV0YXRpb24gaW4gYnVpbGRpbmcgY29tbWlzc2lvbmluZywgZXF1aXBtZW50L3N5c3RlbXMgdHJvdWJsZXNob290aW5nLCBlbmVyZ3kgZWZmaWNpZW50IG9wZXJhdGlvbiBzdXJ2ZXlzLCBhbmQgSUFRIGlzc3Vlcy4gT3VyIGFwcHJvYWNoIHRvIGNvbW1pc3Npb25pbmcgaXMgaGFuZHMtb24gdmVyaWZpY2F0aW9uIGluIHRoZSBmaWVsZCB0byBlbnN1cmUgeW91ciBidWlsZGluZyBwcm9qZWN0IGlzIGNvbXBsZXRlZCBhbmQgb3BlcmF0aW5nIGFzIGl0IHdhcyBvcmlnaW5hbGx5IGRlc2lnbmVkLjwvZGl2Pg0KPC9kaXY+DQo8L2Rpdj4NCjwvZGl2PiI7czo0OiJ0eXBlIjtzOjY6InZpc3VhbCI7czo2OiJmaWx0ZXIiO3M6MToiMSI7czo1OiJsYWJlbCI7czoyMDoiYmxhY2stc3R1ZGlvLXRpbnltY2UiO30=\",\n            \"title\": \"Call To Action\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"1f0be5eb48e956391dc605d28ec2eef5\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:45:34\"\n    }\n}','','','trash','closed','closed','','aa5e64f7-b3c0-4643-9375-f1ed0f5d1fea','','','2019-08-29 18:45:34','2019-08-29 18:45:34','',0,'http://dev.buildingsystemsgroup.com/?p=1253',0,'customize_changeset','',0),(1254,1,'2019-08-29 18:50:39','0000-00-00 00:00:00','{\n    \"sidebars_widgets[boldgrid-widget-1]\": {\n        \"value\": [],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:50:39\"\n    },\n    \"widget_text[3]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjEwOiJXSE8gQVJFIFdFIjtzOjQ6InRleHQiO3M6MDoiIjtzOjY6ImZpbHRlciI7YjoxO3M6NjoidmlzdWFsIjtiOjE7fQ==\",\n            \"title\": \"WHO ARE WE\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"e7d0d4bef4de2a9455ce7d7a7926df3d\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:50:39\"\n    }\n}','','','auto-draft','closed','closed','','353e956c-0ef7-43e7-9efb-65f9fcb0df38','','','2019-08-29 18:50:39','0000-00-00 00:00:00','',0,'http://dev.buildingsystemsgroup.com/?p=1254',0,'customize_changeset','',0),(1353,1,'2019-08-29 18:57:14','2019-08-29 18:57:14','{\n    \"sidebars_widgets[boldgrid-widget-1]\": {\n        \"value\": [\n            \"black-studio-tinymce-3\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:54:51\"\n    },\n    \"widget_black-studio-tinymce[3]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjkxNToiPGgyIHN0eWxlPSJ0ZXh0LWFsaWduOiBjZW50ZXI7Ij48c3BhbiBzdHlsZT0idGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7Ij5XSEFUIFNFVFMgVVMgQVBBUlQ8L3NwYW4+PC9oMj4NCkJTRyBpcyBhIEFDRyBjZXJ0aWZpZWQgZmlybSBzcGVjaWFsaXppbmcgaW4gaW5kZXBlbmRlbnQgYnVpbGRpPGltZyBjbGFzcz0id3AtaW1hZ2UtNTggYWxpZ25sZWZ0IiBzcmM9Imh0dHA6Ly9kZXYuYnVpbGRpbmdzeXN0ZW1zZ3JvdXAuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE5LzA4L0JTRy1Mb2dvLnBuZyIgYWx0PSIiIHdpZHRoPSIxODgiIGhlaWdodD0iMTk2IiAvPm5nIGNvbW1pc3Npb25pbmcgZm9yIG5ldyBidWlsZGluZyBjb25zdHJ1Y3Rpb24sIHJlbm92YXRpb24sIHJldHJvLWNvbW1pc3Npb25pbmcgKENvbW1pc3Npb25pbmcgb2YgZXhpc3RpbmcgYnVpbGRpbmdzKSBhbmQgaW52ZXN0aWdhdGlvbiBvZiBleGlzdGluZyBidWlsZGluZyBlcXVpcG1lbnQvc3lzdGVtcyBvcGVyYXRpb25hbCBpc3N1ZXMuIEJ1aWxkaW5nIFN5c3RlbXMgR3JvdXAgaXMgY29tcHJpc2VkIG9mIGV4cGVyaWVuY2VkIGVuZ2luZWVyaW5nIHByb2Zlc3Npb25hbHMgYW5kIGZpZWxkIHRlY2huaWNpYW5zLiBCU0cgaGFzIGEgcG9zaXRpdmUgcmVwdXRhdGlvbiBpbiBidWlsZGluZyBjb21taXNzaW9uaW5nLCBlcXVpcG1lbnQvc3lzdGVtcyB0cm91Ymxlc2hvb3RpbmcsIGVuZXJneSBlZmZpY2llbnQgb3BlcmF0aW9uIHN1cnZleXMsIGFuZCBJQVEgaXNzdWVzLiBPdXIgYXBwcm9hY2ggdG8gY29tbWlzc2lvbmluZyBpcyBoYW5kcy1vbiB2ZXJpZmljYXRpb24gaW4gdGhlIGZpZWxkIHRvIGVuc3VyZSB5b3VyIGJ1aWxkaW5nIHByb2plY3QgaXMgY29tcGxldGVkIGFuZCBvcGVyYXRpbmcgYXMgaXQgd2FzIG9yaWdpbmFsbHkgZGVzaWduZWQuIjtzOjQ6InR5cGUiO3M6NjoidmlzdWFsIjtzOjY6ImZpbHRlciI7czoxOiIxIjt9\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"5c9bc6070aa9d82ba50497a09c766084\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 18:57:14\"\n    }\n}','','','trash','closed','closed','','ec126bef-8eae-428a-b771-a60524270d77','','','2019-08-29 18:57:14','2019-08-29 18:57:14','',0,'http://dev.buildingsystemsgroup.com/?p=1353',0,'customize_changeset','',0),(1486,1,'2019-08-29 19:01:35','2019-08-29 19:01:35','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">R. Glenn Capps</h2>\r\n<h4 class=\"\"><b>President - Certified Commissioning Authority</b></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 3px; padding-bottom: 3px;\">\r\n<div class=\"col-md-12 col-sm-12 col-margin-bottom col-xs-12\">\r\n<p class=\"\">Mr. Capps has more than 50 years experience in facility operation and maintenance, mechanical design, facility planning, construction administration, constructability reviews, and facility commissioning for renovations/alterations and new construction.&nbsp; Having served as the “owner’s representative” on over $72 Million in construction provides Mr. Capps a unique perspective on operational and maintenance issues relevant to facility owner’s and operators.&nbsp; The design experience, coupled with the construction administration, provide a complete and comprehensive understanding that has proven to be invaluable in systems commissioning.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">qualifications</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<ul class=\"\">\r\n 	<li>ACG Certified Commissioning Authority</li>\r\n 	<li>Mechanical Engineer</li>\r\n 	<li>American Society of Heating, Refrigerating and Air-Conditioning Engineers</li>\r\n 	<li>Association of School Business Officials</li>\r\n 	<li>Building Commissioning Association</li>\r\n 	<li>Council of Educational Facility Planners International</li>\r\n 	<li>Certified Energy Auditor</li>\r\n 	<li>Virginia Educational Facility Planners, Former President</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\" style=\"padding-bottom: 20px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\" style=\"padding-bottom: 20px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">Brent m. capps</h2>\r\n<h4 class=\"\"><b>project manager - Certified Commissioning technician</b></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"width: 70%; margin-left: auto; margin-right: auto;\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"width: auto; margin-left: -8px; padding: 2em 0em;\">Mr. Capps has twelve years experience as Project Manager and Field Technician for Building Systems Group, Inc.; a Hampton Roads based facility commissioning company. Mr. Capps has provided independent building commissioning for new building construction, renovation, retro-commissioning (Commissioning of existing buildings) and investigation of existing building equipment/systems operational problems.&nbsp; His approach to commissioning is hands-on verification in the field to ensure your building project is completed and operating correctly.&nbsp; Mr. Capps’ level of commissioning experience ranges from provided services as required by SMACNA Commissioning Manual to Leadership in Energy and Environmental Design (LEED®) Enhanced Commissioning.</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">qualifications</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<ul class=\"\" style=\"padding-left: 4em;\">\r\n 	<li>ACG Certified Commissioning Technician</li>\r\n 	<li>Eight years experience in marketing, program development and administration.</li>\r\n 	<li>Twelve years experience in HVAC, Plumbing, and Electrical Commissioning</li>\r\n 	<li>Graduate of The University of Wisconsin-Madison:&nbsp;The Commissioning Process in Practice: An Intensive Project-Based Course for Providers&nbsp;</li>\r\n 	<li>Building Commissioning Association (BCxA) – Professional Member</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Commissioning Team','','inherit','closed','closed','','96-revision-v1','','','2019-08-29 19:01:35','2019-08-29 19:01:35','',96,'http://dev.buildingsystemsgroup.com/96-revision-v1/',0,'revision','',0),(384,1,'2019-08-29 17:57:46','2019-08-29 17:57:46','{\n    \"nav_menu_item[23]\": {\n        \"value\": {\n            \"menu_item_parent\": 0,\n            \"object_id\": 22,\n            \"object\": \"page\",\n            \"type\": \"post_type\",\n            \"type_label\": \"Page\",\n            \"url\": \"http://dev.buildingsystemsgroup.com/contact-us/\",\n            \"title\": \"\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"nav_menu_term_id\": 2,\n            \"position\": 5,\n            \"status\": \"publish\",\n            \"original_title\": \"Contact Us\",\n            \"_invalid\": false\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 17:57:46\"\n    },\n    \"nav_menu_item[131]\": {\n        \"value\": {\n            \"menu_item_parent\": 0,\n            \"object_id\": 96,\n            \"object\": \"page\",\n            \"type\": \"post_type\",\n            \"type_label\": \"Page\",\n            \"url\": \"http://dev.buildingsystemsgroup.com/home/commissioning-team/\",\n            \"title\": \"\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"nav_menu_term_id\": 2,\n            \"position\": 3,\n            \"status\": \"publish\",\n            \"original_title\": \"Commissioning Team\",\n            \"_invalid\": false\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 17:57:46\"\n    },\n    \"nav_menu_item[217]\": {\n        \"value\": {\n            \"menu_item_parent\": 0,\n            \"object_id\": 173,\n            \"object\": \"page\",\n            \"type\": \"post_type\",\n            \"type_label\": \"Page\",\n            \"url\": \"http://dev.buildingsystemsgroup.com/home/project-list/\",\n            \"title\": \"\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"nav_menu_term_id\": 2,\n            \"position\": 4,\n            \"status\": \"publish\",\n            \"original_title\": \"Project List\",\n            \"_invalid\": false\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 17:57:46\"\n    }\n}','','','trash','closed','closed','','dea838d8-9c37-4313-9e84-74a3be5c6d15','','','2019-08-29 17:57:46','2019-08-29 17:57:46','',0,'http://dev.buildingsystemsgroup.com/dea838d8-9c37-4313-9e84-74a3be5c6d15/',0,'customize_changeset','',0),(385,1,'2019-08-29 17:58:36','2019-08-29 17:58:36','{\n    \"boldgrid-vacation::nav_menu_locations[footer_center]\": {\n        \"value\": 2,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 17:58:11\"\n    }\n}','','','trash','closed','closed','','ed8e3e2e-19da-45bb-85a2-110098171f17','','','2019-08-29 17:58:36','2019-08-29 17:58:36','',0,'http://dev.buildingsystemsgroup.com/?p=385',0,'customize_changeset','',0),(435,1,'2019-08-29 17:59:52','2019-08-29 17:59:52','','WILLIAMSFARM-44FINAL','','inherit','open','closed','','williamsfarm-44final','','','2019-08-29 17:59:52','2019-08-29 17:59:52','',18,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/WILLIAMSFARM-44FINAL.jpg',0,'attachment','image/jpeg',0),(436,1,'2019-08-29 17:59:54','2019-08-29 17:59:54','','vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37','','inherit','open','closed','','vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37','','','2019-08-29 17:59:54','2019-08-29 17:59:54','',18,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37.jpg',0,'attachment','image/jpeg',0),(437,1,'2019-08-29 17:59:54','2019-08-29 17:59:54','','smile-12','','inherit','open','closed','','smile-12','','','2019-08-29 17:59:54','2019-08-29 17:59:54','',18,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/smile-12.jpg',0,'attachment','image/jpeg',0),(438,1,'2019-08-29 18:16:14','2019-08-29 18:16:14','<div class=\"boldgrid-section\"></div>\r\n<div class=\"boldgrid-section color-neutral-background-color color-neutral-text-default\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 46px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"color2-color\" style=\"text-align: center;\">Commissioning CONCEPT</h2>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 14px; padding-bottom: 40px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-6\">\r\n<p class=\"\" style=\"text-align: center;\"><img class=\"bg-img bg-img-1 aligncenter wp-image-442 size-large\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/2016-ODU-Broderick-Dining1-1400x800-1024x585.jpg\" alt=\"\" width=\"1024\" height=\"585\" data-imhwpb-asset-id=\"695357\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12 align-column-center\">\r\n<div class=\"\">\r\n<p class=\"\">Commissioning is a planned and integrated systematic process to ensure through documented verification that all building equipment/systems operate according to design intent. The commissioning process requires a collaborative team effort and can begin in the pre-design phase and continue through all phases of construction, initial occupancy, training of O&amp;M staff, preventive maintenance program review and warranty period.</p>\r\n<p class=\"\">Benefits from commissioning can be achieved no matter when the process starts. With a potential savings of up to 20% in owning and operating cost, the earlier the commissioning process begins the greater the benefits.</p>\r\n<p class=\"\">Commissioning gives the building owner/operator assurance of a correctly operating building at completion of construction. The owner/operator can be confident in continued correct operation because of equipment/system documentation and staff training.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color3-text-default\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 49px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"color1-color\" style=\"text-align: center;\">what\'s the benefit</h2>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0em; padding-bottom: 0em; margin-top: 0px; margin-right: -100px; margin-left: -100px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<h5 class=\"color1-color\" style=\"text-align: left;\">Cost savings of commissioned projects:</h5>\r\n<p class=\"\">Reduction in design problems</p>\r\n<p class=\"\">Reduction in design problemsReduced project delays</p>\r\n<p class=\"\">Reduced change orders</p>\r\n<p class=\"\">Correct start-up requirements</p>\r\n<p class=\"\">Shorten building turnover period</p>\r\n<p class=\"\">Reduced post occupancy corrective work</p>\r\n<p class=\"\">Improved quality of indoor working environment</p>\r\n<p class=\"\">Increased building system/equipment reliability and maintainability</p>\r\n<p class=\"\">Reduced energy and operating cost</p>\r\n<p class=\"\">Increased value as a result of better quality construction</p>\r\n\r\n</div>\r\n<div class=\"col-md-8 col-sm-6 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-1 aligncenter wp-image-441 size-large\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/HRC_Rendering-Intersection_FINAL-1024x549.png\" alt=\"\" width=\"1024\" height=\"549\" data-imhwpb-asset-id=\"695359\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-8 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color-neutral-background-color color-neutral-text-default\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 43px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2 class=\"color2-color\" style=\"text-align: center;\">immediate results</h2>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 18px; padding-bottom: 47px; width: auto; margin-right: -100px; margin-left: -100px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<h5 class=\"color1-color\" style=\"text-align: left;\">Deficiencies most often discovered by commissioning new and existing buildings:</h5>\r\n<p class=\"\">Incorrect heating and cooling sequence of operation</p>\r\n<p class=\"\">Lack of building control strategies for optimum comfort and efficient operation</p>\r\n<p class=\"\">Incorrect equipment installation</p>\r\n<p class=\"\">Malfunctioning economizer (free cooling) systems</p>\r\n<p class=\"\">Short cycling of HVAC equipment leading to premature failures</p>\r\n<p class=\"\">Missing specified and paid for equipment</p>\r\n<p class=\"\">O&amp;M manuals not specific to installed equipment</p>\r\n<p class=\"\">Problems resulting from lack of training for staff maintenance personnel</p>\r\n<p class=\"\">Lack of documentation for equipment/systems problems during warranty period</p>\r\n\r\n</div>\r\n<div class=\"col-md-8 col-sm-6 col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-1 aligncenter wp-image-437 size-large\" style=\"margin-top: 20px; margin-bottom: 20px;\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/smile-12-1024x630.jpg\" alt=\"\" width=\"1024\" height=\"630\" data-imhwpb-asset-id=\"695359\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color3-background-color color3-text-default\">\r\n<div class=\"container\"></div>\r\n</div>','Home','','inherit','closed','closed','','18-autosave-v1','','','2019-08-29 18:16:14','2019-08-29 18:16:14','',18,'http://dev.buildingsystemsgroup.com/18-autosave-v1/',0,'revision','',0),(439,1,'2019-08-29 18:00:00','2019-08-29 18:00:00','','P1140904','','inherit','open','closed','','p1140904','','','2019-08-29 18:00:00','2019-08-29 18:00:00','',18,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/P1140904.jpg',0,'attachment','image/jpeg',0),(440,1,'2019-08-29 18:00:02','2019-08-29 18:00:02','','img29','','inherit','open','closed','','img29','','','2019-08-29 18:00:02','2019-08-29 18:00:02','',18,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/img29.jpg',0,'attachment','image/jpeg',0),(441,1,'2019-08-29 18:00:07','2019-08-29 18:00:07','','HRC_Rendering-Intersection_FINAL','','inherit','open','closed','','hrc_rendering-intersection_final','','','2019-08-29 18:00:07','2019-08-29 18:00:07','',18,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/HRC_Rendering-Intersection_FINAL.png',0,'attachment','image/png',0),(442,1,'2019-08-29 18:00:09','2019-08-29 18:00:09','','2016-ODU-Broderick-Dining1-1400x800','','inherit','open','closed','','2016-odu-broderick-dining1-1400x800','','','2019-08-29 18:00:09','2019-08-29 18:00:09','',18,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/2016-ODU-Broderick-Dining1-1400x800.jpg',0,'attachment','image/jpeg',0),(443,1,'2019-08-29 18:00:10','2019-08-29 18:00:10','','18.6-million-project-begins-on-Cape-580-1','','inherit','open','closed','','18-6-million-project-begins-on-cape-580-1','','','2019-08-29 18:00:10','2019-08-29 18:00:10','',18,'http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/18.6-million-project-begins-on-Cape-580-1.jpg',0,'attachment','image/jpeg',0),(493,1,'2019-08-29 18:03:24','2019-08-29 18:03:24','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">What is Building commissioning</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">Building Commissioning is the process of verifying, in new construction, that all the subsystems for HVAC, Plumbing, Electrical, Fire/Life safety, Building Envelopes, Interior Systems, cogeneration, utility plants, sustainable systems, Lighting, Wastewater, Controls, and Building Security achieve the owner\'s project requirements as intended by the building owner and as designed by the building architects and engineers. Building commissioning is a quality-focused process necessary for both non-complex and complex modern construction projects. While the practice of building commissioning process is still fairly new in the construction industry, it has quickly become common practice as savvy building owners and developers have seen substantial returns on their investment. The ultimate goal of the commissioning process is to deliver for the owner a project that is on schedule, has reduced first cost of delivery and substantial life cost reductions and meets the needs of users and occupants, including a fully operational and optimized building and building systems and assemblies.</p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\"></div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-57 \" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/133_0_600_450.39577836412_measurement-systems-lab-1024x569.jpg\" alt=\"NASA Langley Measurement Systems Laboratory\" width=\"792\" height=\"594\" data-imhwpb-asset-id=\"780377\"></p>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter wp-image-59 size-large\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cq5dam-web-1280-1280-13-1024x576.jpg\" alt=\"ODU - Foreman Field Reconstruction\" width=\"1024\" height=\"576\" data-imhwpb-asset-id=\"780378\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">COMMISSIONING GOALS</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">All forms of building commissioning share the same goals: to produce a building that meets the unique needs of its owner and occupants, operates as efficiently as possible, provides a safe, comfortable work environment, and is operated and maintained by a well-trained staff or service contractor.</p>\r\n<strong>The purpose of Building Commissioning is as follows:</strong>\r\n<ul class=\"\">\r\n 	<li>Verify that a facility and its systems meet the CFR</li>\r\n 	<li>Improve building performance by saving energy and reducing operational costs</li>\r\n 	<li>Ientify and resolve building system operation, control and maintenance problems</li>\r\n 	<li>Reduce or eliminate occupant complaints and increase tenant satisfaction</li>\r\n 	<li>Improve indoor environmental comfort and quality and reduce associated liability</li>\r\n 	<li>Document system operation</li>\r\n 	<li>Identify Operations &amp; Maintenance (O&amp;M) personnel training needs and provide training</li>\r\n 	<li>Minimize operational risk and increase asset value</li>\r\n 	<li>Extend equipment life-cycle</li>\r\n 	<li>Ensure the persistence of improvements over the building’s life</li>\r\n 	<li>Assist in achieving LEED for Existing Buildings <a href=\"http://www.usgbc.org/LEED\">www.usgbc.org/LEED</a></li>\r\n 	<li>Improve the building’s ENERGY STAR rating <a href=\"http://www.energystar.gov/\">http://www.energystar.gov/</a></li>\r\n</ul>\r\n<div>The commissioning process is a team effort, usually led by a commissioning lead, who verifies that the building meets the owner’s expectations at each stage of the design and construction process.&nbsp; Since each building project is unique, the commissioning lead will adapt the process to meet the project’s specific goals. This guide outlines a comprehensive process for reaching those goals.&nbsp; The scope of the individual projects may differ, depending on size, complexity, and budget. The parts of the commissioning process that are included in the commissioning lead’s scope of work can also vary.In the scope, the lead typically is engaged to perform the following activities:\r\n\r\n<strong>Document the building’s functional and performance requirements.</strong> The commissioning lead works with the owner and design team to ensure that the Owner’s Project Requirements (OPR) document clearly describes the owner’s performance and maintainability criteria. Ideally, this occurs during the design phase of the project.\r\n\r\n<strong>Provide tools and documentation to improve the project team’s deliverables. </strong>These include Issues Logs, which track issues from identification to resolution at each phase of development, and a Commissioning Report, which documents the results of inspections and functional performance tests.\r\n\r\n<strong>Verify and document that systems perform as specified in the OPR. </strong>To ensure that the building will perform as expected, the commissioning lead observes equipment start-up, writes and observes functional testing, verifies that control system calibration and testing, adjusting, and balancing have been performed satisfactorily, and documents these activities.\r\n\r\n<strong>Verify that the building owner and manager receive adequate and accurate system documentation and staff training.</strong> The commissioning lead ensures that these requirements are included in the specifications, tracks their delivery, and may oversee the work of training leads in developing curriculum and conducting training sessions.\r\n\r\n<strong>Bring a holistic perspective to the design and construction process that integrates and enhances its traditionally separate functions.</strong> The commissioning process brings project team members together on a regular basis and encourages the group to work together to solve problems.\r\n\r\n</div>\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">why commission your building</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">In today’s complex buildings, systems are highly interactive. Increased system inter- activity, together with the nearly universal presence of sophisticated control systems,&nbsp; results in a trickle-down effect on building operations — small problems have big effects on performance.</p>\r\nNo matter how carefully a building is designed, if the systems, equipment and materials are not installed and operating as intended, the building will not perform well.\r\n\r\nNow more than ever, effective operations require subsystems and components that work effectively and reliably and a building staff with the knowledge and resources to operate and maintain them. But in today’s construction environment, project team members are more cost-conscious than ever, and seldom is there adequate budget allocated to quality assurance processes.\r\n\r\nThe result of this situation? Poorly performing buildings where:\r\n<ul class=\"\">\r\n 	<li>System and equipment problems result in higher than necessary utility bills.</li>\r\n 	<li>Unexpected or excessive equipment repair and replacements due to premature failures cost the owner money and eat up staff time.</li>\r\n 	<li>Poor indoor environmental quality causes employee absenteeism, tenant complaints and turnover, and in the most severe cases, leads to lawsuits and expensive retrofits.</li>\r\n</ul>\r\n<p class=\"\">Benefits from commissioning can be achieved no matter when the process begins.&nbsp; With a potential savings of up to 20% in owning and operating cost, the earlier the commissioning process begins, the greater the benefits. Commissioning benefits owners\' through improved energy efficiency, improved workplace performance due to higher quality environments, reduced risk from threats, and prevention of business losses. Organizations that have researched the benefits of commissioning confirm that owners can achieve <strong>savings in operations of $4 over the first five years of occupancy as a direct result of every $1 invested in commissioning</strong>. Meanwhile, the cost of not commissioning is equal to the costs of correcting deficiencies plus the costs of inefficient operations. For mission-critical facilities, the cost of not commissioning can be measured by the cost of downtime and lack of appropriate facility use.</p>\r\n<strong>COST SAVINGS OF COMMISSIONED PROJECTS:</strong>\r\n<ul>\r\n 	<li>Reduction in design problems</li>\r\n 	<li>Reduced project delays</li>\r\n 	<li>Reduced change orders</li>\r\n 	<li>Correct start-up requirements</li>\r\n 	<li>Shorten building turnover period</li>\r\n 	<li>Reduced post occupancy corrective work</li>\r\n 	<li>Improved quality of indoor working environment</li>\r\n 	<li>Increased building system/equipment reliability and maintainability</li>\r\n 	<li>Reduced energy and operating cost</li>\r\n 	<li>Increased value as a result of better quality construction</li>\r\n</ul>\r\n<strong>DEFICIENCIES MOST OFTEN DISCOVERED DURING COMMISSIONING:</strong>\r\n<ul class=\"\">\r\n 	<li>Incorrect heating and cooling sequence of operation</li>\r\n 	<li>Lack of building control strategies for optimum comfort and efficient operation</li>\r\n 	<li>Incorrect equipment installation</li>\r\n 	<li>Malfunctioning economizer (free cooling) systems</li>\r\n 	<li>Short cycling of HVAC equipment leading to premature failures</li>\r\n 	<li>Missing specified and paid for equipment</li>\r\n 	<li>O&amp;M manuals not specific to installed equipment</li>\r\n 	<li>Problems resulting from lack of training for staff maintenance personnel</li>\r\n 	<li>Lack or documentation for equipment/systems problems during the warranty period</li>\r\n</ul>\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-36 size-full\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/d059a2ca-53d6b1-peshkov150600019.jpg\" alt=\"\" width=\"450\" height=\"300\" data-imhwpb-built-photo-search=\"10|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Commissioning Overview','','inherit','closed','closed','','20-revision-v1','','','2019-08-29 18:03:24','2019-08-29 18:03:24','',20,'http://dev.buildingsystemsgroup.com/20-revision-v1/',0,'revision','',0),(1636,1,'2019-08-29 19:04:19','2019-08-29 19:04:19','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h2 class=\"\">What is Building commissioning</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">Building Commissioning is the process of verifying, in new construction, that all the subsystems for HVAC, Plumbing, Electrical, Fire/Life safety, Building Envelopes, Interior Systems, cogeneration, utility plants, sustainable systems, Lighting, Wastewater, Controls, and Building Security achieve the owner\'s project requirements as intended by the building owner and as designed by the building architects and engineers. Building commissioning is a quality-focused process necessary for both non-complex and complex modern construction projects. While the practice of building commissioning process is still fairly new in the construction industry, it has quickly become common practice as savvy building owners and developers have seen substantial returns on their investment. The ultimate goal of the commissioning process is to deliver for the owner a project that is on schedule, has reduced first cost of delivery and substantial life cost reductions and meets the needs of users and occupants, including a fully operational and optimized building and building systems and assemblies.</p>\r\n\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\"></div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"wp-image-57  aligncenter\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/133_0_600_450.39577836412_measurement-systems-lab-1024x569.jpg\" alt=\"NASA Langley Measurement Systems Laboratory\" width=\"792\" height=\"594\" data-imhwpb-asset-id=\"780377\"></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter wp-image-59 size-large\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/cq5dam-web-1280-1280-13-1024x576.jpg\" alt=\"ODU - Foreman Field Reconstruction\" width=\"1024\" height=\"576\" data-imhwpb-asset-id=\"780378\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">COMMISSIONING GOALS</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">All forms of building commissioning share the same goals: to produce a building that meets the unique needs of its owner and occupants, operates as efficiently as possible, provides a safe, comfortable work environment, and is operated and maintained by a well-trained staff or service contractor.</p>\r\n<strong>The purpose of Building Commissioning is as follows:</strong>\r\n<ul class=\"\">\r\n 	<li>Verify that a facility and its systems meet the CFR</li>\r\n 	<li>Improve building performance by saving energy and reducing operational costs</li>\r\n 	<li>Ientify and resolve building system operation, control and maintenance problems</li>\r\n 	<li>Reduce or eliminate occupant complaints and increase tenant satisfaction</li>\r\n 	<li>Improve indoor environmental comfort and quality and reduce associated liability</li>\r\n 	<li>Document system operation</li>\r\n 	<li>Identify Operations &amp; Maintenance (O&amp;M) personnel training needs and provide training</li>\r\n 	<li>Minimize operational risk and increase asset value</li>\r\n 	<li>Extend equipment life-cycle</li>\r\n 	<li>Ensure the persistence of improvements over the building’s life</li>\r\n 	<li>Assist in achieving LEED for Existing Buildings <a href=\"http://www.usgbc.org/LEED\">www.usgbc.org/LEED</a></li>\r\n 	<li>Improve the building’s ENERGY STAR rating <a href=\"http://www.energystar.gov/\">http://www.energystar.gov/</a></li>\r\n</ul>\r\n<div>\r\n<p class=\"\">The commissioning process is a team effort, usually led by a commissioning lead, who verifies that the building meets the owner’s expectations at each stage of the design and construction process.&nbsp; Since each building project is unique, the commissioning lead will adapt the process to meet the project’s specific goals. This guide outlines a comprehensive process for reaching those goals.&nbsp; The scope of the individual projects may differ, depending on size, complexity, and budget. The parts of the commissioning process that are included in the commissioning lead’s scope of work can also vary. In the scope, the lead typically is engaged to perform the following activities:</p>\r\n<strong>Document the building’s functional and performance requirements.</strong> The commissioning lead works with the owner and design team to ensure that the Owner’s Project Requirements (OPR) document clearly describes the owner’s performance and maintainability criteria. Ideally, this occurs during the design phase of the project.\r\n<p class=\"\"><strong>Provide tools and documentation to improve the project team’s deliverables. </strong>These include Issues Logs, which track issues from identification to resolution at each phase of development, and a Commissioning Report, which documents the results of inspections and functional performance tests.</p>\r\n<p class=\"\"><strong>Verify and document that systems perform as specified in the OPR. </strong>To ensure that the building will perform as expected, the commissioning lead observes equipment start-up, writes and observes functional testing, verifies that control system calibration and testing, adjusting, and balancing have been performed satisfactorily, and documents these activities.</p>\r\n<strong>Verify that the building owner and manager receive adequate and accurate system documentation and staff training.</strong> The commissioning lead ensures that these requirements are included in the specifications, tracks their delivery, and may oversee the work of training leads in developing curriculum and conducting training sessions.\r\n\r\n<strong>Bring a holistic perspective to the design and construction process that integrates and enhances its traditionally separate functions.</strong> The commissioning process brings project team members together on a regular basis and encourages the group to work together to solve problems.\r\n\r\n</div>\r\n<div class=\"row gridblock\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n<div class=\"gridblock\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-6 col-margin-bottom col-xs-12 col-sm-12\">\r\n<h2 class=\"\">why commission your building</h2>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\">In today’s complex buildings, systems are highly interactive. Increased system inter- activity, together with the nearly universal presence of sophisticated control systems,&nbsp; results in a trickle-down effect on building operations — small problems have big effects on performance.</p>\r\nNo matter how carefully a building is designed, if the systems, equipment and materials are not installed and operating as intended, the building will not perform well.\r\n<p class=\"\">Now more than ever, effective operations require subsystems and components that work effectively and reliably and a building staff with the knowledge and resources to operate and maintain them. But in today’s construction environment, project team members are more cost-conscious than ever, and seldom is there adequate budget allocated to quality assurance processes.</p>\r\nThe result of this situation? Poorly performing buildings where:\r\n<ul class=\"\">\r\n 	<li>System and equipment problems result in higher than necessary utility bills.</li>\r\n 	<li>Unexpected or excessive equipment repair and replacements due to premature failures cost the owner money and eat up staff time.</li>\r\n 	<li>Poor indoor environmental quality causes employee absenteeism, tenant complaints and turnover, and in the most severe cases, leads to lawsuits and expensive retrofits.</li>\r\n</ul>\r\n<p class=\"\">Benefits from commissioning can be achieved no matter when the process begins.&nbsp; With a potential savings of up to 20% in owning and operating cost, the earlier the commissioning process begins, the greater the benefits. Commissioning benefits owners\' through improved energy efficiency, improved workplace performance due to higher quality environments, reduced risk from threats, and prevention of business losses. Organizations that have researched the benefits of commissioning confirm that owners can achieve <strong>savings in operations of $4 over the first five years of occupancy as a direct result of every $1 invested in commissioning</strong>. Meanwhile, the cost of not commissioning is equal to the costs of correcting deficiencies plus the costs of inefficient operations. For mission-critical facilities, the cost of not commissioning can be measured by the cost of downtime and lack of appropriate facility use.</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-margin-bottom text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"wp-image-436 size-large aligncenter\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/77_0_450_300.16930022573_vp-article_27061f08-9cd4-11e8-a38d-973cb52c8e37-1024x591.jpg\" alt=\"\" width=\"450\" height=\"300\" data-imhwpb-built-photo-search=\"10|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Commissioning Overview','','inherit','closed','closed','','20-revision-v1','','','2019-08-29 19:04:19','2019-08-29 19:04:19','',20,'http://dev.buildingsystemsgroup.com/20-revision-v1/',0,'revision','',0),(627,1,'2019-08-29 18:08:06','2019-08-29 18:08:06','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\n\nPlease use the contact form below, if you have any general questions or requests about our services.\n\nWe will try our best to respond back to you within 24 hours.\n<div class=\"boldgrid-shortcode wpforms-shortcode\" data-imhwpb-draggable=\"true\">\n\n[wpforms id=\"11\"]\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\n<h3><i class=\"fa fa-1x fa-envelope-o\"><!-- icon --></i> Email</h3>\n<a href=\"mailto:info@buildingsystemsgroup.com\">info@buildingsystemsgroup.com</a>\n<h3><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> Phone</h3>\n<p class=\"\">(757) 581-5898</p>\n\n<h3><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address</h3>\n<p class=\"\">3324 Kline Drive</p>\n<p class=\"\">Virginia Beach, VA 23452</p>\n<p class=\"mod-reset\"><img class=\"wp-image-58 size-full aligncenter\" src=\"http://dev.buildingsystemsgroup.com/wp-content/uploads/2019/08/BSG-Logo.png\" alt=\"\" width=\"222\" height=\"232\" data-imhwpb-built-photo-search=\"52|portrait\"></p>\n\n</div>\n</div>\n</div>\n</div>','Contact Us','','inherit','closed','closed','','22-autosave-v1','','','2019-08-29 18:08:06','2019-08-29 18:08:06','',22,'http://dev.buildingsystemsgroup.com/22-autosave-v1/',0,'revision','',0),(1768,1,'2019-08-29 19:33:17','2019-08-29 19:33:17','{\n    \"widget_black-studio-tinymce[3]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjg4MzoiPGgyIHN0eWxlPSJ0ZXh0LWFsaWduOiBjZW50ZXI7Ij48c3Ryb25nPldIQVQgU0VUUyBVUyBBUEFSVDwvc3Ryb25nPjwvaDI+DQpCU0cgaXMgYSBBQ0cgY2VydGlmaWVkIGZpcm0gc3BlY2lhbGl6aW5nIGluIGluZGVwZW5kZW50IGJ1aWxkaTxpbWcgY2xhc3M9IndwLWltYWdlLTU4IGFsaWdubGVmdCIgc3JjPSJodHRwOi8vZGV2LmJ1aWxkaW5nc3lzdGVtc2dyb3VwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOS8wOC9CU0ctTG9nby5wbmciIGFsdD0iIiB3aWR0aD0iMTg4IiBoZWlnaHQ9IjE5NiIgLz5uZyBjb21taXNzaW9uaW5nIGZvciBuZXcgYnVpbGRpbmcgY29uc3RydWN0aW9uLCByZW5vdmF0aW9uLCByZXRyby1jb21taXNzaW9uaW5nIChDb21taXNzaW9uaW5nIG9mIGV4aXN0aW5nIGJ1aWxkaW5ncykgYW5kIGludmVzdGlnYXRpb24gb2YgZXhpc3RpbmcgYnVpbGRpbmcgZXF1aXBtZW50L3N5c3RlbXMgb3BlcmF0aW9uYWwgaXNzdWVzLiBCdWlsZGluZyBTeXN0ZW1zIEdyb3VwIGlzIGNvbXByaXNlZCBvZiBleHBlcmllbmNlZCBlbmdpbmVlcmluZyBwcm9mZXNzaW9uYWxzIGFuZCBmaWVsZCB0ZWNobmljaWFucy4gQlNHIGhhcyBhIHBvc2l0aXZlIHJlcHV0YXRpb24gaW4gYnVpbGRpbmcgY29tbWlzc2lvbmluZywgZXF1aXBtZW50L3N5c3RlbXMgdHJvdWJsZXNob290aW5nLCBlbmVyZ3kgZWZmaWNpZW50IG9wZXJhdGlvbiBzdXJ2ZXlzLCBhbmQgSUFRIGlzc3Vlcy4gT3VyIGFwcHJvYWNoIHRvIGNvbW1pc3Npb25pbmcgaXMgaGFuZHMtb24gdmVyaWZpY2F0aW9uIGluIHRoZSBmaWVsZCB0byBlbnN1cmUgeW91ciBidWlsZGluZyBwcm9qZWN0IGlzIGNvbXBsZXRlZCBhbmQgb3BlcmF0aW5nIGFzIGl0IHdhcyBvcmlnaW5hbGx5IGRlc2lnbmVkLiI7czo0OiJ0eXBlIjtzOjY6InZpc3VhbCI7czo2OiJmaWx0ZXIiO3M6MToiMSI7fQ==\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"066ce09b23a6a899e07ea65ab6d02d3d\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-29 19:33:17\"\n    }\n}','','','trash','closed','closed','','0c674045-8963-438e-b952-e65398a83321','','','2019-08-29 19:33:17','2019-08-29 19:33:17','',0,'http://dev.buildingsystemsgroup.com/0c674045-8963-438e-b952-e65398a83321/',0,'customize_changeset','',0);
/*!40000 ALTER TABLE `wpym_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpym_term_relationships`
--

DROP TABLE IF EXISTS `wpym_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpym_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpym_term_relationships`
--

LOCK TABLES `wpym_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpym_term_relationships` DISABLE KEYS */;
INSERT INTO `wpym_term_relationships` VALUES (1,1,0),(19,2,0),(21,2,0),(23,2,0),(131,2,0),(217,2,0);
/*!40000 ALTER TABLE `wpym_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpym_term_taxonomy`
--

DROP TABLE IF EXISTS `wpym_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpym_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpym_term_taxonomy`
--

LOCK TABLES `wpym_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpym_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpym_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,5);
/*!40000 ALTER TABLE `wpym_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpym_termmeta`
--

DROP TABLE IF EXISTS `wpym_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpym_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpym_termmeta`
--

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

--
-- Table structure for table `wpym_terms`
--

DROP TABLE IF EXISTS `wpym_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpym_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpym_terms`
--

LOCK TABLES `wpym_terms` WRITE;
/*!40000 ALTER TABLE `wpym_terms` DISABLE KEYS */;
INSERT INTO `wpym_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'primary','primary',0);
/*!40000 ALTER TABLE `wpym_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpym_usermeta`
--

DROP TABLE IF EXISTS `wpym_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpym_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpym_usermeta`
--

LOCK TABLES `wpym_usermeta` WRITE;
/*!40000 ALTER TABLE `wpym_usermeta` DISABLE KEYS */;
INSERT INTO `wpym_usermeta` VALUES (1,1,'nickname','building-sysadmin'),(2,1,'first_name','Brent'),(3,1,'last_name','Capps'),(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,'wpym_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpym_user_level','10'),(14,1,'dismissed_wp_pointers','wp410_dfw,black_studio_tinymce_widget'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:3:{s:64:\"a3bc5567878881edb205a87ec923415efdbbda59927b33ccea18a67a56451268\";a:4:{s:10:\"expiration\";i:1567267249;s:2:\"ip\";s:12:\"216.54.31.82\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";s:5:\"login\";i:1567094449;}s:64:\"34cddd80c27ab80fd22593aafd1ad0492ac406d03d8d5af13ab2a2b2f2ee3af8\";a:4:{s:10:\"expiration\";i:1567267734;s:2:\"ip\";s:13:\"98.183.185.72\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15\";s:5:\"login\";i:1567094934;}s:64:\"e768994979fc76c6dc6677d8ab7612331d5b9b10627c0f1c88bdbd16426d86fa\";a:4:{s:10:\"expiration\";i:1567275478;s:2:\"ip\";s:13:\"98.183.185.72\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15\";s:5:\"login\";i:1567102678;}}'),(17,1,'wpym_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"98.183.185.0\";}'),(19,1,'first_login','2019-08-29 16:08:54'),(20,1,'last_login','2019-08-29 16:08:54'),(21,1,'wpym_user-settings','libraryContent=browse&editor=tinymce&advImgDetails=show&align=right'),(22,1,'wpym_user-settings-time','1567104514'),(23,1,'edit_page_per_page','20'),(24,1,'manageedit-pagecolumnshidden','a:1:{i:0;s:4:\"date\";}'),(25,1,'bglibDashboardOrder','1');
/*!40000 ALTER TABLE `wpym_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpym_users`
--

DROP TABLE IF EXISTS `wpym_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpym_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpym_users`
--

LOCK TABLES `wpym_users` WRITE;
/*!40000 ALTER TABLE `wpym_users` DISABLE KEYS */;
INSERT INTO `wpym_users` VALUES (1,'building-sysadmin','$P$B6poK3DV996HHS/5r9CNczVQAti/f4.','building-sysadmin','brent.capps@gmail.com','','2019-08-29 15:54:58','',0,'Brent Capps');
/*!40000 ALTER TABLE `wpym_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 2019-08-29 15:37:08
