-- MySQL dump 10.16  Distrib 10.2.11-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: vqhost5_wp614
-- ------------------------------------------------------
-- Server version	10.2.11-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 utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpki_commentmeta`
--

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

--
-- Dumping data for table `wpki_commentmeta`
--

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

--
-- Table structure for table `wpki_comments`
--

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

--
-- Dumping data for table `wpki_comments`
--

LOCK TABLES `wpki_comments` WRITE;
/*!40000 ALTER TABLE `wpki_comments` DISABLE KEYS */;
INSERT INTO `wpki_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-01-29 23:52:45','2018-01-29 23:52:45','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 `wpki_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpki_links`
--

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

--
-- Dumping data for table `wpki_links`
--

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

--
-- Table structure for table `wpki_loginizer_logs`
--

DROP TABLE IF EXISTS `wpki_loginizer_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_loginizer_logs` (
  `username` varchar(255) NOT NULL DEFAULT '',
  `time` int(10) NOT NULL DEFAULT 0,
  `count` int(10) NOT NULL DEFAULT 0,
  `lockout` int(10) NOT NULL DEFAULT 0,
  `ip` varchar(255) NOT NULL DEFAULT '',
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_loginizer_logs`
--

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

--
-- Table structure for table `wpki_options`
--

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

--
-- Dumping data for table `wpki_options`
--

LOCK TABLES `wpki_options` WRITE;
/*!40000 ALTER TABLE `wpki_options` DISABLE KEYS */;
INSERT INTO `wpki_options` VALUES (1,'siteurl','http://abwcreditenhancement.vqhosted.com','yes'),(2,'home','http://abwcreditenhancement.vqhosted.com','yes'),(3,'blogname','A Better Way Credit Enhancement','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','fcurtis@vqhosted.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:227:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s: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:25:\"./(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";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:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s: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:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s: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:40:\"bg_attribution/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?bg_attribution=$matches[1]&wc-api=$matches[3]\";s:46:\"bg_attribution/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"bg_attribution/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";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:34:\"bg-block/([^/]+)/wc-api(/(.*))?/?$\";s:49:\"index.php?bg_block=$matches[1]&wc-api=$matches[3]\";s:40:\"bg-block/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"bg-block/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";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:42:\"amn_wpforms-lite/([^/]+)/wc-api(/(.*))?/?$\";s:57:\"index.php?amn_wpforms-lite=$matches[1]&wc-api=$matches[3]\";s:48:\"amn_wpforms-lite/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:59:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";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:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";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:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s: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:8:{i:0;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:1;s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";i:2;s:31:\"boldgrid-gallery/wc-gallery.php\";i:3;s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";i:4;s:23:\"loginizer/loginizer.php\";i:5;s:43:\"paypal-payment-button-by-vcita/Livesite.php\";i:6;s:47:\"post-and-page-builder/post-and-page-builder.php\";i:7;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-swifty','yes'),(41,'stylesheet','boldgrid-swifty','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','38590','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:2:{s:23:\"loginizer/loginizer.php\";s:22:\"loginizer_deactivation\";s:47:\"post-and-page-builder/post-and-page-builder.php\";a:2:{i:0;s:25:\"Boldgrid_Editor_Uninstall\";i:1;s:9:\"on_delete\";}}','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','49','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wpki_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:131:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:109:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(305,'boldgrid_menus_created','a:2:{i:3;s:6:\"social\";s:14:\"option_version\";i:2;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:4:{i:1517831565;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:1517862626;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:1517874814;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;}}}s:7:\"version\";i:2;}','yes'),(110,'_site_transient_timeout_boldgrid_available','1518009585','no'),(111,'_site_transient_boldgrid_available','1','no'),(112,'boldgrid_settings','a:3:{s:7:\"library\";a:1:{s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:7:\"1.1.6.0\";}s:15:\"plugins_checked\";a:5:{s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";a:1:{s:5:\"1.5.3\";i:1517437539;}s:35:\"boldgrid-editor/boldgrid-editor.php\";a:1:{s:7:\"1.6.0.1\";i:1517270218;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:13:\"1.0.0-alpha.1\";i:1517437539;}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";a:1:{s:5:\"1.5.1\";i:1517437539;}s:31:\"boldgrid-gallery/wc-gallery.php\";a:1:{s:3:\"1.5\";i:1517437539;}}s:20:\"boldgrid_menu_option\";s:1:\"1\";}','no'),(140,'_amn_wpforms-lite_last_checked','1517356800','yes'),(2512,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(2513,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(2514,'woocommerce_myaccount_page_id','258','yes'),(2515,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(2516,'woocommerce_enable_myaccount_registration','no','no'),(2517,'woocommerce_enable_checkout_login_reminder','yes','no'),(2518,'woocommerce_registration_generate_username','yes','no'),(2519,'woocommerce_registration_generate_password','no','no'),(2520,'woocommerce_myaccount_orders_endpoint','orders','yes'),(2521,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(2522,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(2523,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(2524,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(2525,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(2526,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(2527,'woocommerce_logout_endpoint','customer-logout','yes'),(2528,'woocommerce_email_from_name','A Better Way Credit Enhancement','no'),(2529,'woocommerce_email_from_address','fcurtis@vqhosted.com','no'),(2530,'woocommerce_email_header_image','','no'),(2531,'woocommerce_email_footer_text','A Better Way Credit Enhancement','no'),(2532,'woocommerce_email_base_color','#96588a','no'),(2533,'woocommerce_email_background_color','#f7f7f7','no'),(2534,'woocommerce_email_body_background_color','#ffffff','no'),(2535,'woocommerce_email_text_color','#3c3c3c','no'),(2536,'woocommerce_api_enabled','yes','yes'),(2595,'wc_stripe_version','4.0.4','yes'),(2607,'_transient_product_query-transient-version','1517430790','yes'),(2632,'_transient_product-transient-version','1517430790','yes'),(2624,'_transient_timeout_external_ip_address_173.12.30.121','1518035508','no'),(2625,'_transient_external_ip_address_173.12.30.121','209.182.198.223','no'),(2642,'woocommerce_gateway_order','a:15:{s:4:\"bacs\";i:0;s:6:\"cheque\";i:1;s:3:\"cod\";i:2;s:6:\"paypal\";i:3;s:21:\"braintree_credit_card\";i:4;s:16:\"braintree_paypal\";i:5;s:6:\"stripe\";i:6;s:11:\"stripe_sepa\";i:7;s:17:\"stripe_bancontact\";i:8;s:13:\"stripe_sofort\";i:9;s:14:\"stripe_giropay\";i:10;s:12:\"stripe_ideal\";i:11;s:10:\"stripe_p24\";i:12;s:13:\"stripe_alipay\";i:13;s:14:\"stripe_bitcoin\";i:14;}','yes'),(2441,'woocommerce_store_address','1033 Manor Rd','yes'),(2442,'woocommerce_store_address_2','','yes'),(2443,'woocommerce_store_city','Coatesville','yes'),(2444,'woocommerce_default_country','US:PA','yes'),(2445,'woocommerce_store_postcode','19320','yes'),(2446,'woocommerce_allowed_countries','all','yes'),(2447,'woocommerce_all_except_countries','','yes'),(2448,'woocommerce_specific_allowed_countries','','yes'),(2449,'woocommerce_ship_to_countries','','yes'),(2450,'woocommerce_specific_ship_to_countries','','yes'),(2451,'woocommerce_default_customer_address','geolocation','yes'),(2452,'woocommerce_calc_taxes','no','yes'),(2453,'woocommerce_demo_store','no','yes'),(2454,'woocommerce_demo_store_notice','This is a demo store for testing purposes &mdash; no orders shall be fulfilled.','no'),(2455,'woocommerce_currency','USD','yes'),(2456,'woocommerce_currency_pos','left','yes'),(2457,'woocommerce_price_thousand_sep',',','yes'),(2458,'woocommerce_price_decimal_sep','.','yes'),(2459,'woocommerce_price_num_decimals','2','yes'),(2460,'woocommerce_weight_unit','kg','yes'),(2461,'woocommerce_dimension_unit','cm','yes'),(2462,'woocommerce_enable_reviews','yes','yes'),(2463,'woocommerce_review_rating_verification_label','yes','no'),(2464,'woocommerce_review_rating_verification_required','no','no'),(2465,'woocommerce_enable_review_rating','yes','yes'),(2466,'woocommerce_review_rating_required','yes','no'),(2467,'woocommerce_shop_page_id','255','yes'),(2468,'woocommerce_shop_page_display','','yes'),(2469,'woocommerce_category_archive_display','','yes'),(2470,'woocommerce_default_catalog_orderby','menu_order','yes'),(2471,'woocommerce_cart_redirect_after_add','no','yes'),(2472,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(2473,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";i:1;}','yes'),(2474,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:4:\"crop\";i:1;}','yes'),(2475,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"180\";s:6:\"height\";s:3:\"180\";s:4:\"crop\";i:1;}','yes'),(2476,'woocommerce_manage_stock','yes','yes'),(2477,'woocommerce_hold_stock_minutes','60','no'),(2478,'woocommerce_notify_low_stock','yes','no'),(2479,'woocommerce_notify_no_stock','yes','no'),(2480,'woocommerce_stock_email_recipient','fcurtis@vqhosted.com','no'),(2481,'woocommerce_notify_low_stock_amount','2','no'),(2482,'woocommerce_notify_no_stock_amount','0','yes'),(2483,'woocommerce_hide_out_of_stock_items','no','yes'),(2484,'woocommerce_stock_format','','yes'),(2485,'woocommerce_file_download_method','force','no'),(2486,'woocommerce_downloads_require_login','no','no'),(2487,'woocommerce_downloads_grant_access_after_payment','yes','no'),(2488,'woocommerce_prices_include_tax','no','yes'),(2489,'woocommerce_tax_based_on','shipping','yes'),(2490,'woocommerce_shipping_tax_class','inherit','yes'),(2491,'woocommerce_tax_round_at_subtotal','no','yes'),(2492,'woocommerce_tax_classes','Reduced rate\nZero rate','yes'),(2493,'woocommerce_tax_display_shop','excl','yes'),(2494,'woocommerce_tax_display_cart','excl','no'),(2495,'woocommerce_price_display_suffix','','yes'),(2496,'woocommerce_tax_total_display','itemized','no'),(2497,'woocommerce_enable_shipping_calc','yes','no'),(2498,'woocommerce_shipping_cost_requires_address','no','no'),(2499,'woocommerce_ship_to_destination','billing','no'),(2500,'woocommerce_shipping_debug_mode','no','no'),(2501,'woocommerce_enable_coupons','yes','yes'),(2502,'woocommerce_calc_discounts_sequentially','no','no'),(2503,'woocommerce_enable_guest_checkout','yes','no'),(2504,'woocommerce_force_ssl_checkout','yes','yes'),(2505,'woocommerce_unforce_ssl_checkout','no','yes'),(2506,'woocommerce_cart_page_id','256','yes'),(2507,'woocommerce_checkout_page_id','257','yes'),(2508,'woocommerce_terms_page_id','','no'),(2509,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(2510,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(2511,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(889,'boldgrid_mobile_ratio','0:2','no'),(199,'boldgrid_editor','a:6:{s:19:\"has_flushed_rewrite\";b:1;s:12:\"updated_maps\";i:1;s:15:\"preview_page_id\";i:50;s:21:\"displayed_v1.3_notice\";i:1;s:13:\"custom_colors\";a:3:{i:0;s:17:\"rgba(202,82,21,0)\";i:1;s:20:\"rgba(202,82,21,0.12)\";i:2;s:17:\"rgba(202,82,21,0)\";}s:12:\"preview_meta\";a:2:{s:8:\"template\";s:7:\"default\";s:24:\"boldgrid_hide_page_title\";i:0;}}','yes'),(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:120:\"Congratulations, you\'ve just installed your new website! Below you\'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'),(115,'loginizer_version','1.3.8','yes'),(116,'loginizer_options','a:0:{}','yes'),(117,'loginizer_last_reset','1518005975','yes'),(118,'loginizer_whitelist','a:0:{}','yes'),(119,'loginizer_blacklist','a:0:{}','yes'),(120,'loginizer_ins_time','1517269974','yes'),(121,'loginizer_promo_time','1517269974','yes'),(139,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(124,'boldgrid_attribution_rebuild','a:0:{}','yes'),(125,'boldgrid_staging_boldgrid_attribution_rebuild','1','yes'),(126,'boldgrid_attribution_upgraded_to_cpt','1','yes'),(3286,'_site_transient_timeout_theme_roots','1517813229','no'),(3287,'_site_transient_theme_roots','a:4:{s:15:\"boldgrid-swifty\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(131,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1517271496;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(133,'smm_version','1.3.1','yes'),(134,'disable_smm','0','yes'),(135,'wpforms_shareasale_id','1587694','yes'),(136,'_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-4.9.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-4.9.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.2\";s:7:\"version\";s:5:\"4.9.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1517811429;s:15:\"version_checked\";s:5:\"4.9.2\";s:12:\"translations\";a:0:{}}','no'),(318,'boldgrid_gallery_current_version','1.5','yes'),(316,'boldgrid_customizer_first_use','2018-01-30 00:20:52','yes'),(3298,'_site_transient_timeout_boldgrid_plugins','1518034772','no'),(3299,'_site_transient_boldgrid_plugins','O:8:\"stdClass\":5:{s:21:\"boldgrid-inspirations\";O:8:\"stdClass\":26:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"1.5.4\";s:8:\"asset_id\";i:901997;s:12:\"release_date\";s:10:\"2018-02-06\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"4.9.4\";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:34661:\"<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:7484:\"{\"4.9.4\":{\"1.5.4\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[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]},\"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]},\"4.7.9\":{\"1.5.4\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[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]},\"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]},\"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]},\"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]},\"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]},\"4.6.10\":{\"1.5.4\":[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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]}}\";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:17:\"version_downloads\";i:11696;s:9:\"downloads\";i:612452;s:11:\"new_version\";s:5:\"1.5.4\";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:10:\"2018-02-06\";s:6:\"author\";s:68:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid.com </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:147:\"https://api.boldgrid.com/api/open/getAsset?key=cd2418f4f6230d38ecf9c3eb0ec44408&id=901997&installed_plugin_version=1.5.3&installed_wp_version=4.9.2\";}s:15:\"boldgrid-backup\";O:8:\"stdClass\":26:{s:5:\"title\";s:15:\"BoldGrid Backup\";s:7:\"version\";s:3:\"1.5\";s:8:\"asset_id\";i:842933;s:12:\"release_date\";s:10:\"2017-08-08\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"4.8.1\";s:8:\"sections\";a:4:{s:11:\"description\";s:89:\"<p>BoldGrid Backup provides WordPress backup and restoration with update protection.</p>\n\";s:12:\"installation\";s:182:\"<ol>\n<li><p>Upload the entire boldgrid-backup 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:7149:\"<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.3.12</h4>\n<ul>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n</ul>\n<h4>1.3.11</h4>\n<ul>\n<li>New feature: JIRA WPB-3262 Added auto-update settings for plugins and themes.</li>\n<li>Bug fix: JIRA WPB-3211 Skip node_modules paths when creating archives.</li>\n</ul>\n<h4>1.3.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3169 Fixed undefined property when pre-flight test fails.</li>\n<li>Bug fix: JIRA WPB-3168 Fixed an undefined index when home dir is not writable.</li>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n</ul>\n<h4>1.3.9</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</ul>\n<h4>1.3.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2981 After migrating a site via boldgrid-backup, the backup directory was not updated if invalid.</li>\n</ul>\n<h4>1.3.7</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-2915 Fixed check for system tar and zip.</li>\n<li>Bug fix: JIRA WPB-2907 Fixed method of locating home directory.</li>\n</ul>\n<h4>1.3.6</h4>\n<ul>\n<li>Update: JIRA WPB-2896 Show how long the site was paused for.</li>\n<li>Update: JIRA WPB-2897 Auto show move backups message.</li>\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.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2821 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n<li>Bug fix: JIRA WPB-2682 Backing up fails after 5 minutes.</li>\n</ul>\n<h4>1.3.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2755 Fixed missing link in email.</li>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Update: JIRA WPB-2733 Update support urls.</li>\n<li>Update: JIRA WPB-2672 Close session on gathering disk space api call.</li>\n<li>Bug fix: JIRA WPB-2756 Uncaught TypeError: wp.template is not a function.</li>\n</ul>\n<h4>1.3.3</h4>\n<ul>\n<li>Update: JIRA WPB-2714 Show backup limits to users.</li>\n<li>Update: JIRA WPB-2717 Misc notices.</li>\n<li>Update: JIRA WPB-2719 Disable backup now button.</li>\n<li>Update: JIRA WPB-2651 Prevent backup if account is too large.</li>\n</ul>\n<h4>1.3.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2657 Added double-quote encapsulation to password in mysqldump defaults file.</li>\n<li>Update: JIRA WPB-2637 Move backups when changing backup directory.</li>\n<li>Bug fix: Typo fix.</li>\n<li>Update: JIRA WPB-2652 Improve time to calculate disk space.</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-2584 Modify \'last created archive\' message with link to archives.</li>\n<li>Update: JIRA WPB-2585 Modify backup success message with link to settings.</li>\n<li>Update: JIRA WPB-2586 Modify BoldGrid Backup menus.</li>\n<li>Update: JIRA WPB-2589 Adjust display of preflight check.</li>\n<li>Update: JIRA WPB-2592 Free limitations to days of the week.</li>\n<li>Update: JIRA WPB-2595 Free limitations to retention.</li>\n<li>Update: JIRA WPB-2596 Standard tooltips.</li>\n<li>Update: JIRA WPB-2605 Add intro message to Archive page.</li>\n<li>Update: JIRA WPB-2607 Modify backup id section on archives page.</li>\n<li>Update: JIRA WPB-2608 Modify Backup Site messages.</li>\n<li>Update: JIRA WPB-2594 Cache disk space data.</li>\n<li>Update: JIRA WPB-2620 Add free / premium messages next to disk / db sizes.</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-2303 Added handling for restoration if site URL changed. Fixed upload button in Chrome.</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-2347 Fixed typo in archive deletion confirmation dialogue.</li>\n<li>Update: JIRA WPB-2368 Set version constant from plugin file.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2314 Fixed errors during deactivation.</li>\n<li>Bug fix: JIRA WPB-2311 Update class was not getting current plugin version.</li>\n<li>New feature: JIRA WPB-2280 Added the ability to upload a backup archive.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2199 Updates via adminajax now updates the rollback timer.</li>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2218 Fixed auto-update action hook.</li>\n<li>Rework: JIRA WPB-2209 Added a warning in the notice for restorations (may get logged-out).</li>\n<li>New feature: JIRA WPB-2211 Added XHProf for optional PHP profiling. Can be enabled in \"config.local.php\" by setting \"xhprof\" to true.</li>\n<li>Bug fix: JIRA WPB-2201 Changed restore and delete buttons to POST forms, to resolve issue with people reloading the restore URL.</li>\n<li>Rework: JIRA WPB-2197 Moved cron methods to a new class.</li>\n<li>Rework: JIRA WPB-2087 Reworked for translations.</li>\n<li>Bug fix: JIRA WPB-2087 Reworked error notices for restoration. Emptying archive list before updating after performing a backup.</li>\n<li>Bug fix: JIRA WPB-2200 Disabled backup and restore buttons after starting a restoration.</li>\n<li>Redesign: JIRA WPB-2188 Changed backup duration display seconds to 2 decimal places.</li>\n<li>Bug fix: JIRA WPB-2194 Removed homedir not writable notice; moved info to the functionality test page.</li>\n<li>Bug fix: JIRA WPB-2193 Removed add cron action on activation.</li>\n<li>Rework: JIRA WPB-2063 Settings page will now load if functionality test fails.</li>\n<li>Rework: JIRA WPB-2060 Cleanup for the rollback admin notice.</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Rework: JIRA WPB-1931 Removed notice for staged pending rollback.</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2079 Removed PHP SAPI check in cron script.</li>\n<li>New feature: JIRA WPB-2061 Made it possible to change siteurl and retain matched archives (backups made as of this update).</li>\n<li>Bug fix: JIRA WPB-2056 Restoration cron did not always complete.</li>\n<li>Bug fix: JIRA WPB-2055 Better aligned rollback countdown timer with cron job.</li>\n<li>Redesign: JIRA WPB-2053 Formatted the Functionality Test page.</li>\n<li>Bug fix: JIRA WPB-2052 Provided message for empty archive list.</li>\n<li>New feature: JIRA WPB-2062 Added setting for notification email address.</li>\n<li>New feature: JIRA WPB-2063 Added setting for backup directory.</li>\n<li>New feature: JIRA WPB-2064 Cancel auto-rollback if a restoration is performed.</li>\n<li>New feature: JIRA WPB-2060 Added Rollback Site Now button in the rollback notice.</li>\n<li>Bug fix: JIRA WPB-2057 Rollback information is now removed after timer reaches 0:00.</li>\n<li>New feature: JIRA WPB-2037 Added capability for auto-updates by BoldGrid API response.</li>\n<li>Bug fix: JIRA WPB-2054 Test for crontab now works when crontab is empty.</li>\n<li>Bug fix: JIRA WPB-2051 Now closing PHP session on backup, download, and restore, so that other PHP requests from the client may load.</li>\n<li>Testing: JIRA WPB-2046 Tested on WordPress 4.5.3.</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:2150:\"{\"4.8.1\":{\"1.5\":[100,95]},\"4.8\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.7.5\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.7.4\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.7.3\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.7.2\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.7.1\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.7\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.6.6\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.6.5\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.6.4\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.6.3\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.6.2\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.6.1\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.6\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.5.9\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.5.8\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.5.7\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.5.6\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.5.5\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.5.4\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.5.3\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.5.2\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.5.1\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.5\":{\"1.0\":[100,12],\"1.0.1\":[100,12],\"1.0.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.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.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.4.9\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.4.8\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.4.7\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.4.6\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.4.5\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]},\"4.4.10\":{\"1.3.11\":[100,95],\"1.3.12\":[100,95],\"1.5\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:4:{s:6:\"backup\";s:6:\"Backup\";s:7:\"restore\";s:7:\"Restore\";s:7:\"migrate\";s:7:\"Migrate\";s:9:\"migration\";s:9:\"Migration\";}s:7:\"banners\";a:2:{s:3:\"low\";s:52:\"//repo.boldgrid.com/assets/banner-backup-772x250.png\";s:4:\"high\";s:53:\"//repo.boldgrid.com/assets/banner-backup-1544x500.png\";}s:17:\"version_downloads\";i:2042;s:9:\"downloads\";i:3398;s:11:\"new_version\";s:3:\"1.5\";s:4:\"name\";s:15:\"BoldGrid Backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:17:\"short_description\";s:81:\"BoldGrid Backup provides WordPress backup and restoration with update protection.\";s:12:\"last_updated\";s:10:\"2017-08-08\";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:65:\"https://repo.boldgrid.com/assets/icon-boldgrid-backup-128x128.png\";s:2:\"2x\";s:65:\"https://repo.boldgrid.com/assets/icon-boldgrid-backup-256x256.png\";s:3:\"svg\";s:65:\"https://repo.boldgrid.com/assets/icon-boldgrid-backup-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=cd2418f4f6230d38ecf9c3eb0ec44408&id=842933&installed_wp_version=4.9.2\";}s:16:\"boldgrid-staging\";O:8:\"stdClass\":26:{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:10:\"2017-11-14\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"4.9\";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:17:\"version_downloads\";i:12210;s:9:\"downloads\";i:69512;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:10:\"2017-11-14\";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=cd2418f4f6230d38ecf9c3eb0ec44408&id=876738&installed_wp_version=4.9.2\";}s:16:\"boldgrid-gallery\";O:8:\"stdClass\":26:{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:10:\"2017-08-08\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"4.8.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:17:\"version_downloads\";i:9051;s:9:\"downloads\";i:27139;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:10:\"2017-08-08\";s:6:\"author\";s:68:\"<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:145:\"https://api.boldgrid.com/api/open/getAsset?key=cd2418f4f6230d38ecf9c3eb0ec44408&id=842930&installed_plugin_version=1.5&installed_wp_version=4.9.2\";}s:20:\"boldgrid-ninja-forms\";O:8:\"stdClass\":26:{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:10:\"2017-08-08\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"4.8.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:17:\"version_downloads\";i:8210;s:9:\"downloads\";i:36144;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:10:\"2017-08-08\";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=cd2418f4f6230d38ecf9c3eb0ec44408&id=842931&installed_wp_version=4.9.2\";}}','no'),(260,'boldgrid_survey','a:5:{s:8:\"blogname\";a:1:{s:5:\"value\";s:31:\"A Better Way Credit Enhancement\";}s:5:\"email\";a:1:{s:5:\"value\";s:30:\"abwcreditenhancement@gmail.com\";}s:5:\"phone\";a:1:{s:5:\"value\";s:12:\"610-386-7626\";}s:7:\"address\";a:1:{s:5:\"value\";s:36:\"1033 Manor Rd. Coatesville, PA 19320\";}s:6:\"social\";a:1:{s:8:\"facebook\";s:46:\"https://www.facebook.com/abwcreditenhancement/\";}}','yes'),(261,'boldgrid_install_options','a:19:{s:11:\"author_type\";N;s:11:\"language_id\";N;s:14:\"theme_group_id\";N;s:8:\"theme_id\";i:49;s:18:\"theme_version_type\";s:6:\"stable\";s:11:\"category_id\";i:3;s:14:\"subcategory_id\";i:19;s:11:\"page_set_id\";i:8;s:21:\"page_set_version_type\";s:6:\"stable\";s:3:\"pde\";b:0;s:8:\"new_path\";s:19:\"0634920001517270248\";s:13:\"ticket_number\";s:0:\"\";s:16:\"build_profile_id\";i:795218;s:12:\"custom_pages\";N;s:17:\"install_timestamp\";i:1517271452;s:15:\"subcategory_key\";s:11:\"Real Estate\";s:16:\"subcategory_name\";s:11:\"Real Estate\";s:15:\"is_base_pageset\";b:1;s:20:\"parent_category_name\";s:15:\"Home & Property\";}','yes'),(170,'can_compress_scripts','1','no'),(149,'_site_transient_timeout_browser_8597c1549407a10bd9cd13ed603d627b','1517874823','no'),(150,'_site_transient_browser_8597c1549407a10bd9cd13ed603d627b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"63.0.3239.132\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(151,'wpforms_review','a:2:{s:4:\"time\";i:1517270023;s:9:\"dismissed\";b:0;}','yes'),(152,'wpforms_activated','a:1:{s:4:\"lite\";i:1517270023;}','yes'),(3302,'_transient_doing_cron','1518005976.5593240261077880859375','yes'),(181,'boldgrid_api_key','cd2418f4f6230d38ecf9c3eb0ec44408','yes'),(180,'boldgrid_site_hash','c071a47821a7bd174ec7abffaa8102d5','yes'),(3300,'_site_transient_timeout_bg_license_data','1518092373','no'),(3301,'_site_transient_bg_license_data','O:8:\"stdClass\":4:{s:3:\"key\";s:64:\"TGIBE91b50XwOFzSR0RaCoHYO4Gz9YfqjVpmun5EzjH6B7o9RMOfOdhWznqH4JH2\";s:6:\"cipher\";s:11:\"AES-128-CBC\";s:2:\"iv\";s:24:\"fIaKXhSh7s11a4L0Tt6Inw==\";s:4:\"data\";s:128:\"bsDi/rGKzSv+d19Mw7wIKj10sDs7/hLRutyTkNEhy3WXylzIqbWd6c9UbEnlknIOI0e25oHmuX+j+s7IuCTYMWBRUawDVdiJMQBqCNXnWy5wquDgBICs43BeBYYX2TFR\";}','no'),(184,'boldgrid_asset','a:3:{s:6:\"plugin\";a:0:{}s:5:\"theme\";a:0:{}s:5:\"image\";a:17:{i:0;a:16:{s:8:\"asset_id\";s:6:\"819445\";s:9:\"coin_cost\";N;s:4:\"name\";s:168:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05pR2xCX0xhbGxZLzYwMHg4MDA_3D-imhwpb-orj4gtqfbkpy8j6.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:22\";s:11:\"attribution\";s:160:\"{\"license\":\"10\",\"author_username\":\"Rich Tervet\",\"author_url\":\"http:\\/\\/unsplash.com\\/@richtervet\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/NiGlB_LallY\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:26;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:1;a:16:{s:8:\"asset_id\";s:6:\"846372\";s:9:\"coin_cost\";N;s:4:\"name\";s:120:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate1-imhwpb-lw2mypfksh31plp.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:22\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:27;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:2;a:16:{s:8:\"asset_id\";s:6:\"846373\";s:9:\"coin_cost\";N;s:4:\"name\";s:120:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate2-imhwpb-lnmop8yupvu5pbk.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:23\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:28;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:3;a:16:{s:8:\"asset_id\";s:6:\"846374\";s:9:\"coin_cost\";N;s:4:\"name\";s:120:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate3-imhwpb-upr8glf9aenmrl2.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:23\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:29;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:4;a:16:{s:8:\"asset_id\";s:6:\"846375\";s:9:\"coin_cost\";N;s:4:\"name\";s:120:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate4-imhwpb-m22mx1hcw5g11xw.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:23\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:30;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:5;a:16:{s:8:\"asset_id\";s:6:\"846376\";s:9:\"coin_cost\";N;s:4:\"name\";s:120:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate5-imhwpb-cbrbej16d4zkq36.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:23\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:31;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:6;a:16:{s:8:\"asset_id\";s:6:\"846377\";s:9:\"coin_cost\";N;s:4:\"name\";s:120:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate6-imhwpb-fs51y7muehmi7cf.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:23\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:32;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:7;a:16:{s:8:\"asset_id\";s:6:\"846378\";s:9:\"coin_cost\";N;s:4:\"name\";s:120:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate7-imhwpb-5yuf2a2b5rsbeqw.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:23\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:33;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:8;a:16:{s:8:\"asset_id\";s:6:\"846379\";s:9:\"coin_cost\";N;s:4:\"name\";s:120:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:24\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:34;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:9;a:16:{s:8:\"asset_id\";s:6:\"846380\";s:9:\"coin_cost\";N;s:4:\"name\";s:120:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate9-imhwpb-rceqtlrktbcne9o.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:24\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:35;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:10;a:16:{s:8:\"asset_id\";s:6:\"819447\";s:9:\"coin_cost\";N;s:4:\"name\";s:174:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:24\";s:11:\"attribution\";s:182:\"{\"license\":\"10\",\"author_username\":\"Artificial Photography\",\"author_url\":\"http:\\/\\/unsplash.com\\/@artificialphotography\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/OFjLi0_LAKc\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:36;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:11;a:16:{s:8:\"asset_id\";s:6:\"819448\";s:9:\"coin_cost\";N;s:4:\"name\";s:174:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:24\";s:11:\"attribution\";s:170:\"{\"license\":\"10\",\"author_username\":\"Maarten van den Heuvel\",\"author_url\":\"http:\\/\\/unsplash.com\\/@mvdheuvel\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/iXDmSdfuc_w\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:37;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:\"836810\";s:9:\"coin_cost\";N;s:4:\"name\";s:168:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJVRTFnaXZEaVBNLzkwMHg0NTA_3D-imhwpb-7hl9crvlfyz98mo.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:25\";s:11:\"attribution\";s:153:\"{\"license\":\"10\",\"author_username\":\"PICSELI\",\"author_url\":\"http:\\/\\/unsplash.com\\/@picseli\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/2UE1givDiPM\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:38;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:13;a:16:{s:8:\"asset_id\";s:6:\"836811\";s:9:\"coin_cost\";N;s:4:\"name\";s:168:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZTTFBPTDlQd0I4LzkwMHg0NTA_3D-imhwpb-b43izdi82bn9cix.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:25\";s:11:\"attribution\";s:168:\"{\"license\":\"10\",\"author_username\":\"Gleren Meneghin\",\"author_url\":\"http:\\/\\/unsplash.com\\/@glerenmeneghin\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/VSLPOL9PwB8\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:39;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:14;a:16:{s:8:\"asset_id\";s:6:\"836812\";s:9:\"coin_cost\";N;s:4:\"name\";s:168:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05tVm5zcDEzSlljLzkwMHg0NTA_3D-imhwpb-13fv1nbn3coxe8l.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:25\";s:11:\"attribution\";s:159:\"{\"license\":\"10\",\"author_username\":\"Kimson Doan\",\"author_url\":\"http:\\/\\/unsplash.com\\/@yaykimmyd\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/NmVnsp13JYc\"}\";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:15;a:16:{s:8:\"asset_id\";s:6:\"836813\";s:9:\"coin_cost\";N;s:4:\"name\";s:166:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:25\";s:11:\"attribution\";s:162:\"{\"license\":\"10\",\"author_username\":\"Melanie Wasser\",\"author_url\":\"http:\\/\\/unsplash.com\\/@melwasser\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/uoGitFr0-qc\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:41;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:16;a:16:{s:8:\"asset_id\";s:6:\"836814\";s:9:\"coin_cost\";N;s:4:\"name\";s:166:\"/home/vqhost5/abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2018-01-30 00:18:25\";s:11:\"attribution\";s:171:\"{\"license\":\"10\",\"author_username\":\"Daniel von Appen\",\"author_url\":\"http:\\/\\/unsplash.com\\/@daniel_von_appen\",\"image_homepage\":\"http:\\/\\/unsplash.com\\/photos\\/2SKFY7zyE0Y\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:42;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;}}}','yes'),(185,'boldgrid_inspirations_current_version','1.5.3','no'),(187,'boldgrid_inspirations_activated_version','1.5.3','no'),(193,'recently_activated','a:3:{s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";i:1517431297;s:99:\"woocommerce-gateway-paypal-powered-by-braintree/woocommerce-gateway-paypal-powered-by-braintree.php\";i:1517431288;s:27:\"woocommerce/woocommerce.php\";i:1517431264;}','yes'),(2542,'woocommerce_admin_notices','a:0:{}','yes'),(2543,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(2544,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2545,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2546,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2547,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2548,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2549,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2550,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2551,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2552,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2553,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2554,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2555,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2557,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:12:\"post-trashed\";s:1:\"1\";s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;}','yes'),(2562,'_transient_timeout_external_ip_address_73.188.135.49','1518034999','no'),(2563,'_transient_external_ip_address_73.188.135.49','209.182.198.223','no'),(265,'boldgrid_theme_revision_Swifty','20180123150906-412','yes'),(266,'allowedthemes','a:1:{s:15:\"boldgrid-swifty\";b:1;}','no'),(267,'theme_mods_boldgrid-swifty','a:16:{s:18:\"_boldgrid_theme_id\";i:49;s:18:\"nav_menu_locations\";a:3:{s:7:\"primary\";i:2;s:6:\"social\";i:3;s:13:\"footer_center\";i:2;}s:13:\"bgtfw_version\";s:5:\"1.5.6\";s:20:\"force_scss_recompile\";a:2:{s:6:\"active\";b:0;s:7:\"staging\";b:1;}s:22:\"boldgrid_color_palette\";s:268:\"{\"state\":{\"active-palette\":\"palette-primary\",\"active-palette-id\":\"05171986c69cb80388854fc73050c541\",\"palettes\":{\"palette-primary\":{\"format\":\"palette-primary\",\"neutral-color\":\"#ffffff\",\"colors\":[\"#ca5215\",\"#333333\",\"#ca5215\",\"#333333\",\"#ffffff\"]}},\"saved_palettes\":[]}}\";s:22:\"boldgrid_palette_class\";s:15:\"palette-primary\";s:21:\"boldgrid_compiled_css\";s:13317:\".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:#fff}.color-3-text-contrast,.color-3-text-contrast-hover:hover{color:#fff ! important}.color4-text-default{color:#fff}.color-4-text-contrast,.color-4-text-contrast-hover:hover{color:#fff ! important}.color5-text-default{color:#333}.color-5-text-contrast,.color-5-text-contrast-hover:hover{color:#333 ! important}.color-neutral-text-default{color:#333}.color-neutral-text-contrast,.color-neutral-text-contrast-hover:hover{color:#333 ! important}.color1-color{color:#ca5215 ! important}.color1-color-hover:focus,.color1-color-hover:hover{color:#ca5215 ! important}.color2-color{color:#333 ! important}.color2-color-hover:focus,.color2-color-hover:hover{color:#333 ! important}.color3-color{color:#ca5215 ! important}.color3-color-hover:focus,.color3-color-hover:hover{color:#ca5215 ! important}.color4-color{color:#333 ! important}.color4-color-hover:focus,.color4-color-hover:hover{color:#333 ! important}.color5-color{color:#fff ! important}.color5-color-hover:focus,.color5-color-hover:hover{color:#fff ! important}.color-neutral-color{color:#fff !important}.color1-background{background:#ca5215 ! important}.color1-background-hover:focus,.color1-background-hover:hover{background:#ca5215 ! important}.color2-background{background:#333 ! important}.color2-background-hover:focus,.color2-background-hover:hover{background:#333 ! important}.color3-background{background:#ca5215 ! important}.color3-background-hover:focus,.color3-background-hover:hover{background:#ca5215 ! important}.color4-background{background:#333 ! important}.color4-background-hover:focus,.color4-background-hover:hover{background:#333 ! important}.color5-background{background:#fff ! important}.color5-background-hover:focus,.color5-background-hover:hover{background:#fff ! important}.color-neutral-background{background:#fff !important}.color1-background-color{background-color:#ca5215 ! important}.color1-background-color-hover:focus,.color1-background-color-hover:hover{background-color:#ca5215 ! important}.color2-background-color{background-color:#333 ! important}.color2-background-color-hover:focus,.color2-background-color-hover:hover{background-color:#333 ! important}.color3-background-color{background-color:#ca5215 ! important}.color3-background-color-hover:focus,.color3-background-color-hover:hover{background-color:#ca5215 ! important}.color4-background-color{background-color:#333 ! important}.color4-background-color-hover:focus,.color4-background-color-hover:hover{background-color:#333 ! important}.color5-background-color{background-color:#fff ! important}.color5-background-color-hover:focus,.color5-background-color-hover:hover{background-color:#fff ! important}.color-neutral-background-color{background-color:#fff !important}.color1-border-color{border-color:#ca5215 ! important}.color1-border-color-hover:focus,.color1-border-color-hover:hover{border-color:#ca5215 ! important}.color2-border-color{border-color:#333 ! important}.color2-border-color-hover:focus,.color2-border-color-hover:hover{border-color:#333 ! important}.color3-border-color{border-color:#ca5215 ! important}.color3-border-color-hover:focus,.color3-border-color-hover:hover{border-color:#ca5215 ! important}.color4-border-color{border-color:#333 ! important}.color4-border-color-hover:focus,.color4-border-color-hover:hover{border-color:#333 ! important}.color5-border-color{border-color:#fff ! important}.color5-border-color-hover:focus,.color5-border-color-hover:hover{border-color:#fff ! important}.color-neutral-border-color{border-color:#fff !important}.breadcrumb li a.filler{background:#333;color:#fff}.breadcrumb li a.filler:after{border-left-color:#333}.breadcrumb li a:not(.filler){color:#fff}.breadcrumb li a:not(.filler):after{border-left-color:#ca5215 !important}.breadcrumb li a:not(.filler):hover,.breadcrumb li a:not(.filler):focus{background:#333;color:#fff}.breadcrumb li a:not(.filler):hover:after,.breadcrumb li a:not(.filler):focus:after{border-left-color:#333 !important;color:#fff}.woocommerce div.product .stock,.woocommerce div.product span.price,.woocommerce div.product p.price{color:#ca5215}.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:#ca5215;color:#fff}.wc-image-links .gallery-caption > *,.wc-gallery-captions-show .gallery-caption > *,.wc-gallery-captions-onhover .gallery-caption > *,.wc-gallery-captions-showon .gallery-caption > *{color:#fff}.btn-color-1,.palette-primary .button-primary,.palette-primary .woocommerce .button,.btn-color-1-flat{background-color:#ca5215;border-color:#ca5215;color:#fff !important}.btn-color-1:visited,.palette-primary .button-primary:visited,.palette-primary .woocommerce .button:visited,.btn-color-1-flat:visited{color:#fff}.btn-color-1:hover,.palette-primary .button-primary:hover,.palette-primary .woocommerce .button:hover,.btn-color-1-flat:hover,.btn-color-1:focus,.palette-primary .button-primary:focus,.palette-primary .woocommerce .button:focus,.btn-color-1-flat:focus{background-color:#e96a29;border-color:#e96a29;color:#fff !important}.btn-color-1:active,.palette-primary .button-primary:active,.palette-primary .woocommerce .button:active,.btn-color-1-flat:active,.btn-color-1.active,.palette-primary .button-primary.active,.palette-primary .woocommerce .button.active,.btn-color-1-flat.active,.btn-color-1.is-active,.palette-primary .button-primary.is-active,.palette-primary .woocommerce .button.is-active,.btn-color-1-flat.is-active{background-color:#bf5620;border-color:#bf5620;color:#9c3f10 !important}.btn-color-2,.palette-primary .button-secondary,.palette-primary .woocommerce .alt.button,.btn-color-2-flat{background-color:#333;border-color:#333;color:#fff !important}.btn-color-2:visited,.palette-primary .button-secondary:visited,.palette-primary .woocommerce .alt.button:visited,.btn-color-2-flat:visited{color:#fff}.btn-color-2:hover,.palette-primary .button-secondary:hover,.palette-primary .woocommerce .alt.button:hover,.btn-color-2-flat:hover,.btn-color-2:focus,.palette-primary .button-secondary:focus,.palette-primary .woocommerce .alt.button:focus,.btn-color-2-flat:focus{background-color:#4d4d4d;border-color:#4d4d4d;color:#fff !important}.btn-color-2:active,.palette-primary .button-secondary:active,.palette-primary .woocommerce .alt.button:active,.btn-color-2-flat:active,.btn-color-2.active,.palette-primary .button-secondary.active,.palette-primary .woocommerce .alt.button.active,.btn-color-2-flat.active,.btn-color-2.is-active,.palette-primary .button-secondary.is-active,.palette-primary .woocommerce .alt.button.is-active,.btn-color-2-flat.is-active{background-color:#333;border-color:#333;color:#1a1a1a !important}.btn-color-3,.btn-color-3-flat{background-color:#ca5215;border-color:#ca5215;color:#fff !important}.btn-color-3:visited,.btn-color-3-flat:visited{color:#fff}.btn-color-3:hover,.btn-color-3-flat:hover,.btn-color-3:focus,.btn-color-3-flat:focus{background-color:#e96a29;border-color:#e96a29;color:#fff !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:#bf5620;border-color:#bf5620;color:#9c3f10 !important}.btn-color-4,.btn-color-4-flat{background-color:#333;border-color:#333;color:#fff !important}.btn-color-4:visited,.btn-color-4-flat:visited{color:#fff}.btn-color-4:hover,.btn-color-4-flat:hover,.btn-color-4:focus,.btn-color-4-flat:focus{background-color:#4d4d4d;border-color:#4d4d4d;color:#fff !important}.btn-color-4:active,.btn-color-4-flat:active,.btn-color-4.active,.btn-color-4-flat.active,.btn-color-4.is-active,.btn-color-4-flat.is-active{background-color:#333;border-color:#333;color:#1a1a1a !important}.btn-color-5,.btn-color-5-flat{background-color:#fff;border-color:#fff;color:#333 !important}.btn-color-5:visited,.btn-color-5-flat:visited{color:#333}.btn-color-5:hover,.btn-color-5-flat:hover,.btn-color-5:focus,.btn-color-5-flat:focus{background-color:#fff;border-color:#fff;color:#333 !important}.btn-color-5:active,.btn-color-5-flat:active,.btn-color-5.active,.btn-color-5-flat.active,.btn-color-5.is-active,.btn-color-5-flat.is-active{background-color:#fff;border-color:#fff;color:#e6e6e6 !important}.btn-neutral-color,.btn-neutral-color-flat{background-color:#fff;border-color:#fff;color:#333 !important}.btn-neutral-color:visited,.btn-neutral-color-flat:visited{color:#333}.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:#333 !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{background:#fff;color:#333;}.palette-primary h1,.palette-primary h2,.palette-primary h3,.palette-primary h4,.palette-primary h5,.palette-primary h6,.palette-primary caption{color:#333}.palette-primary .site-title a{color:#333}.palette-primary a,.palette-primary .link-primary{color:#ca5215}.palette-primary .link-secondary{color:#333}.palette-primary hr{border-top:1px solid #333}.palette-primary blockquote,.palette-primary .mod-blockquote{border-left:5px solid #333}.palette-primary #primary-navbar a,.palette-primary #secondary-menu a,.palette-primary #tertiary-menu a,.palette-primary #menu-social-items a,.palette-primary #footer-center-menu a{color:#333}.palette-primary #primary-navbar .current-menu-item a,.palette-primary #secondary-menu .current-menu-item a,.palette-primary #tertiary-menu .current-menu-item a,.palette-primary #menu-social-items .current-menu-item a,.palette-primary #footer-center-menu .current-menu-item a,.palette-primary #primary-navbar a:hover,.palette-primary #secondary-menu a:hover,.palette-primary #tertiary-menu a:hover,.palette-primary #menu-social-items a:hover,.palette-primary #footer-center-menu a:hover,.palette-primary #primary-navbar a:focus,.palette-primary #secondary-menu a:focus,.palette-primary #tertiary-menu a:focus,.palette-primary #menu-social-items a:focus,.palette-primary #footer-center-menu a:focus{color:#ca5215}.palette-primary #primary-navbar .current-menu-item a{background:none}.palette-primary #primary-navbar .current-menu-parent > a{background:none;color:#ca5215}.palette-primary .dropdown-menu,.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,.palette-primary .navbar-default .navbar-nav .open .dropdown-menu > li > a,.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 .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{background:#fff;color:#333}.palette-primary .navbar-default .navbar-toggle{background:#fff;border-color:#ca5215}.palette-primary .navbar-default .navbar-toggle .icon-bar{background-color:#333}.palette-primary .navbar-default .navbar-toggle:hover,.palette-primary .navbar-default .navbar-toggle:focus{background:#ca5215}.palette-primary .navbar-default .navbar-toggle:hover .icon-bar,.palette-primary .navbar-default .navbar-toggle:focus .icon-bar{background-color:#fff}.palette-primary .has-submenu .sub-arrow:hover,.palette-primary .has-submenu .sub-arrow:focus{color:#fff}.palette-primary .panel,.palette-primary .panel-body,.palette-primary .panel-footer,.palette-primary .panel-default > .panel-heading{background-color:#fff;color:#333}.palette-primary .panel-default > .panel-heading .media-heading{color:#ca5215}.palette-primary.archive .site-content,.palette-primary.archive .site-header,.palette-primary.archive .site-footer,.palette-primary.single .site-content,.palette-primary.single .site-header,.palette-primary.single .site-footer,.palette-primary.blog .site-content,.palette-primary.blog .site-header,.palette-primary.blog .site-footer{background:#fff;color:#333}.palette-primary .well{background:#fff;color:#333}.palette-primary .widget.well a{color:#333}.palette-primary .widget.well a:hover,.palette-primary .widget.well a:focus{background:none}.palette-primary .widget_calendar .table-striped > tbody > tr:nth-of-type(2n+1){background-color:#333;color:#fff}.palette-primary .widget_calendar #today{color:#ca5215}.palette-primary #reviews #comments ol.commentlist li .meta{color:#333}.palette-primary #reviews #comments ol.commentlist li .comment-text{border:1px solid #333}.palette-primary mark,.palette-primary .mark{background:#ca5215;color:#fff}.palette-primary.disabled-footer .site-footer{background:#fff;color:#333}\";s:18:\"custom_css_post_id\";i:-1;s:31:\"hide_special_thanks_attribution\";b:0;s:32:\"boldgrid_contact_details_setting\";a:4:{i:0;a:1:{s:13:\"contact_block\";s:39:\"© 2018 A Better Way Credit Enhancement\";}i:1;a:1:{s:13:\"contact_block\";s:36:\"1033 Manor Rd. Coatesville, PA 19320\";}i:2;a:1:{s:13:\"contact_block\";s:12:\"610-386-7626\";}i:3;a:1:{s:13:\"contact_block\";s:30:\"abwcreditenhancement@gmail.com\";}}s:20:\"boldgrid_font_toggle\";b:1;s:16:\"logo_font_family\";s:11:\"Linden Hill\";s:14:\"logo_font_size\";s:2:\"36\";s:26:\"logo_text_decoration_hover\";s:4:\"none\";s:25:\"hide_boldgrid_attribution\";b:1;s:26:\"hide_wordpress_attribution\";b:1;}','yes'),(268,'current_theme','Swifty','yes'),(269,'theme_switched','','yes'),(304,'boldgrid_widgets_created','a:0:{}','yes'),(272,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1517811432;s:7:\"checked\";a:4:{s:15:\"boldgrid-swifty\";s:5:\"1.1.1\";s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.4\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(2573,'woocommerce_product_type','virtual','yes'),(2574,'woocommerce_allow_tracking','yes','yes'),(2575,'woocommerce_tracker_last_send','1517430482','yes'),(2583,'woocommerce_stripe_settings','a:3:{s:7:\"enabled\";s:3:\"yes\";s:14:\"create_account\";N;s:5:\"email\";s:20:\"fcurtis@vqhosted.com\";}','yes'),(2587,'wc_braintree_version','2.1.1','yes'),(2585,'woocommerce_braintree_paypal_settings','a:1:{s:7:\"enabled\";s:3:\"yes\";}','yes'),(2586,'woocommerce_paypal_settings','a:2:{s:7:\"enabled\";s:2:\"no\";s:5:\"email\";b:0;}','yes'),(3292,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1517811431;s:8:\"response\";a:1:{s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":11:{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.4.3\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/wpforms-lite.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-128x128.png?rev=1371112\";s:2:\"2x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-256x256.png?rev=1371112\";s:7:\"default\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-256x256.png?rev=1371112\";}s:7:\"banners\";a:3:{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:7:\"default\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=1371112\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{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.0.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.2.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:7:\"default\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";s:7:\"default\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}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.5.1\";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.5.1.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-easy-seo/assets/icon-128x128.png?rev=1773296\";s:2:\"2x\";s:70:\"https://ps.w.org/boldgrid-easy-seo/assets/icon-256x256.png?rev=1773296\";s:7:\"default\";s:70:\"https://ps.w.org/boldgrid-easy-seo/assets/icon-256x256.png?rev=1773296\";}s:7:\"banners\";a:3:{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:7:\"default\";s:73:\"https://ps.w.org/boldgrid-easy-seo/assets/banner-1544x500.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:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:7:\"default\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";s:7:\"default\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"loginizer/loginizer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/loginizer\";s:4:\"slug\";s:9:\"loginizer\";s:6:\"plugin\";s:23:\"loginizer/loginizer.php\";s:11:\"new_version\";s:5:\"1.3.8\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/loginizer/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/loginizer.1.3.8.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:62:\"https://ps.w.org/loginizer/assets/icon-128x128.png?rev=1381093\";s:2:\"2x\";s:62:\"https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093\";s:7:\"default\";s:62:\"https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:65:\"https://ps.w.org/loginizer/assets/banner-1544x500.jpg?rev=1517954\";s:2:\"1x\";s:64:\"https://ps.w.org/loginizer/assets/banner-772x250.jpg?rev=1517954\";s:7:\"default\";s:65:\"https://ps.w.org/loginizer/assets/banner-1544x500.jpg?rev=1517954\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"paypal-payment-button-by-vcita/Livesite.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:44:\"w.org/plugins/paypal-payment-button-by-vcita\";s:4:\"slug\";s:30:\"paypal-payment-button-by-vcita\";s:6:\"plugin\";s:43:\"paypal-payment-button-by-vcita/Livesite.php\";s:11:\"new_version\";s:5:\"3.8.2\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/paypal-payment-button-by-vcita/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/paypal-payment-button-by-vcita.3.8.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:83:\"https://ps.w.org/paypal-payment-button-by-vcita/assets/icon-128x128.jpg?rev=1729706\";s:7:\"default\";s:83:\"https://ps.w.org/paypal-payment-button-by-vcita/assets/icon-128x128.jpg?rev=1729706\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:85:\"https://ps.w.org/paypal-payment-button-by-vcita/assets/banner-772x250.jpg?rev=1670409\";s:7:\"default\";s:85:\"https://ps.w.org/paypal-payment-button-by-vcita/assets/banner-772x250.jpg?rev=1670409\";}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:5:\"1.6.3\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/post-and-page-builder/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.6.3.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-128x128.png?rev=1768477\";s:2:\"2x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-256x256.png?rev=1768477\";s:7:\"default\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-256x256.png?rev=1768477\";}s:7:\"banners\";a:3:{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:7:\"default\";s:77:\"https://ps.w.org/post-and-page-builder/assets/banner-1544x500.png?rev=1768477\";}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:\"1.5.3\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:149:\"https://wp-assets.boldgrid.com/api/asset/get?key=cd2418f4f6230d38ecf9c3eb0ec44408&id=886934&installed_plugin_version=1.5.3&installed_wp_version=4.9.2\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":5:{s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:116:\"https://api.boldgrid.com/api/open/getAsset?key=cd2418f4f6230d38ecf9c3eb0ec44408&id=842933&installed_wp_version=4.9.2\";}s:37:\"boldgrid-staging/boldgrid-staging.php\";O:8:\"stdClass\":5:{s:6:\"plugin\";s:37:\"boldgrid-staging/boldgrid-staging.php\";s:4:\"slug\";s:16:\"boldgrid-staging\";s:11:\"new_version\";s:5:\"1.5.1\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:116:\"https://api.boldgrid.com/api/open/getAsset?key=cd2418f4f6230d38ecf9c3eb0ec44408&id=876738&installed_wp_version=4.9.2\";}s:31:\"boldgrid-gallery/wc-gallery.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:16:\"boldgrid-gallery\";s:6:\"plugin\";s:31:\"boldgrid-gallery/wc-gallery.php\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:115:\"https://wp-assets.boldgrid.com/api/open/get-asset?id=842930&installed_plugin_version=1.5&installed_wp_version=4.9.2\";}s:36:\"boldgrid-ninja-forms/ninja-forms.php\";O:8:\"stdClass\":5:{s:6:\"plugin\";s:36:\"boldgrid-ninja-forms/ninja-forms.php\";s:4:\"slug\";s:20:\"boldgrid-ninja-forms\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:116:\"https://api.boldgrid.com/api/open/getAsset?key=cd2418f4f6230d38ecf9c3eb0ec44408&id=842931&installed_wp_version=4.9.2\";}}}','no'),(2689,'livesite_plugin_settings','a:6:{s:11:\"main_module\";s:8:\"payments\";s:15:\"plugin_upgraded\";b:0;s:7:\"modules\";a:4:{s:8:\"payments\";a:12:{s:6:\"active\";b:1;s:4:\"path\";s:20:\"modules/payments.php\";s:4:\"icon\";s:10:\"icon-Money\";s:5:\"title\";s:15:\"Payments Button\";s:10:\"main_title\";s:15:\"Online Payments\";s:4:\"text\";s:56:\"Offer your clients a simple way to pay for your services\";s:4:\"slug\";s:5:\"ls_pm\";s:14:\"custom_page_id\";b:0;s:17:\"custom_page_title\";s:10:\"Pay Online\";s:19:\"custom_page_content\";a:4:{i:0;s:134:\"<strong>You are invited to securely pay online using any Credit Card or PayPal. Simply fill in the form below.</strong> [livesite-pay]\";i:1;s:243:\"<p>We accept online payments!</p><p>You may pay securely using any Credit Card or PayPal account.<br>Please use the form below to complete your payment. A confirmation email will be sent to you once the charge has been made.</p> [livesite-pay]\";i:2;s:101:\"<strong>Make a payment using our secure and convenient online payment system.</strong> [livesite-pay]\";i:3;s:128:\"<strong>We invite you to make a secure online payment.<br>To get started, please fill up the form below:</strong> [livesite-pay]\";}s:30:\"custom_page_previously_created\";b:1;s:16:\"module_tray_text\";a:2:{s:6:\"active\";s:27:\"Customize your payment form\";s:8:\"disabled\";s:39:\"Add online payment options to your site\";}}s:15:\"livesite_widget\";a:10:{s:6:\"active\";b:1;s:4:\"path\";s:27:\"modules/livesite_widget.php\";s:4:\"icon\";s:13:\"icon-Livesite\";s:5:\"title\";s:15:\"LiveSite Widget\";s:10:\"main_title\";s:15:\"Livesite Widget\";s:4:\"text\";s:65:\"Encourage clients to take actions and capture twice as many leads\";s:4:\"slug\";s:5:\"ls_lw\";s:14:\"custom_page_id\";b:0;s:13:\"show_livesite\";b:1;s:16:\"module_tray_text\";a:2:{s:6:\"active\";s:36:\"Customize your lead capturing widget\";s:8:\"disabled\";s:0:\"\";}}s:12:\"form_builder\";a:12:{s:6:\"active\";b:0;s:4:\"path\";s:24:\"modules/form_builder.php\";s:4:\"icon\";s:14:\"icon-File-Edit\";s:5:\"title\";s:12:\"Contact Form\";s:10:\"main_title\";s:12:\"Contact Form\";s:4:\"text\";s:61:\"Create beautiful forms using a simple Drag &amp; Drop editor.\";s:4:\"slug\";s:5:\"ls_cf\";s:14:\"custom_page_id\";b:0;s:17:\"custom_page_title\";s:10:\"Contact Us\";s:19:\"custom_page_content\";a:4:{i:0;s:126:\"<strong>Fill in the form below and we will get in touch as soon as we can.</strong> [livesite-contact title=\"Contact request\"]\";i:1;s:278:\"<strong>We are always interested to hear from anyone who wishes to get in touch with us. Please fill up the contact form below and we\'ll get back to you soon. A confirmation email will be sent to you once the message was sent.</strong> [livesite-contact title=\"Contact request\"]\";i:2;s:163:\"<strong>Feel free to contact our team with your inquiries, by using the contact management software form below:</strong> [livesite-contact title=\"Contact request\"]\";i:3;s:130:\"<strong>Please complete the contact form below to schedule time with our team.</strong> [livesite-contact title=\"Contact request\"]\";}s:30:\"custom_page_previously_created\";b:0;s:16:\"module_tray_text\";a:2:{s:6:\"active\";s:27:\"Customize your contact form\";s:8:\"disabled\";s:31:\"Add a contact form to your site\";}}s:9:\"scheduler\";a:12:{s:6:\"active\";b:0;s:4:\"path\";s:21:\"modules/scheduler.php\";s:4:\"icon\";s:13:\"icon-Calendar\";s:5:\"title\";s:9:\"Scheduler\";s:10:\"main_title\";s:21:\"Appointment Scheduler\";s:4:\"text\";s:52:\"Self service appointment scheduling for your clients\";s:4:\"slug\";s:5:\"ls_sc\";s:14:\"custom_page_id\";b:0;s:17:\"custom_page_title\";s:16:\"Book Appointment\";s:19:\"custom_page_content\";a:4:{i:0;s:179:\"<strong>We invite you to schedule an appointment online. See our available time below and pick a time that works best for you.</strong> [livesite-schedule title=\"Contact request\"]\";i:1;s:114:\"<strong>Use this calendar to schedule an appointment with us.</strong> [livesite-schedule title=\"Contact request\"]\";i:2;s:114:\"<strong>Please use the below CRM Software to reach out to us.</strong> [livesite-schedule title=\"Contact request\"]\";i:3;s:158:\"<strong>Use our Online Scheduling system to book an appointment, request a service or schedule a meeting.</strong> [livesite-schedule title=\"Contact request\"]\";}s:30:\"custom_page_previously_created\";b:0;s:16:\"module_tray_text\";a:2:{s:6:\"active\";s:33:\"Customize your scheduling options\";s:8:\"disabled\";s:34:\"Add online scheduling to your site\";}}}s:15:\"vcita_connected\";b:1;s:12:\"vcita_params\";a:10:{s:7:\"success\";s:1:\"1\";s:3:\"uid\";s:16:\"pyo2chsp2xywxer6\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:5:\"title\";s:0:\"\";s:18:\"confirmation_token\";s:20:\"pazy5sb6e2yrQCSwjxFK\";s:9:\"confirmed\";s:4:\"true\";s:12:\"engage_delay\";s:1:\"5\";s:18:\"implementation_key\";s:20:\"f58dfaf6395fc648ede9\";s:5:\"email\";s:30:\"abwcreditenhancement@gmail.com\";}s:26:\"plugin_initially_activated\";b:1;}','yes'),(3149,'_transient_is_multi_author','0','yes'),(3290,'_site_transient_timeout_boldgrid_gallery_version_data','1517840231','no'),(3291,'_site_transient_boldgrid_gallery_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\":15:{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:10:\"2017-08-08\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"4.8.1\";s:8:\"sections\";s:3824:\"{\"description\":\"<p>BoldGrid Gallery is a standalone plugin used for slideshows and galleries.<\\/p>\\n\",\"installation\":\"<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\",\"changelog\":\"<h4>1.5<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.3<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-3292   Updated plugin URI.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3161   Fixed auto plugin update.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.1<\\/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>Update:       JIRA WPB-3112   Updated wc-gallery: 1.52 => 1.55.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2912   Fixed issue when installing plugins from the Tools Import page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.1<\\/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>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\\n<h4>1.3<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump Version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.3<\\/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>Update:       JIRA WPB-2368   Version constant is now set from plugin file.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2310   Removed broken plugin Settings link.  Pending review on WPB-2309.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.1<\\/h4>\\n\\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\\n<h4>1.2<\\/h4>\\n\\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\\n<h4>1.1.2<\\/h4>\\n\\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\\n<h4>1.1.1<\\/h4>\\n\\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\\n<h4>1.1.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1816   Fixed update class interference with the Add Plugins page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1<\\/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<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\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\\n<h4>1.0.3<\\/h4>\\n\\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\\n<h4>1.0.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Changed <strong>DIR<\\/strong> to dirname( <strong>FILE<\\/strong> ) for PHP &lt;=5.2.<\\/li>\\n<li>Misc          JIRA WPB-1468   Updated readme.txt for Tested up to: 4.4.1<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1363   Updated readme.txt for WordPress standards.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0<\\/h4>\\n\\n<ul>\\n<li>Initial public release.<\\/li>\\n<\\/ul>\\n\",\"upgrade_notice\":\"\\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\";s:83:\"{\"gallery\":\"Gallery\",\"slider\":\"Slider\",\"slideshow\":\"Slideshow\",\"masonry\":\"Masonry\"}\";s:7:\"banners\";s:127:\"{\"low\":\"//repo.boldgrid.com/assets/banner-gallery-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-gallery-1544x500.png\"}\";s:17:\"version_downloads\";i:8944;s:9:\"downloads\";i:27032;}}s:7:\"updated\";i:1517811431;}','no'),(275,'boldgrid_installed_page_ids','a:3:{i:345;i:18;i:356;i:20;i:367;i:22;}','yes'),(276,'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'),(294,'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:\"345\";s:16:\"page_revision_id\";s:4:\"3882\";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:4228:\"\n<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h2 class=\"h1 color2-color\" style=\"text-align: center;\">AT SWIFTY REALTY, YOUR PRIORITIES COME FIRST. WE\'RE HAPPY WHEN YOU\'RE HAPPY.</h2>\r\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"listings\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12\">\r\n<div></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: 125px; padding-bottom: 150px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n\r\n<img class=\"aligncenter size-full wp-image-26\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05pR2xCX0xhbGxZLzYwMHg4MDA_3D-imhwpb-orj4gtqfbkpy8j6.jpg\" alt=\"ctAsm_deVVk\" data-imhwpb-asset-id=\"819445\" width=\"600\" height=\"800\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<h2>About\r\nSwifty Realty</h2>\r\nAt Swifty Realty, we put the customer\'s needs before our own. We make your transaction, whether it\'s buying, selling, renting, or investing, a truly extraordinary experience. For almost three decades, Swifty Realty has set the benchmark for real estate service. Our agents have access to more tools and resources than any other real estate firm.\r\n\r\n<a class=\"button-primary\" href=\"listings\">View Collection</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb.jpg\'); background-size: cover; background-position: 50% 100%;\" data-imhwpb-asset-id=\"819448\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 125px; padding-bottom: 150px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-4 col-xs-8 col-sm-6\">\r\n<h2 class=\"color2-color\">MODERN OASIS</h2>\r\n<p class=\"color2-color\">Swifty Realty was founded in 2010 and has emerged as one of the most transcendent forces in luxury residential real estate. Our ability to successfully identify and understand the needs of clients has established Swifty Realty as a leading industry authority.</p>\r\n<p class=\"color2-color\">We work endlessly to hone skills, continuously striving for perfection, sweating over every technical detail, always ready to take on new challenges.</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-4 col-sm-6\"></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: 125px; padding-bottom: 75px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<h2 style=\"text-align: center;\">DISCOVER YOUR NEXT HOME</h2>\r\n<p style=\"text-align: center;\">We look forward to hearing from you.</p>\r\n[gallery targetsize=\"full\" captions=\"hide\" bottomspace=\"ten\" gutterwidth=\"10\" link=\"file\" size=\"full\"     ids=\"27,28,29,30,31,32,33,34,35\"           data-imhwpb-assets=\'846372,846373,846374,846375,846376,846377,846378,846379,846380\' ]\r\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"listings\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-2 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\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:\"49\";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: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:3:\"356\";s:16:\"page_revision_id\";s:4:\"3785\";s:10:\"page_title\";s:8:\"Listings\";s:9:\"page_slug\";s:8:\"listings\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:4424:\"\n<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 50px; padding-top: 50px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Contact One of Our Real Estate Agents</h2>\r\n<p class=\"\" style=\"font-size: 5px;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"contact-us\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-12 col-xs-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\" style=\"padding-top: 50px; padding-bottom: 50px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-38\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJVRTFnaXZEaVBNLzkwMHg0NTA_3D-imhwpb-7hl9crvlfyz98mo.jpg\" width=\"900\" height=\"450\" data-imhwpb-asset-id=\"836810\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n<p class=\"\"><strong>$200,000</strong></p>\r\n123 Elm St, City, ST 12345\r\n\r\nNeighborhood\r\nDescription of Property\r\n\r\n<strong>3</strong> Bedrooms\r\n\r\n<strong>2</strong> Baths\r\n\r\n<strong>1,300</strong> sq ft.\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n\r\n<strong>Features and Amenities:</strong>\r\n<ul><li>Cooling features: Central A/C</li>\r\n 	<li>Attic</li>\r\n 	<li>Cable Ready</li>\r\n 	<li>Carpet</li>\r\n 	<li>Bedroom</li>\r\n 	<li>Inclusions: Dishwasher, Washer</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\" style=\"padding-top: 50px; padding-bottom: 50px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-39\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZTTFBPTDlQd0I4LzkwMHg0NTA_3D-imhwpb-b43izdi82bn9cix.jpg\" width=\"900\" height=\"450\" data-imhwpb-asset-id=\"836811\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n<p class=\"\"><strong>$200,000</strong></p>\r\n<p class=\"\">123 Elm St, City, ST 12345</p>\r\n<p class=\"\">Neighborhood\r\nDescription of Property</p>\r\n<p class=\"\"><strong>3</strong> Bedrooms</p>\r\n<p class=\"\"><strong>2</strong> Baths</p>\r\n<p class=\"\"><strong>1,300</strong> sq ft.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n<p class=\"\"><strong>Features and Amenities:</strong></p>\r\n\r\n<ul class=\"\"><li>Cooling features: Central A/C</li>\r\n 	<li>Attic</li>\r\n 	<li>Cable Ready</li>\r\n 	<li>Carpet</li>\r\n 	<li>Bedroom</li>\r\n 	<li>Inclusions: Dishwasher, Washer</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\" style=\"padding-top: 50px; padding-bottom: 50px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-40\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05tVm5zcDEzSlljLzkwMHg0NTA_3D-imhwpb-13fv1nbn3coxe8l.jpg\" width=\"900\" height=\"450\" data-imhwpb-asset-id=\"836812\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n\r\n<strong>$200,000</strong>\r\n\r\n123 Elm St, City, ST 12345\r\n\r\nNeighborhood\r\nDescription of Property\r\n\r\n<strong>3</strong> Bedrooms\r\n\r\n<strong>2</strong> Baths\r\n\r\n<strong>1,300</strong> sq ft.\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n\r\n<strong>Features and Amenities:</strong>\r\n<ul><li>Cooling features: Central A/C</li>\r\n 	<li>Attic</li>\r\n 	<li>Cable Ready</li>\r\n 	<li>Carpet</li>\r\n 	<li>Bedroom</li>\r\n 	<li>Inclusions: Dishwasher, Washer</li>\r\n</ul></div>\r\n</div>\r\n</div>\r\n</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:1:\"2\";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:3:\"367\";s:16:\"page_revision_id\";s:4:\"4062\";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:1645:\"\n<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836814\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 400px;\"></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: 50px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<h3 style=\"font-size: 32px;\">Book A Session</h3>\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h3 style=\"font-size: 32px;\">Things To Know</h3>\r\nIt takes special people with a knack for seeing the image before it even occurs. That\'s what we do. Our team tailor makes your images to fit your personality and needs, each and every time.\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> &nbsp; PHONE</h4>\r\n<p>610-386-7626</p>\r\n\r\n<h4 class=\"\" data-font-class=\"bg-font-family-alt\"><i class=\"fa fa-1x fa-envelope\"><!-- icon --></i> &nbsp; EMAIL</h4>\r\n<p><a href=\"mailto:abwcreditenhancement@gmail.com\">abwcreditenhancement@gmail.com</a></p>\r\n\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> &nbsp; ADDRESS</h4>\r\n<p>1033 Manor Rd. Coatesville, PA 19320</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:\"3\";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'),(297,'boldgrid_has_built_site','yes','yes'),(298,'boldgrid_show_tip_start_editing','yes','yes'),(306,'boldgrid_framework_init','1','yes'),(303,'boldgrid_easy_seo_version','1.5.1','no'),(2537,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(3303,'_site_transient_timeout_boldgrid_api_data','1518034784','no'),(3304,'_site_transient_boldgrid_api_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\":21:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"1.5.4\";s:8:\"asset_id\";i:901997;s:12:\"release_date\";s:10:\"2018-02-06\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:5:\"4.9.4\";s:8:\"sections\";s:40132:\"{\"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>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:7484:\"{\"4.9.4\":{\"1.5.4\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[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]},\"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]},\"4.7.9\":{\"1.5.4\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[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]},\"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]},\"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]},\"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]},\"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]},\"4.6.10\":{\"1.5.4\":[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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]},\"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]}}\";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:17:\"version_downloads\";i:11696;s:9:\"downloads\";i:612452;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\";i: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\";i:876738;}s:14:\"theme_versions\";O:8:\"stdClass\":22:{s:2:\"26\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.18.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:897109;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-uptempo-1.18.1.zip\";}s:2:\"28\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.23.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:897096;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-diced-1.23.1.zip\";}s:2:\"29\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.23.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:897078;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-evolv-1.23.1.zip\";}s:2:\"30\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.18.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:897057;s:7:\"package\";s:63:\"https://repo.boldgrid.com/themes/boldgrid-florentine-1.18.1.zip\";}s:2:\"31\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.23.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:897040;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-hifidel-1.23.1.zip\";}s:2:\"32\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.23.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:897021;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-hydra-1.23.1.zip\";}s:2:\"33\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.23.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:897007;s:7:\"package\";s:57:\"https://repo.boldgrid.com/themes/boldgrid-linx-1.23.1.zip\";}s:2:\"34\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.23.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896987;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-pavilion-1.23.1.zip\";}s:2:\"35\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.23.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896972;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-primas-1.23.1.zip\";}s:2:\"36\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.18.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896960;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-resolve-1.18.1.zip\";}s:2:\"38\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.23.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896944;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-vacation-1.23.1.zip\";}s:2:\"40\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.23.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896932;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-gridone-1.23.1.zip\";}s:2:\"42\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.16.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896924;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-venetian-1.16.1.zip\";}s:2:\"43\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.16.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896912;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-haven-1.16.1.zip\";}s:2:\"44\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.14.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896899;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-wedge-1.14.1.zip\";}s:2:\"45\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.13.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896891;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-monument-1.13.1.zip\";}s:2:\"48\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896884;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-callaway-1.1.1.zip\";}s:2:\"49\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896881;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-swifty-1.1.1.zip\";}s:2:\"50\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896879;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.1.1.zip\";}s:2:\"51\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896877;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-westview-1.1.1.zip\";}s:2:\"52\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"0.2.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896875;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-lattice-0.2.1.zip\";}s:2:\"99\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:10:\"2018-01-23\";s:8:\"asset_id\";i:896879;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.1.1.zip\";}}s:9:\"site_hash\";s:32:\"c071a47821a7bd174ec7abffaa8102d5\";s:13:\"wporg_plugins\";O:8:\"stdClass\":2:{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:70:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.6.3.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:5:\"1.6.3\";}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.5.1.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.5.1\";}}s:9:\"is_author\";b:0;}}s:7:\"updated\";i:1518005984;}','no'),(2558,'woocommerce_meta_box_errors','a:0:{}','yes'),(2540,'woocommerce_version','3.2.6','yes'),(2541,'woocommerce_db_version','3.2.6','yes'),(960,'wpforms_shareasale_redirect','https://wpforms.com/lite-upgrade','yes');
/*!40000 ALTER TABLE `wpki_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpki_postmeta`
--

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

--
-- Dumping data for table `wpki_postmeta`
--

LOCK TABLES `wpki_postmeta` WRITE;
/*!40000 ALTER TABLE `wpki_postmeta` DISABLE KEYS */;
INSERT INTO `wpki_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,19,'_menu_item_type','post_type'),(4,19,'_menu_item_menu_item_parent','0'),(5,19,'_menu_item_object_id','18'),(6,19,'_menu_item_object','page'),(7,19,'_menu_item_target',''),(8,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9,19,'_menu_item_xfn',''),(10,19,'_menu_item_url',''),(11,18,'_wp_page_template','page_home.php'),(12,18,'boldgrid_in_page_containers','1'),(13,18,'boldgrid_page_id','345'),(14,21,'_menu_item_type','post_type'),(15,21,'_menu_item_menu_item_parent','0'),(16,21,'_menu_item_object_id','20'),(17,21,'_menu_item_object','page'),(18,21,'_menu_item_target',''),(19,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(20,21,'_menu_item_xfn',''),(21,21,'_menu_item_url',''),(22,20,'boldgrid_in_page_containers','1'),(23,20,'boldgrid_page_id','356'),(24,23,'_menu_item_type','post_type'),(25,23,'_menu_item_menu_item_parent','0'),(26,23,'_menu_item_object_id','22'),(27,23,'_menu_item_object','page'),(28,23,'_menu_item_target',''),(29,23,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30,23,'_menu_item_xfn',''),(31,23,'_menu_item_url',''),(32,22,'boldgrid_in_page_containers','1'),(33,22,'boldgrid_page_id','367'),(34,2,'_wp_trash_meta_status','publish'),(35,2,'_wp_trash_meta_time','1517271500'),(36,2,'_wp_desired_post_slug','sample-page'),(37,1,'_wp_trash_meta_status','publish'),(38,1,'_wp_trash_meta_time','1517271500'),(39,1,'_wp_desired_post_slug','hello-world'),(40,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),(41,26,'_wp_attached_file','2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05pR2xCX0xhbGxZLzYwMHg4MDA_3D-imhwpb-orj4gtqfbkpy8j6.jpg'),(42,26,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:101:\"2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05pR2xCX0xhbGxZLzYwMHg4MDA_3D-imhwpb-orj4gtqfbkpy8j6.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05pR2xCX0xhbGxZLzYwMHg4MDA_3D-imhwpb-orj4gtqfbkpy8j6-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:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05pR2xCX0xhbGxZLzYwMHg4MDA_3D-imhwpb-orj4gtqfbkpy8j6-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05pR2xCX0xhbGxZLzYwMHg4MDA_3D-imhwpb-orj4gtqfbkpy8j6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43,27,'_wp_attached_file','2018/01/swifty-realestate1-imhwpb-lw2mypfksh31plp.jpg'),(44,27,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:53:\"2018/01/swifty-realestate1-imhwpb-lw2mypfksh31plp.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"swifty-realestate1-imhwpb-lw2mypfksh31plp-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:\"swifty-realestate1-imhwpb-lw2mypfksh31plp-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"swifty-realestate1-imhwpb-lw2mypfksh31plp-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:53:\"swifty-realestate1-imhwpb-lw2mypfksh31plp-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45,28,'_wp_attached_file','2018/01/swifty-realestate2-imhwpb-lnmop8yupvu5pbk.jpg'),(46,28,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:53:\"2018/01/swifty-realestate2-imhwpb-lnmop8yupvu5pbk.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"swifty-realestate2-imhwpb-lnmop8yupvu5pbk-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:\"swifty-realestate2-imhwpb-lnmop8yupvu5pbk-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"swifty-realestate2-imhwpb-lnmop8yupvu5pbk-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:53:\"swifty-realestate2-imhwpb-lnmop8yupvu5pbk-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47,29,'_wp_attached_file','2018/01/swifty-realestate3-imhwpb-upr8glf9aenmrl2.jpg'),(48,29,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:53:\"2018/01/swifty-realestate3-imhwpb-upr8glf9aenmrl2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"swifty-realestate3-imhwpb-upr8glf9aenmrl2-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:\"swifty-realestate3-imhwpb-upr8glf9aenmrl2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"swifty-realestate3-imhwpb-upr8glf9aenmrl2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:53:\"swifty-realestate3-imhwpb-upr8glf9aenmrl2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(49,30,'_wp_attached_file','2018/01/swifty-realestate4-imhwpb-m22mx1hcw5g11xw.jpg'),(50,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:53:\"2018/01/swifty-realestate4-imhwpb-m22mx1hcw5g11xw.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"swifty-realestate4-imhwpb-m22mx1hcw5g11xw-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:\"swifty-realestate4-imhwpb-m22mx1hcw5g11xw-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"swifty-realestate4-imhwpb-m22mx1hcw5g11xw-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:53:\"swifty-realestate4-imhwpb-m22mx1hcw5g11xw-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51,31,'_wp_attached_file','2018/01/swifty-realestate5-imhwpb-cbrbej16d4zkq36.jpg'),(52,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:53:\"2018/01/swifty-realestate5-imhwpb-cbrbej16d4zkq36.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"swifty-realestate5-imhwpb-cbrbej16d4zkq36-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:\"swifty-realestate5-imhwpb-cbrbej16d4zkq36-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"swifty-realestate5-imhwpb-cbrbej16d4zkq36-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:53:\"swifty-realestate5-imhwpb-cbrbej16d4zkq36-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53,32,'_wp_attached_file','2018/01/swifty-realestate6-imhwpb-fs51y7muehmi7cf.jpg'),(54,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:53:\"2018/01/swifty-realestate6-imhwpb-fs51y7muehmi7cf.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"swifty-realestate6-imhwpb-fs51y7muehmi7cf-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:\"swifty-realestate6-imhwpb-fs51y7muehmi7cf-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"swifty-realestate6-imhwpb-fs51y7muehmi7cf-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:53:\"swifty-realestate6-imhwpb-fs51y7muehmi7cf-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55,33,'_wp_attached_file','2018/01/swifty-realestate7-imhwpb-5yuf2a2b5rsbeqw.jpg'),(56,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:53:\"2018/01/swifty-realestate7-imhwpb-5yuf2a2b5rsbeqw.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"swifty-realestate7-imhwpb-5yuf2a2b5rsbeqw-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:\"swifty-realestate7-imhwpb-5yuf2a2b5rsbeqw-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"swifty-realestate7-imhwpb-5yuf2a2b5rsbeqw-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:53:\"swifty-realestate7-imhwpb-5yuf2a2b5rsbeqw-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(57,34,'_wp_attached_file','2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg'),(58,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:53:\"2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"swifty-realestate8-imhwpb-m3q1sx23xa7juv1-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:\"swifty-realestate8-imhwpb-m3q1sx23xa7juv1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"swifty-realestate8-imhwpb-m3q1sx23xa7juv1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:53:\"swifty-realestate8-imhwpb-m3q1sx23xa7juv1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59,35,'_wp_attached_file','2018/01/swifty-realestate9-imhwpb-rceqtlrktbcne9o.jpg'),(60,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:53:\"2018/01/swifty-realestate9-imhwpb-rceqtlrktbcne9o.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"swifty-realestate9-imhwpb-rceqtlrktbcne9o-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:\"swifty-realestate9-imhwpb-rceqtlrktbcne9o-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"swifty-realestate9-imhwpb-rceqtlrktbcne9o-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:53:\"swifty-realestate9-imhwpb-rceqtlrktbcne9o-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(61,36,'_wp_attached_file','2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a.jpg'),(62,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:107:\"2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a-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:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a-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:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a-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:108:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,37,'_wp_attached_file','2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb.jpg'),(64,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:107:\"2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb-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:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb-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:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb-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:108:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(65,38,'_wp_attached_file','2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJVRTFnaXZEaVBNLzkwMHg0NTA_3D-imhwpb-7hl9crvlfyz98mo.jpg'),(66,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:450;s:4:\"file\";s:101:\"2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJVRTFnaXZEaVBNLzkwMHg0NTA_3D-imhwpb-7hl9crvlfyz98mo.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJVRTFnaXZEaVBNLzkwMHg0NTA_3D-imhwpb-7hl9crvlfyz98mo-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:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJVRTFnaXZEaVBNLzkwMHg0NTA_3D-imhwpb-7hl9crvlfyz98mo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJVRTFnaXZEaVBNLzkwMHg0NTA_3D-imhwpb-7hl9crvlfyz98mo-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJVRTFnaXZEaVBNLzkwMHg0NTA_3D-imhwpb-7hl9crvlfyz98mo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(67,39,'_wp_attached_file','2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZTTFBPTDlQd0I4LzkwMHg0NTA_3D-imhwpb-b43izdi82bn9cix.jpg'),(68,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:450;s:4:\"file\";s:101:\"2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZTTFBPTDlQd0I4LzkwMHg0NTA_3D-imhwpb-b43izdi82bn9cix.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZTTFBPTDlQd0I4LzkwMHg0NTA_3D-imhwpb-b43izdi82bn9cix-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:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZTTFBPTDlQd0I4LzkwMHg0NTA_3D-imhwpb-b43izdi82bn9cix-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZTTFBPTDlQd0I4LzkwMHg0NTA_3D-imhwpb-b43izdi82bn9cix-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZTTFBPTDlQd0I4LzkwMHg0NTA_3D-imhwpb-b43izdi82bn9cix-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(69,40,'_wp_attached_file','2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05tVm5zcDEzSlljLzkwMHg0NTA_3D-imhwpb-13fv1nbn3coxe8l.jpg'),(70,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:450;s:4:\"file\";s:101:\"2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05tVm5zcDEzSlljLzkwMHg0NTA_3D-imhwpb-13fv1nbn3coxe8l.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05tVm5zcDEzSlljLzkwMHg0NTA_3D-imhwpb-13fv1nbn3coxe8l-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:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05tVm5zcDEzSlljLzkwMHg0NTA_3D-imhwpb-13fv1nbn3coxe8l-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05tVm5zcDEzSlljLzkwMHg0NTA_3D-imhwpb-13fv1nbn3coxe8l-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:101:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05tVm5zcDEzSlljLzkwMHg0NTA_3D-imhwpb-13fv1nbn3coxe8l-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(71,41,'_wp_attached_file','2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg'),(72,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:480;s:4:\"file\";s:99:\"2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:99:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw-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:98:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:99:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:100:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:99:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(73,42,'_wp_attached_file','2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r.jpg'),(74,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:480;s:4:\"file\";s:99:\"2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:99:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r-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:98:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:99:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:100:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:99:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(75,46,'_menu_item_type','custom'),(76,46,'_menu_item_menu_item_parent','0'),(77,46,'_menu_item_object_id','46'),(78,46,'_menu_item_object','custom'),(79,46,'_menu_item_target','_blank'),(80,46,'_menu_item_classes','a:1:{i:0;s:8:\"facebook\";}'),(81,46,'_menu_item_xfn',''),(82,46,'_menu_item_url','https://www.facebook.com/abwcreditenhancement/'),(83,47,'_wp_attached_file','2018/01/walk-by-faith-logo.jpg'),(84,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:452;s:6:\"height\";i:452;s:4:\"file\";s:30:\"2018/01/walk-by-faith-logo.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"walk-by-faith-logo-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:30:\"walk-by-faith-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:28:\"walk-by-faith-logo-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:30:\"walk-by-faith-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:30:\"walk-by-faith-logo-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:30:\"walk-by-faith-logo-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:30:\"walk-by-faith-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:30:\"walk-by-faith-logo-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:30:\"walk-by-faith-logo-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:42:\"0_0_300_300_walk-by-faith-logo-300x300.jpg\";s:5:\"width\";d:300;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:{}}}'),(85,48,'_edit_lock','1517272488:1'),(86,49,'_wp_attached_file','2018/01/cropped-walk-by-faith-logo.jpg'),(87,49,'_wp_attachment_context','site-icon'),(88,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:38:\"2018/01/cropped-walk-by-faith-logo.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-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:38:\"cropped-walk-by-faith-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:36:\"cropped-walk-by-faith-logo-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-512x500.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:38:\"cropped-walk-by-faith-logo-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:36:\"cropped-walk-by-faith-logo-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}'),(89,48,'_wp_trash_meta_status','publish'),(90,48,'_wp_trash_meta_time','1517272488'),(91,18,'_edit_lock','1517421206:1'),(92,53,'_wp_attached_file','2018/01/AdobeStock_103717359.jpeg'),(93,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5760;s:6:\"height\";i:3840;s:4:\"file\";s:33:\"2018/01/AdobeStock_103717359.jpeg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103717359-150x150.jpeg\";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:33:\"AdobeStock_103717359-300x200.jpeg\";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:33:\"AdobeStock_103717359-768x512.jpeg\";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:34:\"AdobeStock_103717359-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:31:\"AdobeStock_103717359-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103717359-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103717359-250x167.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103717359-550x367.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103717359-800x533.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103717359-270x180.jpeg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103717359-450x300.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103717359-750x500.jpeg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103717359-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103717359-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:34:\"AdobeStock_103717359-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:72:\"16.666666666666657_0_266.666666667_200_AdobeStock_103717359-300x200.jpeg\";s:5:\"width\";d:267;s:6:\"height\";d: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:37:\"WavebreakmediaMicro - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:6:\"658084\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:39:\"©WavebreakmediaMicro - stock.adobe.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:49:\"Happy couple entering in their house and cheering\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:36:{i:0;s:5:\"house\";i:1;s:9:\"household\";i:2;s:5:\"homey\";i:3;s:9:\"apartment\";i:4;s:8:\"domicile\";i:5;s:5:\"abode\";i:6;s:9:\"homeowner\";i:7;s:4:\"door\";i:8;s:7:\"hallway\";i:9;s:5:\"happy\";i:10;s:7:\"smiling\";i:11;s:8:\"cheerful\";i:12;s:14:\"casual clothes\";i:13;s:6:\"casual\";i:14;s:6:\"couple\";i:15;s:12:\"relationship\";i:16;s:8:\"together\";i:17;s:4:\"love\";i:18;s:8:\"feelings\";i:19;s:9:\"affection\";i:20;s:8:\"fondness\";i:21;s:5:\"lover\";i:22;s:9:\"closeness\";i:23;s:7:\"romance\";i:24;s:8:\"romantic\";i:25;s:5:\"enter\";i:26;s:8:\"entering\";i:27;s:11:\"arms around\";i:28;s:8:\"discover\";i:29;s:11:\"discovering\";i:30;s:12:\"astonishment\";i:31;s:10:\"surprising\";i:32;s:9:\"surprised\";i:33;s:7:\"shocked\";i:34;s:11:\"taken aback\";i:35;s:10:\"astonished\";}}}'),(94,55,'_wp_attached_file','2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f.jpg'),(95,56,'_wp_attached_file','2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6.jpg'),(96,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f-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:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:100:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;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:{}}}'),(97,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6-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:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:100:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;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:{}}}'),(98,57,'_wp_attached_file','2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69.jpg'),(99,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69-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:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:100:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;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:{}}}'),(100,58,'_wp_attached_file','2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9.jpg'),(101,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9-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:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:100:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;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:{}}}'),(102,59,'_wp_attached_file','2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52.jpg'),(103,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52-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:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:100:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(104,60,'_wp_attached_file','2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67.jpg'),(105,60,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67-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:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:100:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;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:{}}}'),(106,61,'_wp_attached_file','2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd.jpg'),(107,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:103:\"2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-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:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-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:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-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:104:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:101:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:104:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(108,62,'_wp_attached_file','2018/01/AdobeStock_72513573.jpeg'),(109,62,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5616;s:6:\"height\";i:3744;s:4:\"file\";s:32:\"2018/01/AdobeStock_72513573.jpeg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"AdobeStock_72513573-150x150.jpeg\";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:\"AdobeStock_72513573-300x200.jpeg\";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:\"AdobeStock_72513573-768x512.jpeg\";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:\"AdobeStock_72513573-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:30:\"AdobeStock_72513573-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:32:\"AdobeStock_72513573-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:32:\"AdobeStock_72513573-250x167.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:32:\"AdobeStock_72513573-550x367.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:32:\"AdobeStock_72513573-800x533.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:32:\"AdobeStock_72513573-270x180.jpeg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:32:\"AdobeStock_72513573-450x300.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:32:\"AdobeStock_72513573-750x500.jpeg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:32:\"AdobeStock_72513573-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:32:\"AdobeStock_72513573-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:33:\"AdobeStock_72513573-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:71:\"16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\";s:5:\"width\";d:267;s:6:\"height\";d:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:32:\"Minerva Studio - stock.adobe.com\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1406050479\";s:9:\"copyright\";s:34:\"©Minerva Studio - stock.adobe.com\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:47:\"Woman receiving keys of her new car from dealer\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:42:{i:0;s:3:\"car\";i:1;s:3:\"key\";i:2;s:3:\"buy\";i:3;s:5:\"drive\";i:4;s:5:\"woman\";i:5;s:6:\"rental\";i:6;s:6:\"dealer\";i:7;s:3:\"new\";i:8;s:4:\"sale\";i:9;s:10:\"dealership\";i:10;s:3:\"suv\";i:11;s:8:\"business\";i:12;s:6:\"driver\";i:13;s:6:\"travel\";i:14;s:8:\"showroom\";i:15;s:4:\"hand\";i:16;s:4:\"rich\";i:17;s:13:\"businesswoman\";i:18;s:5:\"owner\";i:19;s:3:\"4x4\";i:20;s:7:\"smiling\";i:21;s:6:\"status\";i:22;s:14:\"businessperson\";i:23;s:9:\"expensive\";i:24;s:5:\"lease\";i:25;s:6:\"luxury\";i:26;s:7:\"receive\";i:27;s:3:\"one\";i:28;s:9:\"caucasian\";i:29;s:6:\"female\";i:30;s:7:\"vehicle\";i:31;s:8:\"off-road\";i:32;s:4:\"four\";i:33;s:6:\"person\";i:34;s:7:\"leasing\";i:35;s:8:\"purchase\";i:36;s:11:\"comfortable\";i:37;s:7:\"manager\";i:38;s:5:\"happy\";i:39;s:6:\"blonde\";i:40;s:4:\"girl\";i:41;s:9:\"beautiful\";}}}'),(110,63,'_wp_attached_file','2018/01/AdobeStock_107496546.jpeg'),(111,63,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5760;s:6:\"height\";i:3840;s:4:\"file\";s:33:\"2018/01/AdobeStock_107496546.jpeg\";s:5:\"sizes\";a:18:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"AdobeStock_107496546-150x150.jpeg\";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:33:\"AdobeStock_107496546-300x200.jpeg\";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:33:\"AdobeStock_107496546-768x512.jpeg\";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:34:\"AdobeStock_107496546-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:31:\"AdobeStock_107496546-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:33:\"AdobeStock_107496546-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_107496546-250x167.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:33:\"AdobeStock_107496546-550x367.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:33:\"AdobeStock_107496546-800x533.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_107496546-270x180.jpeg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:33:\"AdobeStock_107496546-450x300.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:33:\"AdobeStock_107496546-750x500.jpeg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_107496546-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:33:\"AdobeStock_107496546-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:34:\"AdobeStock_107496546-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:72:\"16.666666666666657_0_266.666666667_200_AdobeStock_107496546-300x200.jpeg\";s:5:\"width\";d:267;s:6:\"height\";d:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-2\";a:4:{s:4:\"file\";s:48:\"0_0_1024_682.666666667_AdobeStock_107496546.jpeg\";s:5:\"width\";d:1024;s:6:\"height\";d:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-3\";a:4:{s:4:\"file\";s:48:\"0_0_1024_682.666666667_AdobeStock_107496546.jpeg\";s:5:\"width\";d:1024;s:6:\"height\";d: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:37:\"WavebreakMediaMicro - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:6:\"658103\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:39:\"©WavebreakMediaMicro - stock.adobe.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:26:\"Happy couple opening boxes\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:50:{i:0;s:6:\"couple\";i:1;s:6:\"moving\";i:2;s:6:\"living\";i:3;s:4:\"room\";i:4;s:7:\"opening\";i:5;s:6:\"casual\";i:6;s:5:\"20-24\";i:7;s:5:\"boxes\";i:8;s:5:\"25-29\";i:9;s:3:\"put\";i:10;s:3:\"the\";i:11;s:12:\"embracing20s\";i:12;s:12:\"relationship\";i:13;s:9:\"homeowner\";i:14;s:9:\"closeness\";i:15;s:9:\"household\";i:16;s:9:\"apartment\";i:17;s:9:\"affection\";i:18;s:9:\"cardboard\";i:19;s:9:\"unpacking\";i:20;s:9:\"ethnicity\";i:21;s:9:\"cupboards\";i:22;s:8:\"cheerful\";i:23;s:8:\"domicile\";i:24;s:8:\"together\";i:25;s:8:\"fondness\";i:26;s:8:\"feelings\";i:27;s:8:\"romantic\";i:28;s:7:\"clothes\";i:29;s:7:\"holding\";i:30;s:7:\"leaning\";i:31;s:7:\"romance\";i:32;s:7:\"sitting\";i:33;s:7:\"african\";i:34;s:7:\"smiling\";i:35;s:7:\"embrace\";i:36;s:6:\"female\";i:37;s:6:\"indoor\";i:38;s:6:\"estate\";i:39;s:6:\"carton\";i:40;s:6:\"unpack\";i:41;s:5:\"women\";i:42;s:5:\"years\";i:43;s:5:\"black\";i:44;s:5:\"woman\";i:45;s:5:\"young\";i:46;s:5:\"adult\";i:47;s:5:\"house\";i:48;s:5:\"homey\";i:49;s:5:\"abode\";}}}'),(112,64,'_wp_attached_file','2018/01/AdobeStock_188101594.jpeg'),(113,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4897;s:6:\"height\";i:3902;s:4:\"file\";s:33:\"2018/01/AdobeStock_188101594.jpeg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"AdobeStock_188101594-150x150.jpeg\";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:33:\"AdobeStock_188101594-300x239.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"AdobeStock_188101594-768x612.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"AdobeStock_188101594-1024x816.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:816;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:31:\"AdobeStock_188101594-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:33:\"AdobeStock_188101594-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_188101594-250x199.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:33:\"AdobeStock_188101594-550x438.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:33:\"AdobeStock_188101594-800x637.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_188101594-226x180.jpeg\";s:5:\"width\";i:226;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:33:\"AdobeStock_188101594-376x300.jpeg\";s:5:\"width\";i:376;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:33:\"AdobeStock_188101594-627x500.jpeg\";s:5:\"width\";i:627;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_188101594-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:33:\"AdobeStock_188101594-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:34:\"AdobeStock_188101594-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:45:\"0_7_300_225_AdobeStock_188101594-300x239.jpeg\";s:5:\"width\";d:300;s:6:\"height\";d:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:25:\"junce11 - stock.adobe.com\";s:6:\"camera\";s:6:\"ILCE-7\";s:7:\"caption\";s:53:\"Boss giving job contract opportunity for New Employer\";s:17:\"created_timestamp\";s:10:\"1514117264\";s:9:\"copyright\";s:27:\"©junce11 - stock.adobe.com\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:53:\"Boss giving job contract opportunity for New Employer\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:82:{i:0;s:3:\"job\";i:1;s:8:\"contract\";i:2;s:9:\"interview\";i:3;s:8:\"business\";i:4;s:8:\"employee\";i:5;s:5:\"offer\";i:6;s:4:\"team\";i:7;s:6:\"office\";i:8;s:8:\"document\";i:9;s:4:\"sign\";i:10;s:3:\"new\";i:11;s:4:\"hand\";i:12;s:4:\"deal\";i:13;s:11:\"businessman\";i:14;s:9:\"agreement\";i:15;s:4:\"boss\";i:16;s:6:\"hiring\";i:17;s:7:\"meeting\";i:18;s:5:\"happy\";i:19;s:7:\"manager\";i:20;s:9:\"financial\";i:21;s:5:\"staff\";i:22;s:11:\"negotiation\";i:23;s:4:\"male\";i:24;s:5:\"paper\";i:25;s:11:\"opportunity\";i:26;s:7:\"company\";i:27;s:10:\"employment\";i:28;s:9:\"corporate\";i:29;s:7:\"signing\";i:30;s:8:\"customer\";i:31;s:6:\"worker\";i:32;s:7:\"success\";i:33;s:6:\"client\";i:34;s:7:\"smiling\";i:35;s:5:\"woman\";i:36;s:3:\"man\";i:37;s:5:\"asian\";i:38;s:5:\"table\";i:39;s:3:\"shy\";i:40;s:5:\"light\";i:41;s:3:\"job\";i:42;s:8:\"contract\";i:43;s:9:\"interview\";i:44;s:8:\"business\";i:45;s:8:\"employee\";i:46;s:5:\"offer\";i:47;s:4:\"team\";i:48;s:6:\"office\";i:49;s:8:\"document\";i:50;s:4:\"sign\";i:51;s:3:\"new\";i:52;s:4:\"hand\";i:53;s:4:\"deal\";i:54;s:11:\"businessman\";i:55;s:9:\"agreement\";i:56;s:4:\"boss\";i:57;s:6:\"hiring\";i:58;s:7:\"meeting\";i:59;s:5:\"happy\";i:60;s:7:\"manager\";i:61;s:9:\"financial\";i:62;s:5:\"staff\";i:63;s:11:\"negotiation\";i:64;s:4:\"male\";i:65;s:5:\"paper\";i:66;s:11:\"opportunity\";i:67;s:7:\"company\";i:68;s:10:\"employment\";i:69;s:9:\"corporate\";i:70;s:7:\"signing\";i:71;s:8:\"customer\";i:72;s:6:\"worker\";i:73;s:7:\"success\";i:74;s:6:\"client\";i:75;s:7:\"smiling\";i:76;s:5:\"woman\";i:77;s:3:\"man\";i:78;s:5:\"asian\";i:79;s:5:\"table\";i:80;s:3:\"shy\";i:81;s:5:\"light\";}}}'),(114,65,'_wp_attached_file','2018/01/AdobeStock_101765883.jpeg'),(115,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:3000;s:4:\"file\";s:33:\"2018/01/AdobeStock_101765883.jpeg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"AdobeStock_101765883-150x150.jpeg\";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:33:\"AdobeStock_101765883-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"AdobeStock_101765883-768x1152.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"AdobeStock_101765883-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:31:\"AdobeStock_101765883-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:33:\"AdobeStock_101765883-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_101765883-250x375.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:33:\"AdobeStock_101765883-550x825.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:825;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:34:\"AdobeStock_101765883-800x1200.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_101765883-120x180.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:33:\"AdobeStock_101765883-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:33:\"AdobeStock_101765883-333x500.jpeg\";s:5:\"width\";i:333;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_101765883-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:33:\"AdobeStock_101765883-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:34:\"AdobeStock_101765883-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:58:\"0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\";s:5:\"width\";d:400;s:6:\"height\";d:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.2\";s:6:\"credit\";s:33:\"pureradiancecmp - stock.adobe.com\";s:6:\"camera\";s:11:\"NIKON D7100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1443278386\";s:9:\"copyright\";s:35:\"©pureradiancecmp - stock.adobe.com\";s:12:\"focal_length\";s:2:\"34\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:72:\"couple in front of new home as new homeowners excited for their purchase\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:42:{i:0;s:5:\"house\";i:1;s:4:\"home\";i:2;s:5:\"first\";i:3;s:6:\"couple\";i:4;s:3:\"new\";i:5;s:6:\"moving\";i:6;s:5:\"young\";i:7;s:6:\"people\";i:8;s:5:\"happy\";i:9;s:4:\"real\";i:10;s:6:\"estate\";i:11;s:7:\"smiling\";i:12;s:7:\"hipster\";i:13;s:8:\"hispanic\";i:14;s:7:\"outside\";i:15;s:6:\"female\";i:16;s:9:\"cardboard\";i:17;s:5:\"woman\";i:18;s:8:\"portrait\";i:19;s:5:\"adult\";i:20;s:3:\"man\";i:21;s:4:\"male\";i:22;s:9:\"lifestyle\";i:23;s:8:\"outdoors\";i:24;s:5:\"front\";i:25;s:10:\"front door\";i:26;s:9:\"door step\";i:27;s:6:\"family\";i:28;s:3:\"box\";i:29;s:6:\"garden\";i:30;s:4:\"gate\";i:31;s:8:\"together\";i:32;s:3:\"dog\";i:33;s:5:\"puppy\";i:34;s:16:\"golden retriever\";i:35;s:6:\"future\";i:36;s:9:\"homeowner\";i:37;s:11:\"real estate\";i:38;s:19:\"real estate concept\";i:39;s:4:\"sold\";i:40;s:9:\"sold home\";i:41;s:8:\"new home\";}}}'),(116,18,'_edit_last','1'),(117,18,'boldgrid_hide_page_title','0'),(118,18,'bgseo_robots_index','index'),(119,18,'bgseo_robots_follow','follow'),(122,72,'_menu_item_type','post_type'),(121,69,'_customize_changeset_uuid','939f4f3c-c19b-4311-99c0-3ad9180d2489'),(123,72,'_menu_item_menu_item_parent','0'),(124,72,'_menu_item_object_id','69'),(125,72,'_menu_item_object','page'),(126,72,'_menu_item_target',''),(127,72,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(128,72,'_menu_item_xfn',''),(129,72,'_menu_item_url',''),(130,70,'_wp_trash_meta_status','publish'),(131,70,'_wp_trash_meta_time','1517278349'),(132,69,'_edit_lock','1517435867:1'),(133,76,'_wp_attached_file','2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15.jpg'),(134,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:103:\"2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-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:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-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:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-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:104:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:101:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:104:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(135,69,'_edit_last','1'),(136,69,'_wp_page_template','default'),(137,69,'boldgrid_hide_page_title','0'),(138,69,'boldgrid_in_page_containers','1'),(139,69,'bgseo_robots_index','index'),(140,69,'bgseo_robots_follow','follow'),(141,20,'_edit_last','1'),(142,20,'_wp_page_template','default'),(143,20,'_edit_lock','1517421808:1'),(144,22,'_edit_lock','1517437510:1'),(145,22,'_edit_last','1'),(146,22,'_wp_page_template','default'),(147,22,'boldgrid_hide_page_title','0'),(148,22,'bgseo_robots_index','index'),(149,22,'bgseo_robots_follow','follow'),(150,112,'_wp_trash_meta_status','publish'),(151,112,'_wp_trash_meta_time','1517329641'),(152,115,'_edit_lock','1517329830:1'),(153,115,'_wp_trash_meta_status','publish'),(154,115,'_wp_trash_meta_time','1517329830'),(155,145,'_wp_attached_file','2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8.jpg'),(156,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:103:\"2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-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:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-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:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-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:104:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:101:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:104:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(157,20,'boldgrid_hide_page_title','0'),(158,20,'bgseo_robots_index','index'),(159,20,'bgseo_robots_follow','follow'),(160,149,'_wp_attached_file','2018/01/AdobeStock_55853428.jpeg'),(161,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5616;s:6:\"height\";i:3744;s:4:\"file\";s:32:\"2018/01/AdobeStock_55853428.jpeg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"AdobeStock_55853428-150x150.jpeg\";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:\"AdobeStock_55853428-300x200.jpeg\";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:\"AdobeStock_55853428-768x512.jpeg\";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:\"AdobeStock_55853428-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:30:\"AdobeStock_55853428-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:32:\"AdobeStock_55853428-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:32:\"AdobeStock_55853428-250x167.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:32:\"AdobeStock_55853428-550x367.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:32:\"AdobeStock_55853428-800x533.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:32:\"AdobeStock_55853428-270x180.jpeg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:32:\"AdobeStock_55853428-450x300.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:32:\"AdobeStock_55853428-750x500.jpeg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:32:\"AdobeStock_55853428-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:32:\"AdobeStock_55853428-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:33:\"AdobeStock_55853428-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:35:\"Arpad Nagy-Bagoly - stock.adobe.com\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:75:\"Family moving into a new house - having fun among scattered cardboard boxes\";s:17:\"created_timestamp\";s:10:\"1280000720\";s:9:\"copyright\";s:37:\"©Arpad Nagy-Bagoly - stock.adobe.com\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:36:\"Happy people moving into a new house\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:93:{i:0;s:5:\"young\";i:1;s:4:\"girl\";i:2;s:3:\"box\";i:3;s:6:\"family\";i:4;s:9:\"caucasian\";i:5;s:4:\"room\";i:6;s:9:\"childhood\";i:7;s:5:\"child\";i:8;s:5:\"happy\";i:9;s:9:\"cardboard\";i:10;s:3:\"joy\";i:11;s:4:\"home\";i:12;s:5:\"smile\";i:13;s:9:\"happiness\";i:14;s:3:\"new\";i:15;s:3:\"boy\";i:16;s:5:\"floor\";i:17;s:4:\"move\";i:18;s:5:\"enjoy\";i:19;s:5:\"woman\";i:20;s:3:\"kid\";i:21;s:8:\"together\";i:22;s:7:\"playful\";i:23;s:7:\"looking\";i:24;s:7:\"indoors\";i:25;s:8:\"cheerful\";i:26;s:9:\"container\";i:27;s:8:\"adorable\";i:28;s:4:\"cute\";i:29;s:4:\"team\";i:30;s:4:\"pack\";i:31;s:7:\"concept\";i:32;s:5:\"brown\";i:33;s:10:\"conceptual\";i:34;s:6:\"mother\";i:35;s:3:\"fun\";i:36;s:7:\"playing\";i:37;s:8:\"laughing\";i:38;s:10:\"excitement\";i:39;s:7:\"excited\";i:40;s:4:\"play\";i:41;s:8:\"siblings\";i:42;s:9:\"homeowner\";i:43;s:6:\"joyful\";i:44;s:6:\"laying\";i:45;s:9:\"unpacking\";i:46;s:6:\"moving\";i:47;s:4:\"home\";i:48;s:3:\"new\";i:49;s:8:\"together\";i:50;s:10:\"excitement\";i:51;s:9:\"homeowner\";i:52;s:9:\"unpacking\";i:53;s:5:\"young\";i:54;s:4:\"girl\";i:55;s:3:\"box\";i:56;s:6:\"family\";i:57;s:9:\"caucasian\";i:58;s:4:\"move\";i:59;s:4:\"room\";i:60;s:9:\"childhood\";i:61;s:5:\"child\";i:62;s:5:\"happy\";i:63;s:9:\"cardboard\";i:64;s:3:\"joy\";i:65;s:5:\"smile\";i:66;s:9:\"happiness\";i:67;s:3:\"boy\";i:68;s:5:\"floor\";i:69;s:5:\"enjoy\";i:70;s:5:\"woman\";i:71;s:3:\"kid\";i:72;s:7:\"playful\";i:73;s:7:\"looking\";i:74;s:7:\"indoors\";i:75;s:8:\"cheerful\";i:76;s:9:\"container\";i:77;s:8:\"adorable\";i:78;s:4:\"cute\";i:79;s:4:\"team\";i:80;s:4:\"pack\";i:81;s:7:\"concept\";i:82;s:5:\"brown\";i:83;s:10:\"conceptual\";i:84;s:6:\"mother\";i:85;s:3:\"fun\";i:86;s:7:\"playing\";i:87;s:8:\"laughing\";i:88;s:7:\"excited\";i:89;s:4:\"play\";i:90;s:8:\"siblings\";i:91;s:6:\"joyful\";i:92;s:6:\"laying\";}}}'),(162,178,'_wp_attached_file','2018/01/AdobeStock_103715773-e1517420864435.jpeg'),(163,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:2000;s:4:\"file\";s:48:\"2018/01/AdobeStock_103715773-e1517420864435.jpeg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103715773-150x150.jpeg\";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:33:\"AdobeStock_103715773-300x200.jpeg\";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:33:\"AdobeStock_103715773-768x512.jpeg\";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:34:\"AdobeStock_103715773-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:31:\"AdobeStock_103715773-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103715773-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103715773-250x167.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103715773-550x367.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103715773-800x533.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103715773-270x180.jpeg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103715773-450x300.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103715773-750x500.jpeg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103715773-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:33:\"AdobeStock_103715773-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:34:\"AdobeStock_103715773-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:37:\"WavebreakmediaMicro - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:6:\"658079\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:39:\"©WavebreakmediaMicro - stock.adobe.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:24:\"Happy couple holding box\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:50:{i:0;s:6:\"couple\";i:1;s:6:\"moving\";i:2;s:5:\"house\";i:3;s:7:\"holding\";i:4;s:6:\"casual\";i:5;s:5:\"25-29\";i:6;s:5:\"20-24\";i:7;s:3:\"put\";i:8;s:3:\"box\";i:9;s:5:\"their\";i:10;s:3:\"out\";i:11;s:12:\"relationship\";i:12;s:11:\"romantic20s\";i:13;s:9:\"homeowner\";i:14;s:9:\"affection\";i:15;s:9:\"cardboard\";i:16;s:9:\"unpacking\";i:17;s:9:\"apartment\";i:18;s:9:\"ethnicity\";i:19;s:9:\"cupboards\";i:20;s:9:\"household\";i:21;s:9:\"closeness\";i:22;s:8:\"domicile\";i:23;s:8:\"mortgage\";i:24;s:8:\"together\";i:25;s:8:\"cheerful\";i:26;s:8:\"fondness\";i:27;s:8:\"feelings\";i:28;s:7:\"romance\";i:29;s:7:\"african\";i:30;s:7:\"clothes\";i:31;s:7:\"smiling\";i:32;s:6:\"female\";i:33;s:6:\"unpack\";i:34;s:6:\"estate\";i:35;s:6:\"carton\";i:36;s:6:\"indoor\";i:37;s:5:\"homey\";i:38;s:5:\"woman\";i:39;s:5:\"happy\";i:40;s:5:\"abode\";i:41;s:5:\"black\";i:42;s:5:\"years\";i:43;s:5:\"young\";i:44;s:5:\"women\";i:45;s:5:\"adult\";i:46;s:5:\"empty\";i:47;s:5:\"boxes\";i:48;s:5:\"floor\";i:49;s:5:\"lover\";}}}'),(164,190,'_wp_attached_file','2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg'),(165,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:103:\"2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-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:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-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:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-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:104:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"wcicon\";a:4:{s:4:\"file\";s:101:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcsquare\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"wcsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wcstandard\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"wcbig\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"wcfixedheightsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"wcfixedheightmedium\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"wcfixedheight\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"wccarouselsmall\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"wccarousel\";a:4:{s:4:\"file\";s:103:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"wcslider\";a:4:{s:4:\"file\";s:104:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(166,197,'_wp_trash_meta_status','publish'),(167,197,'_wp_trash_meta_time','1517420094'),(168,178,'_edit_lock','1517420744:1'),(169,178,'_wc_gallery_custom_image_link',''),(170,178,'_edit_last','1'),(171,178,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:5760;s:6:\"height\";i:3840;s:4:\"file\";s:25:\"AdobeStock_103715773.jpeg\";}}'),(172,259,'_wc_review_count','0'),(173,259,'_wc_rating_count','a:0:{}'),(174,259,'_wc_average_rating','0'),(175,259,'_edit_last','1'),(176,259,'_edit_lock','1517430667:1'),(177,259,'_sku',''),(178,259,'_regular_price','89.00'),(179,259,'_sale_price',''),(180,259,'_sale_price_dates_from',''),(181,259,'_sale_price_dates_to',''),(182,259,'total_sales','0'),(183,259,'_tax_status','taxable'),(184,259,'_tax_class',''),(185,259,'_manage_stock','no'),(186,259,'_backorders','no'),(187,259,'_sold_individually','no'),(188,259,'_weight',''),(189,259,'_length',''),(190,259,'_width',''),(191,259,'_height',''),(192,259,'_upsell_ids','a:0:{}'),(193,259,'_crosssell_ids','a:0:{}'),(194,259,'_purchase_note',''),(195,259,'_default_attributes','a:0:{}'),(196,259,'_virtual','no'),(197,259,'_downloadable','no'),(198,259,'_product_image_gallery',''),(199,259,'_download_limit','-1'),(200,259,'_download_expiry','-1'),(201,259,'_stock',NULL),(202,259,'_stock_status','instock'),(203,259,'_product_version','3.2.6'),(204,259,'_price','89.00'),(205,259,'boldgrid_hide_page_title','0'),(206,260,'_edit_lock','1517435009:1'),(207,260,'_edit_last','1'),(208,260,'_wp_page_template','default'),(209,260,'boldgrid_hide_page_title','0'),(210,260,'boldgrid_in_page_containers','1'),(211,260,'bgseo_robots_index','index'),(212,260,'bgseo_robots_follow','follow'),(213,256,'_wp_trash_meta_status','publish'),(214,256,'_wp_trash_meta_time','1517437022'),(215,256,'_wp_desired_post_slug','cart'),(216,257,'_wp_trash_meta_status','publish'),(217,257,'_wp_trash_meta_time','1517437027'),(218,257,'_wp_desired_post_slug','checkout'),(219,260,'_wp_trash_meta_status','publish'),(220,260,'_wp_trash_meta_time','1517437036'),(221,260,'_wp_desired_post_slug','pay-online'),(222,255,'_wp_trash_meta_status','publish'),(223,255,'_wp_trash_meta_time','1517437042'),(224,255,'_wp_desired_post_slug','shop'),(225,258,'_edit_lock','1517436929:1'),(226,258,'_wp_trash_meta_status','publish'),(227,258,'_wp_trash_meta_time','1517437078'),(228,258,'_wp_desired_post_slug','my-account');
/*!40000 ALTER TABLE `wpki_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpki_posts`
--

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

--
-- Dumping data for table `wpki_posts`
--

LOCK TABLES `wpki_posts` WRITE;
/*!40000 ALTER TABLE `wpki_posts` DISABLE KEYS */;
INSERT INTO `wpki_posts` VALUES (1,1,'2018-01-29 23:52:45','2018-01-29 23:52:45','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','trash','open','open','','hello-world__trashed','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?p=1',0,'post','',1),(2,1,'2018-01-29 23:52:45','2018-01-29 23:52:45','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://abwcreditenhancement.vqhosted.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','trash','closed','open','','sample-page__trashed','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?page_id=2',0,'page','',0),(3,0,'2018-01-29 23:52:58','2018-01-29 23:52:58','\n	<p>\n		This site has been created with the help of many different people and companies.\n	</p>\n\n	<p>\n		In particular, a special thanks goes to the following for content running on this site:\n	</p>\n\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://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div></div><hr />\n	<p style=\"clear:both\">\n		In addition, this  site was built on a powerful, Inspirations based web builder called <a href=\"http://www.boldgrid.com\" target=\"_blank\">BoldGrid</a>. It is running on <a href=\"http://wordpress.org\" target=\"_blank\">WordPress</a>, the most popular content management software online today.\n	</p>\n<div class=\"boldgrid-attribution\"><p>Additional functionality provided by:</p><ul><li><a href=\"https://wordpress.org/plugins/wc-gallery/\">WP Canvas - Gallery</a></li></ul></div>','Attribution','','publish','closed','closed','','attribution','','','2018-02-01 04:30:22','2018-02-01 04:30:22','',0,'http://abwcreditenhancement.vqhosted.com/attribution/',0,'bg_attribution','',0),(4,1,'2018-01-29 23:53:43','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2018-01-29 23:53:43','0000-00-00 00:00:00','',0,'http://abwcreditenhancement.vqhosted.com/?p=4',0,'post','',0),(294,1,'2018-01-31 22:25:10','0000-00-00 00:00:00','','BoldGrid - GridBlock Set - Preview Page','','draft','closed','closed','','boldgrid-gridblock-set-preview-page','','','2018-01-31 22:25:10','0000-00-00 00:00:00','',0,'http://abwcreditenhancement.vqhosted.com/?page_id=294',0,'page','',0),(6,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=6',0,'wpforms','',0),(7,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=7',0,'wpforms','',0),(8,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=8',0,'wpforms','',0),(9,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=9',0,'wpforms','',0),(10,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=10',0,'wpforms','',0),(11,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=11',0,'wpforms','',0),(12,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=12',0,'wpforms','',0),(13,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=13',0,'wpforms','',0),(14,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=14',0,'wpforms','',0),(15,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=15',0,'wpforms','',0),(16,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=16',0,'wpforms','',0),(17,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','{\"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','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=wpforms&#038;p=17',0,'wpforms','',0),(18,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773-e1517420864435.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773-e1517420864435.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 476px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0);\">If You\'re Tired of Being Turned Down,\r\nDon\'t Make a Fuss - Call Us.\r\nWe Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div style=\"text-align: center;\">\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">33</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"489\" height=\"368\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"395\" height=\"296\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img  aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"597\" height=\"399\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','publish','closed','closed','','home','','','2018-01-31 17:55:01','2018-01-31 17:55:01','',0,'http://abwcreditenhancement.vqhosted.com/home/',0,'page','',0),(19,1,'2018-01-30 00:18:20','2018-01-30 00:18:20',' ','','','publish','closed','closed','','19','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',0,'http://abwcreditenhancement.vqhosted.com/19/',0,'nav_menu_item','',0),(20,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 158px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<div class=\"color-2-text-contrast color2-background-color\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of erroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-2 col-xs-2 color2-background-color color-2-text-contrast bg-background-color\"></div>\r\n<div class=\"col-md-6 col-sm-10 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px; background-color: rgba(255, 255, 255, 0.89);\" class=\"bg-box-cover bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-certificate\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','publish','closed','closed','','services','','','2018-01-31 18:04:08','2018-01-31 18:04:08','',0,'http://abwcreditenhancement.vqhosted.com/listings/',0,'page','',0),(21,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','','Our Services','','publish','closed','closed','','21','','','2018-01-30 00:34:48','2018-01-30 00:34:48','',0,'http://abwcreditenhancement.vqhosted.com/21/',2,'nav_menu_item','',0),(22,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_188101594.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836814\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_188101594.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 384px; padding-top: 98px;\"></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: 50px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<h3 class=\"\" style=\"font-size: 32px;\">Contact Us</h3>\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> &nbsp; PHONE</h4>\r\n<p class=\"\">610-386-7626</p>\r\n\r\n<h4 class=\"\" data-font-class=\"bg-font-family-alt\"><i class=\"fa fa-1x fa-envelope\"><!-- icon --></i> &nbsp; EMAIL</h4>\r\n<p class=\"\"><a href=\"mailto:abwcreditenhancement@gmail.com\">abwcreditenhancement@gmail.com</a></p>\r\n\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> &nbsp; ADDRESS</h4>\r\n<p class=\"\">1033 Manor Rd. Coatesville, PA 19320</p>\r\n<p class=\"\"><img class=\"alignnone size-medium wp-image-47 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/walk-by-faith-logo-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','publish','closed','closed','','contact-us','','','2018-01-31 22:25:09','2018-01-31 22:25:09','',0,'http://abwcreditenhancement.vqhosted.com/contact-us/',0,'page','',0),(23,1,'2018-01-30 00:18:20','2018-01-30 00:18:20',' ','','','publish','closed','closed','','23','','','2018-01-30 02:12:29','2018-01-30 02:12:29','',0,'http://abwcreditenhancement.vqhosted.com/23/',4,'nav_menu_item','',0),(24,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://abwcreditenhancement.vqhosted.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',2,'http://abwcreditenhancement.vqhosted.com/2-revision-v1/',0,'revision','',0),(25,1,'2018-01-30 00:18:20','2018-01-30 00:18:20','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2018-01-30 00:18:20','2018-01-30 00:18:20','',1,'http://abwcreditenhancement.vqhosted.com/1-revision-v1/',0,'revision','',0),(26,1,'2018-01-30 00:18:22','2018-01-30 00:18:22','','','','inherit','open','closed','','26','','','2018-01-30 00:18:22','2018-01-30 00:18:22','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05pR2xCX0xhbGxZLzYwMHg4MDA_3D-imhwpb-orj4gtqfbkpy8j6.jpg',0,'attachment','image/jpeg',0),(27,1,'2018-01-30 00:18:22','2018-01-30 00:18:22','','swifty-realestate1','','inherit','open','closed','','swifty-realestate1','','','2018-01-30 00:18:22','2018-01-30 00:18:22','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate1-imhwpb-lw2mypfksh31plp.jpg',0,'attachment','image/jpeg',0),(28,1,'2018-01-30 00:18:23','2018-01-30 00:18:23','','swifty-realestate2','','inherit','open','closed','','swifty-realestate2','','','2018-01-30 00:18:23','2018-01-30 00:18:23','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate2-imhwpb-lnmop8yupvu5pbk.jpg',0,'attachment','image/jpeg',0),(29,1,'2018-01-30 00:18:23','2018-01-30 00:18:23','','swifty-realestate3','','inherit','open','closed','','swifty-realestate3','','','2018-01-30 00:18:23','2018-01-30 00:18:23','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate3-imhwpb-upr8glf9aenmrl2.jpg',0,'attachment','image/jpeg',0),(30,1,'2018-01-30 00:18:23','2018-01-30 00:18:23','','swifty-realestate4','','inherit','open','closed','','swifty-realestate4','','','2018-01-30 00:18:23','2018-01-30 00:18:23','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate4-imhwpb-m22mx1hcw5g11xw.jpg',0,'attachment','image/jpeg',0),(31,1,'2018-01-30 00:18:23','2018-01-30 00:18:23','','swifty-realestate5','','inherit','open','closed','','swifty-realestate5','','','2018-01-30 00:18:23','2018-01-30 00:18:23','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate5-imhwpb-cbrbej16d4zkq36.jpg',0,'attachment','image/jpeg',0),(32,1,'2018-01-30 00:18:23','2018-01-30 00:18:23','','swifty-realestate6','','inherit','open','closed','','swifty-realestate6','','','2018-01-30 00:18:23','2018-01-30 00:18:23','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate6-imhwpb-fs51y7muehmi7cf.jpg',0,'attachment','image/jpeg',0),(33,1,'2018-01-30 00:18:23','2018-01-30 00:18:23','','swifty-realestate7','','inherit','open','closed','','swifty-realestate7','','','2018-01-30 00:18:23','2018-01-30 00:18:23','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate7-imhwpb-5yuf2a2b5rsbeqw.jpg',0,'attachment','image/jpeg',0),(34,1,'2018-01-30 00:18:24','2018-01-30 00:18:24','','swifty-realestate8','','inherit','open','closed','','swifty-realestate8','','','2018-01-30 00:18:24','2018-01-30 00:18:24','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg',0,'attachment','image/jpeg',0),(35,1,'2018-01-30 00:18:24','2018-01-30 00:18:24','','swifty-realestate9','','inherit','open','closed','','swifty-realestate9','','','2018-01-30 00:18:24','2018-01-30 00:18:24','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate9-imhwpb-rceqtlrktbcne9o.jpg',0,'attachment','image/jpeg',0),(36,1,'2018-01-30 00:18:24','2018-01-30 00:18:24','','','','inherit','open','closed','','36','','','2018-01-30 00:18:24','2018-01-30 00:18:24','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a.jpg',0,'attachment','image/jpeg',0),(37,1,'2018-01-30 00:18:24','2018-01-30 00:18:24','','','','inherit','open','closed','','37','','','2018-01-30 00:18:24','2018-01-30 00:18:24','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb.jpg',0,'attachment','image/jpeg',0),(38,1,'2018-01-30 00:18:25','2018-01-30 00:18:25','','','','inherit','open','closed','','38','','','2018-01-30 00:18:25','2018-01-30 00:18:25','',20,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJVRTFnaXZEaVBNLzkwMHg0NTA_3D-imhwpb-7hl9crvlfyz98mo.jpg',0,'attachment','image/jpeg',0),(39,1,'2018-01-30 00:18:25','2018-01-30 00:18:25','','','','inherit','open','closed','','39','','','2018-01-30 00:18:25','2018-01-30 00:18:25','',20,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZTTFBPTDlQd0I4LzkwMHg0NTA_3D-imhwpb-b43izdi82bn9cix.jpg',0,'attachment','image/jpeg',0),(40,1,'2018-01-30 00:18:25','2018-01-30 00:18:25','','','','inherit','open','closed','','40','','','2018-01-30 00:18:25','2018-01-30 00:18:25','',20,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05tVm5zcDEzSlljLzkwMHg0NTA_3D-imhwpb-13fv1nbn3coxe8l.jpg',0,'attachment','image/jpeg',0),(41,1,'2018-01-30 00:18:25','2018-01-30 00:18:25','','','','inherit','open','closed','','41','','','2018-01-30 00:18:25','2018-01-30 00:18:25','',20,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg',0,'attachment','image/jpeg',0),(42,1,'2018-01-30 00:18:25','2018-01-30 00:18:25','','','','inherit','open','closed','','42','','','2018-01-30 00:18:25','2018-01-30 00:18:25','',22,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r.jpg',0,'attachment','image/jpeg',0),(43,1,'2018-01-30 00:18:25','2018-01-30 00:18:25','\n<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL09GakxpMF9MQUtjLzE5MjB4MTA4MA_3D_3D-imhwpb-z26znkvzdoyq51a.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h2 class=\"h1 color2-color\" style=\"text-align: center;\">AT SWIFTY REALTY, YOUR PRIORITIES COME FIRST. WE\'RE HAPPY WHEN YOU\'RE HAPPY.</h2>\r\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"listings\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12\">\r\n<div></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: 125px; padding-bottom: 150px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n\r\n<img class=\"aligncenter size-full wp-image-26\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05pR2xCX0xhbGxZLzYwMHg4MDA_3D-imhwpb-orj4gtqfbkpy8j6.jpg\" alt=\"ctAsm_deVVk\" data-imhwpb-asset-id=\"819445\" width=\"600\" height=\"800\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<h2>About\r\nSwifty Realty</h2>\r\nAt Swifty Realty, we put the customer\'s needs before our own. We make your transaction, whether it\'s buying, selling, renting, or investing, a truly extraordinary experience. For almost three decades, Swifty Realty has set the benchmark for real estate service. Our agents have access to more tools and resources than any other real estate firm.\r\n\r\n<a class=\"button-primary\" href=\"listings\">View Collection</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb.jpg\'); background-size: cover; background-position: 50% 100%;\" data-imhwpb-asset-id=\"819448\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2lYRG1TZGZ1Y193LzE5MjB4MTA4MA_3D_3D-imhwpb-4v9wfskzydp1gcb.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 125px; padding-bottom: 150px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-4 col-xs-8 col-sm-6\">\r\n<h2 class=\"color2-color\">MODERN OASIS</h2>\r\n<p class=\"color2-color\">Swifty Realty was founded in 2010 and has emerged as one of the most transcendent forces in luxury residential real estate. Our ability to successfully identify and understand the needs of clients has established Swifty Realty as a leading industry authority.</p>\r\n<p class=\"color2-color\">We work endlessly to hone skills, continuously striving for perfection, sweating over every technical detail, always ready to take on new challenges.</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-4 col-sm-6\"></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: 125px; padding-bottom: 75px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n<div class=\"\">\r\n<h2 style=\"text-align: center;\">DISCOVER YOUR NEXT HOME</h2>\r\n<p style=\"text-align: center;\">We look forward to hearing from you.</p>\r\n[gallery targetsize=\"full\" captions=\"hide\" bottomspace=\"ten\" gutterwidth=\"10\" link=\"file\" size=\"full\"     ids=\"27,28,29,30,31,32,33,34,35\"           data-imhwpb-assets=\'846372,846373,846374,846375,846376,846377,846378,846379,846380\' ]\r\n<p style=\"text-align: center;\"><a class=\"button-primary\" href=\"listings\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-2 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\n','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 00:18:25','2018-01-30 00:18:25','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(44,1,'2018-01-30 00:18:25','2018-01-30 00:18:25','\n<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 50px; padding-top: 50px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Contact One of Our Real Estate Agents</h2>\r\n<p class=\"\" style=\"font-size: 5px;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"contact-us\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-12 col-xs-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\" style=\"padding-top: 50px; padding-bottom: 50px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-38\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJVRTFnaXZEaVBNLzkwMHg0NTA_3D-imhwpb-7hl9crvlfyz98mo.jpg\" width=\"900\" height=\"450\" data-imhwpb-asset-id=\"836810\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n<p class=\"\"><strong>$200,000</strong></p>\r\n123 Elm St, City, ST 12345\r\n\r\nNeighborhood\r\nDescription of Property\r\n\r\n<strong>3</strong> Bedrooms\r\n\r\n<strong>2</strong> Baths\r\n\r\n<strong>1,300</strong> sq ft.\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n\r\n<strong>Features and Amenities:</strong>\r\n<ul><li>Cooling features: Central A/C</li>\r\n 	<li>Attic</li>\r\n 	<li>Cable Ready</li>\r\n 	<li>Carpet</li>\r\n 	<li>Bedroom</li>\r\n 	<li>Inclusions: Dishwasher, Washer</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\" style=\"padding-top: 50px; padding-bottom: 50px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-39\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZTTFBPTDlQd0I4LzkwMHg0NTA_3D-imhwpb-b43izdi82bn9cix.jpg\" width=\"900\" height=\"450\" data-imhwpb-asset-id=\"836811\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n<p class=\"\"><strong>$200,000</strong></p>\r\n<p class=\"\">123 Elm St, City, ST 12345</p>\r\n<p class=\"\">Neighborhood\r\nDescription of Property</p>\r\n<p class=\"\"><strong>3</strong> Bedrooms</p>\r\n<p class=\"\"><strong>2</strong> Baths</p>\r\n<p class=\"\"><strong>1,300</strong> sq ft.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n<p class=\"\"><strong>Features and Amenities:</strong></p>\r\n\r\n<ul class=\"\"><li>Cooling features: Central A/C</li>\r\n 	<li>Attic</li>\r\n 	<li>Cable Ready</li>\r\n 	<li>Carpet</li>\r\n 	<li>Bedroom</li>\r\n 	<li>Inclusions: Dishwasher, Washer</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\" style=\"padding-top: 50px; padding-bottom: 50px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-40\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05tVm5zcDEzSlljLzkwMHg0NTA_3D-imhwpb-13fv1nbn3coxe8l.jpg\" width=\"900\" height=\"450\" data-imhwpb-asset-id=\"836812\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n\r\n<strong>$200,000</strong>\r\n\r\n123 Elm St, City, ST 12345\r\n\r\nNeighborhood\r\nDescription of Property\r\n\r\n<strong>3</strong> Bedrooms\r\n\r\n<strong>2</strong> Baths\r\n\r\n<strong>1,300</strong> sq ft.\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n\r\n<strong>Features and Amenities:</strong>\r\n<ul><li>Cooling features: Central A/C</li>\r\n 	<li>Attic</li>\r\n 	<li>Cable Ready</li>\r\n 	<li>Carpet</li>\r\n 	<li>Bedroom</li>\r\n 	<li>Inclusions: Dishwasher, Washer</li>\r\n</ul></div>\r\n</div>\r\n</div>\r\n</div>\n','Listings','','inherit','closed','closed','','20-revision-v1','','','2018-01-30 00:18:25','2018-01-30 00:18:25','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(246,1,'2018-01-31 18:25:40','2018-01-31 18:25:40','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_107496546.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836814\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_107496546.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 243px; padding-top: 466px;\"></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: 50px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<h3 class=\"\" style=\"font-size: 32px;\">Book A Consultation</h3>\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> &nbsp; PHONE</h4>\r\n<p class=\"\">610-386-7626</p>\r\n\r\n<h4 class=\"\" data-font-class=\"bg-font-family-alt\"><i class=\"fa fa-1x fa-envelope\"><!-- icon --></i> &nbsp; EMAIL</h4>\r\n<p class=\"\"><a href=\"mailto:abwcreditenhancement@gmail.com\">abwcreditenhancement@gmail.com</a></p>\r\n\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> &nbsp; ADDRESS</h4>\r\n1033 Manor Rd. Coatesville, PA 19320\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','22-revision-v1','','','2018-01-31 18:25:40','2018-01-31 18:25:40','',22,'http://abwcreditenhancement.vqhosted.com/22-revision-v1/',0,'revision','',0),(45,1,'2018-01-30 00:18:25','2018-01-30 00:18:25','\n<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836814\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 400px;\"></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: 50px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<h3 style=\"font-size: 32px;\">Book A Session</h3>\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h3 style=\"font-size: 32px;\">Things To Know</h3>\r\nIt takes special people with a knack for seeing the image before it even occurs. That\'s what we do. Our team tailor makes your images to fit your personality and needs, each and every time.\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> &nbsp; PHONE</h4>\r\n<p>610-386-7626</p>\r\n\r\n<h4 class=\"\" data-font-class=\"bg-font-family-alt\"><i class=\"fa fa-1x fa-envelope\"><!-- icon --></i> &nbsp; EMAIL</h4>\r\n<p><a href=\"mailto:abwcreditenhancement@gmail.com\">abwcreditenhancement@gmail.com</a></p>\r\n\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> &nbsp; ADDRESS</h4>\r\n<p>1033 Manor Rd. Coatesville, PA 19320</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n','Contact Us','','inherit','closed','closed','','22-revision-v1','','','2018-01-30 00:18:25','2018-01-30 00:18:25','',22,'http://abwcreditenhancement.vqhosted.com/22-revision-v1/',0,'revision','',0),(46,1,'2018-01-30 00:19:04','2018-01-30 00:19:04','','Facebook','Facebook','publish','closed','closed','','facebook','','','2018-01-30 00:19:04','2018-01-30 00:19:04','',0,'http://abwcreditenhancement.vqhosted.com/facebook/',0,'nav_menu_item','',0),(47,1,'2018-01-30 00:27:11','2018-01-30 00:27:11','','walk by faith logo','','inherit','open','closed','','walk-by-faith-logo','','','2018-01-31 18:26:43','2018-01-31 18:26:43','',22,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/walk-by-faith-logo.jpg',0,'attachment','image/jpeg',0),(48,1,'2018-01-30 00:34:48','2018-01-30 00:34:48','{\n    \"boldgrid-swifty::boldgrid_contact_details_setting\": {\n        \"value\": \"%5B%7B%22contact_block%22:%22%C2%A9%202018%20A%20Better%20Way%20Credit%20Enhancement%22%7D,%7B%22contact_block%22:%221033%20Manor%20Rd.%20Coatesville,%20PA%2019320%22%7D,%7B%22contact_block%22:%22610-386-7626%22%7D,%7B%22contact_block%22:%22abwcreditenhancement@gmail.com%22%7D%5D\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 00:27:14\"\n    },\n    \"boldgrid-swifty::boldgrid_font_toggle\": {\n        \"value\": true,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 00:27:14\"\n    },\n    \"boldgrid-swifty::logo_font_family\": {\n        \"value\": \"Linden Hill\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 00:27:14\"\n    },\n    \"boldgrid-swifty::logo_font_size\": {\n        \"value\": \"60\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 00:27:14\"\n    },\n    \"boldgrid-swifty::logo_text_decoration_hover\": {\n        \"value\": \"none\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 00:27:14\"\n    },\n    \"site_icon\": {\n        \"value\": 49,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 00:29:12\"\n    },\n    \"nav_menu_item[21]\": {\n        \"value\": {\n            \"menu_item_parent\": 0,\n            \"object_id\": 20,\n            \"object\": \"page\",\n            \"type\": \"post_type\",\n            \"type_label\": \"Page\",\n            \"url\": \"http://abwcreditenhancement.vqhosted.com/listings/\",\n            \"title\": \"Our Services\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"nav_menu_term_id\": 2,\n            \"position\": 2,\n            \"status\": \"publish\",\n            \"original_title\": \"Listings\",\n            \"_invalid\": false\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 00:32:53\"\n    },\n    \"boldgrid-swifty::hide_boldgrid_attribution\": {\n        \"value\": true,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 00:34:48\"\n    },\n    \"boldgrid-swifty::hide_wordpress_attribution\": {\n        \"value\": true,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 00:34:48\"\n    }\n}','','','trash','closed','closed','','c22bc273-9b47-4e0c-a0fd-8d826fb65b82','','','2018-01-30 00:34:48','2018-01-30 00:34:48','',0,'http://abwcreditenhancement.vqhosted.com/?p=48',0,'customize_changeset','',0),(49,1,'2018-01-30 00:28:51','2018-01-30 00:28:51','http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/cropped-walk-by-faith-logo.jpg','cropped-walk-by-faith-logo.jpg','','inherit','open','closed','','cropped-walk-by-faith-logo-jpg','','','2018-01-30 00:28:51','2018-01-30 00:28:51','',0,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/cropped-walk-by-faith-logo.jpg',0,'attachment','image/jpeg',0),(50,1,'2018-01-30 00:35:59','0000-00-00 00:00:00','','Block Preview Page','','draft','closed','closed','','','','','2018-01-30 00:35:59','0000-00-00 00:00:00','',0,'http://abwcreditenhancement.vqhosted.com/?page_id=50',0,'page','',0),(53,1,'2018-01-30 00:37:28','2018-01-30 00:37:28','','Happy couple entering in their house and cheering','','inherit','open','closed','','happy-couple-entering-in-their-house-and-cheering','','','2018-01-30 00:37:52','2018-01-30 00:37:52','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg',0,'attachment','image/jpeg',0),(54,1,'2018-01-31 17:54:13','2018-01-31 17:54:13','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773-e1517420864435.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773-e1517420864435.jpeg\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 476px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0);\">If You\'re Tired of Being Turned Down,\nDon\'t Make a Fuss - Call Us.\nWe Can Help You Turn It Around.</h2>\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div>\n\n<hr class=\"color3-color bg-hr\" width=\"40%\">\n\n</div>\n</div>\n</div>\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\n\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\n<div class=\"row\" style=\"padding-top: 15px;\">\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\n</div>\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\n<div>\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\n\n</div>\n</div>\n</div>\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\n</div>\n</div>\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\n<div class=\"row\" style=\"padding-top: 15px;\">\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\n</div>\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\n<div style=\"text-align: center;\">\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">33</p>\n\n</div>\n</div>\n</div>\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\n</div>\n</div>\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\n<div class=\"row\" style=\"padding-top: 15px;\">\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\n</div>\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\n<div>\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\n\n</div>\n</div>\n</div>\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\n</div>\n</div>\n</div>\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\n<div class=\"bg-box-cover bg-box-flush bg-box\">\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\n<div class=\"bg-box-cover bg-box-flush bg-box\">\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\n<div class=\"bg-box-cover bg-box-flush bg-box\">\n<p class=\"mod-reset\"><img class=\"bg-img  aligncenter wp-image-63 size-full\" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_107496546.jpeg\" alt=\"\" width=\"5760\" height=\"3840\" data-height=\"300\" data-width=\"400\"></p>\n<p class=\"mod-reset\">&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n</div>\n<div class=\"row\" style=\"padding-bottom: 30px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\n\n</div>\n</div>\n</div>\n</div>','Home','','inherit','closed','closed','','18-autosave-v1','','','2018-01-31 17:54:13','2018-01-31 17:54:13','',18,'http://abwcreditenhancement.vqhosted.com/18-autosave-v1/',0,'revision','',0),(55,1,'2018-01-30 00:49:31','2018-01-30 00:49:31','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f','','','2018-01-30 00:49:31','2018-01-30 00:49:31','',0,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops50655f2f3bf5e7fc1aab6e3c0031422f.jpg',0,'attachment','image/jpeg',0),(56,1,'2018-01-30 00:49:31','2018-01-30 00:49:31','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6','','','2018-01-30 00:49:31','2018-01-30 00:49:31','',0,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsae97a8aa4cffee237c90e5e037d9d2e6.jpg',0,'attachment','image/jpeg',0),(57,1,'2018-01-30 00:49:32','2018-01-30 00:49:32','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69','','','2018-01-30 00:49:32','2018-01-30 00:49:32','',0,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops88a715df45974f0391fc1251812b0d69.jpg',0,'attachment','image/jpeg',0),(58,1,'2018-01-30 00:49:32','2018-01-30 00:49:32','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9','','','2018-01-30 00:49:32','2018-01-30 00:49:32','',0,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsaa3badd7664f4089edcf784e59b0b6d9.jpg',0,'attachment','image/jpeg',0),(118,1,'2018-01-30 16:34:21','2018-01-30 16:34:21','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 93px 0.1em;\">\r\n<div class=\"col-md-2 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 89px;\">\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 16:34:21','2018-01-30 16:34:21','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(59,1,'2018-01-30 00:49:32','2018-01-30 00:49:32','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52','','','2018-01-30 00:49:32','2018-01-30 00:49:32','',0,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops02340011cfae14a7392432bb3bab6f52.jpg',0,'attachment','image/jpeg',0),(60,1,'2018-01-30 00:49:33','2018-01-30 00:49:33','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67','','','2018-01-30 00:49:33','2018-01-30 00:49:33','',0,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropsb320ca46fef80232d3eaaf16ad5fac67.jpg',0,'attachment','image/jpeg',0),(61,1,'2018-01-30 00:50:28','2018-01-30 00:50:28','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd','','','2018-01-30 00:50:28','2018-01-30 00:50:28','',0,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd.jpg',0,'attachment','image/jpeg',0),(62,1,'2018-01-30 01:26:26','2018-01-30 01:26:26','','Woman receiving keys of her new car from dealer','','inherit','open','closed','','woman-receiving-keys-of-her-new-car-from-dealer','','','2018-01-30 01:26:26','2018-01-30 01:26:26','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg',0,'attachment','image/jpeg',0),(63,1,'2018-01-30 01:28:28','2018-01-30 01:28:28','','Happy couple opening boxes','','inherit','open','closed','','happy-couple-opening-boxes','','','2018-01-30 15:52:11','2018-01-30 15:52:11','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_107496546.jpeg',0,'attachment','image/jpeg',0),(64,1,'2018-01-30 01:32:27','2018-01-30 01:32:27','','Boss giving job contract opportunity for New Employer','','inherit','open','closed','','boss-giving-job-contract-opportunity-for-new-employer','','','2018-01-30 01:32:51','2018-01-30 01:32:51','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_188101594.jpeg',0,'attachment','image/jpeg',0),(65,1,'2018-01-30 01:37:25','2018-01-30 01:37:25','','couple in front of new home as new homeowners excited for their purchase','','inherit','open','closed','','couple-in-front-of-new-home-as-new-homeowners-excited-for-their-purchase','','','2018-01-30 01:37:25','2018-01-30 01:37:25','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_101765883.jpeg',0,'attachment','image/jpeg',0),(106,1,'2018-01-30 16:24:57','2018-01-30 16:24:57','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 39px; padding-bottom: 55px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Get approved for credit cards</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 58px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 16:24:57','2018-01-30 16:24:57','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(66,1,'2018-01-30 02:10:46','2018-01-30 02:10:46','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-7 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color2-background-color color-2-text-contrast bg-background-color tmpl-infographic-4 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 50px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"311\" height=\"234\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"\"><img class=\"bg-img     wp-image-63 size-large aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_107496546-1024x683.jpeg\" alt=\"\" width=\"1024\" height=\"683\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65  aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"297\" height=\"319\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-47 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_300_300_walk-by-faith-logo-300x300.jpg\" alt=\"\" width=\"350\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img  alignnone wp-image-53 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\" alt=\"\" width=\"486\" height=\"325\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color bg-background-color tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 100px; padding-bottom: 100px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\"><i class=\"color1-color fa fa-bed\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Expect Amazing</p>\r\n\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Seize Your Moment</p>\r\n\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">What We Offer</p>\r\n\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\"><i class=\"color1-color fa fa-building\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Tower Above</p>\r\n\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 02:10:46','2018-01-30 02:10:46','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(69,1,'2018-01-30 02:12:29','2018-01-30 02:12:29','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-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\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Proven results. Simple pricing.</h2>\r\n<p class=\"\" style=\"text-align: center;\">We attack all of your negative items at once, getting you where you need to be&nbsp;<i>fast</i>&nbsp;.</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-pricing_tables-6 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 50px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 align-column-bottom text-center\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color-neutral-border-color color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<h3 class=\"\" style=\"margin: 15px 0 30px;\">Starting at $89.00</h3>\r\n<h4 class=\"color5-color\">$79.00/Month\r\nPick Your Payment Date</h4>\r\n<div class=\"row color-3-text-contrast color3-background-color\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div class=\"color-neutral-border-color color3-background-color color-3-text-contrast bg-background-color bg-box\" style=\"border-width: 3px; border-style: solid;\">\r\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\r\n 	<li>Unlimited Repair of Erroneous Negative Records</li>\r\n 	<li>Customized Action Plan</li>\r\n 	<li>Track Credit Repair Progress</li>\r\n 	<li>All 3 Bureaus&nbsp;</li>\r\n 	<li>Build or Enhance Business Credit</li>\r\n</ul>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"color2-color\" style=\"background-color: rgba(202, 82, 21, 0);\">\r\n[livesite-pay]</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Pricing','','publish','closed','closed','','pricing','','','2018-01-31 21:59:47','2018-01-31 21:59:47','',0,'http://abwcreditenhancement.vqhosted.com/?page_id=69',0,'page','',0),(70,1,'2018-01-30 02:12:29','2018-01-30 02:12:29','{\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://abwcreditenhancement.vqhosted.com/contact-us/\",\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\": \"Contact Us\",\n            \"_invalid\": false\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 02:12:29\"\n    },\n    \"nav_menus_created_posts\": {\n        \"value\": [\n            69\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 02:12:29\"\n    },\n    \"boldgrid-swifty::boldgrid_contact_details_setting\": {\n        \"value\": \"%5B%7B%22contact_block%22:%22%C2%A9%202018%20A%20Better%20Way%20Credit%20Enhancement%22%7D,%7B%22contact_block%22:%221033%20Manor%20Rd.%20Coatesville,%20PA%2019320%22%7D,%7B%22contact_block%22:%22610-386-7626%22%7D,%7B%22contact_block%22:%22abwcreditenhancement@gmail.com%22%7D%5D\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 02:12:29\"\n    },\n    \"nav_menu_item[-7697088276206303000]\": {\n        \"value\": {\n            \"object_id\": 69,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 3,\n            \"type\": \"post_type\",\n            \"title\": \"Pricing\",\n            \"url\": \"http://abwcreditenhancement.vqhosted.com/?page_id=69\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Pricing\",\n            \"nav_menu_term_id\": 2,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 02:12:29\"\n    }\n}','','','trash','closed','closed','','939f4f3c-c19b-4311-99c0-3ad9180d2489','','','2018-01-30 02:12:29','2018-01-30 02:12:29','',0,'http://abwcreditenhancement.vqhosted.com/939f4f3c-c19b-4311-99c0-3ad9180d2489/',0,'customize_changeset','',0),(71,1,'2018-01-30 02:12:29','2018-01-30 02:12:29','','Pricing','','inherit','closed','closed','','69-revision-v1','','','2018-01-30 02:12:29','2018-01-30 02:12:29','',69,'http://abwcreditenhancement.vqhosted.com/69-revision-v1/',0,'revision','',0),(72,1,'2018-01-30 02:12:29','2018-01-30 02:12:29',' ','','','publish','closed','closed','','72','','','2018-01-30 02:12:29','2018-01-30 02:12:29','',0,'http://abwcreditenhancement.vqhosted.com/72/',3,'nav_menu_item','',0),(75,1,'2018-01-31 21:59:16','2018-01-31 21:59:16','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-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\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Proven results. Simple pricing.</h2>\r\n<p class=\"\" style=\"text-align: center;\">We attack all of your negative items at once, getting you where you need to be&nbsp;<i>fast</i>&nbsp;.</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-pricing_tables-6 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 50px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 align-column-bottom text-center\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color-neutral-border-color color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<h3 class=\"\" style=\"margin: 15px 0 30px;\">Starting at $89.00</h3>\r\n<h4 class=\"color5-color\">$79.00/Month\r\nPick Your Payment Date</h4>\r\n<div class=\"row color-3-text-contrast color3-background-color\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div class=\"color-neutral-border-color color3-background-color color-3-text-contrast bg-background-color bg-box\" style=\"border-width: 3px; border-style: solid;\">\r\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\r\n 	<li>Unlimited Repair of Erroneous Negative Records</li>\r\n 	<li>Customized Action Plan</li>\r\n 	<li>Track Credit Repair Progress</li>\r\n 	<li>All 3 Bureaus&nbsp;</li>\r\n 	<li>Build or Enhance Business Credit</li>\r\n</ul>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"color2-color\" style=\"background-color: rgba(202, 82, 21, 0);\">\r\n[livesite-pay]</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Pricing','','inherit','closed','closed','','69-autosave-v1','','','2018-01-31 21:59:16','2018-01-31 21:59:16','',69,'http://abwcreditenhancement.vqhosted.com/69-autosave-v1/',0,'revision','',0),(76,1,'2018-01-30 02:16:06','2018-01-30 02:16:06','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15','','','2018-01-30 02:16:06','2018-01-30 02:16:06','',0,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15.jpg',0,'attachment','image/jpeg',0),(190,1,'2018-01-30 20:32:36','2018-01-30 20:32:36','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89','','','2018-01-30 20:32:36','2018-01-30 20:32:36','',0,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg',0,'attachment','image/jpeg',0),(80,1,'2018-01-30 02:18:37','2018-01-30 02:18:37','<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\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=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-parallax\" style=\"background-position: 50% 50%; background-size: cover; background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15.jpg\');\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 text-center\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<p class=\"\"><i class=\"fa fa-truck\" style=\"font-size: 60px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h2 class=\"h1 color2-color\" style=\"font-size: 4em;\">Expect Amazing</h2>\r\n<p class=\"\" style=\"margin: 30px 0;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-pricing_tables-8 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-4\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-4 align-column-center\">\r\n<div class=\"text-center bg-box-cover color1-background-color color-1-text-contrast bg-background-color bg-box\" style=\"padding: 2em;\">\r\n<h3 style=\"font-style: italic;\">Rocket</h3>\r\n<p class=\"\" style=\"font-style: italic;\">&nbsp;</p>\r\n<p class=\"\"><strong>Our best value!</strong></p>\r\n<p class=\"\">Perfect for fast growing businesses. Purchase today!</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 45px;\">$9.99</p>\r\n\r\n<ul style=\"list-style: none; padding-left: 0; line-height: 1.5;\">\r\n 	<li>Feature 1</li>\r\n 	<li>Feature 2</li>\r\n 	<li>Feature 3</li>\r\n 	<li>Feature 4</li>\r\n 	<li>Feature 5</li>\r\n 	<li>Feature 6</li>\r\n</ul>\r\n<p class=\"\"><a class=\"btn-color-4 btn btn-small-caps btn-pill btn-regular\" style=\"margin: 20px 0px;\" href=\"#\">Purchase</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-4\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Pricing','','inherit','closed','closed','','69-revision-v1','','','2018-01-30 02:18:37','2018-01-30 02:18:37','',69,'http://abwcreditenhancement.vqhosted.com/69-revision-v1/',0,'revision','',0),(77,1,'2018-01-30 02:16:57','2018-01-30 02:16:57','<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\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=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-parallax\" style=\"background-position: 50% 50%; background-size: cover; background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15.jpg\');\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbaf194f1e0e8928548f0e81342c62e15.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 text-center\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color3-background-color color-3-text-contrast bg-background-color bg-box\"><i class=\"fa fa-truck\" style=\"font-size: 60px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h2 class=\"h1 color2-color\" style=\"font-size: 4em;\">Expect Amazing</h2>\r\n<p class=\"\" style=\"margin: 30px 0;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-pricing_tables-8 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-4 align-column-center\">\r\n<div class=\"text-center bg-box-cover color4-background-color color-4-text-contrast bg-background-color bg-box\" style=\"padding: 2em;\">\r\n<h3 style=\"font-style: italic;\">Starter</h3>\r\n<p class=\"\" style=\"font-style: italic;\">Perfect for small companies.</p>\r\n<p class=\"\" style=\"font-size: 45px;\">$7.99</p>\r\n\r\n<ul style=\"list-style: none; padding-left: 0; line-height: 1.5;\">\r\n 	<li>Feature 1</li>\r\n 	<li>Feature 2</li>\r\n 	<li>Feature 3</li>\r\n 	<li>Feature 4</li>\r\n 	<li>Feature 5</li>\r\n 	<li>Feature 6</li>\r\n</ul>\r\n<p class=\"\"><a class=\"btn-color-1 btn btn-small-caps btn-pill btn-regular\" style=\"margin: 10px 0px;\" href=\"#\">Purchase</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-4 align-column-center\">\r\n<div class=\"text-center bg-box-cover color1-background-color color-1-text-contrast bg-background-color bg-box\" style=\"padding: 2em;\">\r\n<h3 style=\"font-style: italic;\">Rocket</h3>\r\n<p class=\"\" style=\"font-style: italic;\">&nbsp;</p>\r\n<p class=\"\"><strong>Our best value!</strong></p>\r\n<p class=\"\">Perfect for fast growing businesses. Purchase today!</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\" style=\"font-size: 45px;\">$9.99</p>\r\n\r\n<ul style=\"list-style: none; padding-left: 0; line-height: 1.5;\">\r\n 	<li>Feature 1</li>\r\n 	<li>Feature 2</li>\r\n 	<li>Feature 3</li>\r\n 	<li>Feature 4</li>\r\n 	<li>Feature 5</li>\r\n 	<li>Feature 6</li>\r\n</ul>\r\n<p class=\"\"><a class=\"btn-color-4 btn btn-small-caps btn-pill btn-regular\" style=\"margin: 20px 0px;\" href=\"#\">Purchase</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-4 align-column-center\">\r\n<div class=\"text-center bg-box-cover color4-background-color color-4-text-contrast bg-background-color bg-box\" style=\"padding: 2em;\">\r\n<h3 style=\"font-style: italic;\">Elite</h3>\r\n<p class=\"\" style=\"font-style: italic;\">Take your business to the next level.</p>\r\n<p class=\"\" style=\"font-size: 45px;\">$12.99</p>\r\n\r\n<ul style=\"list-style: none; padding-left: 0; line-height: 1.5;\">\r\n 	<li>Feature 1</li>\r\n 	<li>Feature 2</li>\r\n 	<li>Feature 3</li>\r\n 	<li>Feature 4</li>\r\n 	<li>Feature 5</li>\r\n 	<li>Feature 6</li>\r\n</ul>\r\n<p class=\"\"><a class=\"btn-color-1 btn btn-small-caps btn-pill btn-regular\" style=\"margin: 10px 0px;\" href=\"#\">Purchase</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Pricing','','inherit','closed','closed','','69-revision-v1','','','2018-01-30 02:16:57','2018-01-30 02:16:57','',69,'http://abwcreditenhancement.vqhosted.com/69-revision-v1/',0,'revision','',0),(83,1,'2018-01-30 02:35:27','2018-01-30 02:35:27','\n<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 50px; padding-top: 50px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Contact One of Our Real Estate Agents</h2>\r\n<p class=\"\" style=\"font-size: 5px;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"contact-us\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-12 col-xs-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\" style=\"padding-top: 50px; padding-bottom: 50px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-38\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJVRTFnaXZEaVBNLzkwMHg0NTA_3D-imhwpb-7hl9crvlfyz98mo.jpg\" width=\"900\" height=\"450\" data-imhwpb-asset-id=\"836810\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n<p class=\"\"><strong>$200,000</strong></p>\r\n123 Elm St, City, ST 12345\r\n\r\nNeighborhood\r\nDescription of Property\r\n\r\n<strong>3</strong> Bedrooms\r\n\r\n<strong>2</strong> Baths\r\n\r\n<strong>1,300</strong> sq ft.\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n\r\n<strong>Features and Amenities:</strong>\r\n<ul><li>Cooling features: Central A/C</li>\r\n 	<li>Attic</li>\r\n 	<li>Cable Ready</li>\r\n 	<li>Carpet</li>\r\n 	<li>Bedroom</li>\r\n 	<li>Inclusions: Dishwasher, Washer</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\" style=\"padding-top: 50px; padding-bottom: 50px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-39\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZTTFBPTDlQd0I4LzkwMHg0NTA_3D-imhwpb-b43izdi82bn9cix.jpg\" width=\"900\" height=\"450\" data-imhwpb-asset-id=\"836811\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n<p class=\"\"><strong>$200,000</strong></p>\r\n<p class=\"\">123 Elm St, City, ST 12345</p>\r\n<p class=\"\">Neighborhood\r\nDescription of Property</p>\r\n<p class=\"\"><strong>3</strong> Bedrooms</p>\r\n<p class=\"\"><strong>2</strong> Baths</p>\r\n<p class=\"\"><strong>1,300</strong> sq ft.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n<p class=\"\"><strong>Features and Amenities:</strong></p>\r\n\r\n<ul class=\"\"><li>Cooling features: Central A/C</li>\r\n 	<li>Attic</li>\r\n 	<li>Cable Ready</li>\r\n 	<li>Carpet</li>\r\n 	<li>Bedroom</li>\r\n 	<li>Inclusions: Dishwasher, Washer</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\" style=\"padding-top: 50px; padding-bottom: 50px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone size-full wp-image-40\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05tVm5zcDEzSlljLzkwMHg0NTA_3D-imhwpb-13fv1nbn3coxe8l.jpg\" width=\"900\" height=\"450\" data-imhwpb-asset-id=\"836812\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n\r\n<strong>$200,000</strong>\r\n\r\n123 Elm St, City, ST 12345\r\n\r\nNeighborhood\r\nDescription of Property\r\n\r\n<strong>3</strong> Bedrooms\r\n\r\n<strong>2</strong> Baths\r\n\r\n<strong>1,300</strong> sq ft.\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12 align-column-top\">\r\n\r\n<strong>Features and Amenities:</strong>\r\n<ul><li>Cooling features: Central A/C</li>\r\n 	<li>Attic</li>\r\n 	<li>Cable Ready</li>\r\n 	<li>Carpet</li>\r\n 	<li>Bedroom</li>\r\n 	<li>Inclusions: Dishwasher, Washer</li>\r\n</ul></div>\r\n</div>\r\n</div>\r\n</div>\n','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-30 02:35:27','2018-01-30 02:35:27','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(86,1,'2018-01-30 02:36:30','2018-01-30 02:36:30','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836814\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzJTS0ZZN3p5RTBZLzE5MjB4NDgw-imhwpb-be9od8by3mdcy6r.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 400px;\"></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: 50px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<h3 class=\"\" style=\"font-size: 32px;\">Book A Consultation</h3>\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h3 style=\"font-size: 32px;\">Things To Know</h3>\r\nIt takes special people with a knack for seeing the image before it even occurs. That\'s what we do. Our team tailor makes your images to fit your personality and needs, each and every time.\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> &nbsp; PHONE</h4>\r\n610-386-7626\r\n<h4 class=\"\" data-font-class=\"bg-font-family-alt\"><i class=\"fa fa-1x fa-envelope\"><!-- icon --></i> &nbsp; EMAIL</h4>\r\n<a href=\"mailto:abwcreditenhancement@gmail.com\">abwcreditenhancement@gmail.com</a>\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> &nbsp; ADDRESS</h4>\r\n1033 Manor Rd. Coatesville, PA 19320\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','22-revision-v1','','','2018-01-30 02:36:30','2018-01-30 02:36:30','',22,'http://abwcreditenhancement.vqhosted.com/22-revision-v1/',0,'revision','',0),(100,1,'2018-01-30 16:16:14','2018-01-30 16:16:14','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"background-color: rgba(202, 82, 21, 0.12);\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-top\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\"></div>\r\n<div class=\"row\" style=\"padding-top: 39px; padding-bottom: 37px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">\r\nBuy your first home or refinance an existing one</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">\r\nPurchase a new vehicle</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">\r\nlower your interest rates</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">\r\nGet approved for credit cards</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 33px; padding-bottom: 55px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">\r\nAccomplish your financial goals</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">\r\nQualify for better employment</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">\r\nreduce stress in your relationships</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">\r\nsave thousands of dollars per year</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 16:16:14','2018-01-30 16:16:14','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(91,1,'2018-01-30 15:40:47','2018-01-30 15:40:47','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-7 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color2-background-color color-2-text-contrast bg-background-color tmpl-infographic-4 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 50px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"311\" height=\"234\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"\"><img class=\"bg-img wp-image-63 size-large aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_107496546-1024x683.jpeg\" alt=\"\" width=\"1024\" height=\"683\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"297\" height=\"319\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-47 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_300_300_walk-by-faith-logo-300x300.jpg\" alt=\"\" width=\"350\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-53 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\" alt=\"\" width=\"486\" height=\"325\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color bg-background-color tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 100px; padding-bottom: 100px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-bed\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Expect Amazing</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Seize Your Moment</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">What We Offer</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-building\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Tower Above</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 15:40:47','2018-01-30 15:40:47','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(97,1,'2018-01-30 15:44:53','2018-01-30 15:44:53','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color2-background-color color-2-text-contrast bg-background-color tmpl-infographic-4 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 50px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"311\" height=\"234\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"\"><img class=\"bg-img wp-image-63 size-large aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_107496546-1024x683.jpeg\" alt=\"\" width=\"1024\" height=\"683\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"297\" height=\"319\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-47 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_300_300_walk-by-faith-logo-300x300.jpg\" alt=\"\" width=\"350\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-53 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\" alt=\"\" width=\"486\" height=\"325\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color bg-background-color tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 100px; padding-bottom: 100px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-bed\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Expect Amazing</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Seize Your Moment</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">What We Offer</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-building\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Tower Above</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 15:44:53','2018-01-30 15:44:53','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(94,1,'2018-01-30 15:42:32','2018-01-30 15:42:32','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-7 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color2-background-color color-2-text-contrast bg-background-color tmpl-infographic-4 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 50px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"311\" height=\"234\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"\"><img class=\"bg-img wp-image-63 size-large aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_107496546-1024x683.jpeg\" alt=\"\" width=\"1024\" height=\"683\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"297\" height=\"319\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-47 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_300_300_walk-by-faith-logo-300x300.jpg\" alt=\"\" width=\"350\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-53 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\" alt=\"\" width=\"486\" height=\"325\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color bg-background-color tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops17d47e91df68974d2b823d377755e2bd.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 100px; padding-bottom: 100px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-bed\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Expect Amazing</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Seize Your Moment</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">What We Offer</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n<i class=\"color1-color fa fa-building\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Tower Above</p>\r\n<i class=\"fa fa-window-minimize color1-color\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<p class=\"\" style=\"margin: 30px 0;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 15:42:32','2018-01-30 15:42:32','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(103,1,'2018-01-30 16:23:18','2018-01-30 16:23:18','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-top\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-3 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 39px; padding-bottom: 55px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one\r\n\r\n\r\n</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle\r\n\r\n\r\n</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates\r\n\r\n\r\n</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Get approved for credit cards\r\n\r\n\r\n</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 58px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals\r\n\r\n\r\n</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment\r\n\r\n\r\n</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships\r\n\r\n\r\n</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year\r\n\r\n\r\n</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 16:23:18','2018-01-30 16:23:18','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(109,1,'2018-01-30 16:26:18','2018-01-30 16:26:18','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 39px; padding-bottom: 93px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Get approved for credit cards</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 89px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 16:26:18','2018-01-30 16:26:18','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(112,1,'2018-01-30 16:27:21','2018-01-30 16:27:21','{\n    \"boldgrid-swifty::boldgrid_contact_details_setting\": {\n        \"value\": \"%5B%7B%22contact_block%22:%22%C2%A9%202018%20A%20Better%20Way%20Credit%20Enhancement%22%7D,%7B%22contact_block%22:%221033%20Manor%20Rd.%20Coatesville,%20PA%2019320%22%7D,%7B%22contact_block%22:%22610-386-7626%22%7D,%7B%22contact_block%22:%22abwcreditenhancement@gmail.com%22%7D%5D\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 16:27:21\"\n    },\n    \"boldgrid-swifty::logo_font_size\": {\n        \"value\": \"50\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 16:27:21\"\n    }\n}','','','trash','closed','closed','','45abb4f3-0802-4f73-a2bd-ed01b9f3e8c8','','','2018-01-30 16:27:21','2018-01-30 16:27:21','',0,'http://abwcreditenhancement.vqhosted.com/45abb4f3-0802-4f73-a2bd-ed01b9f3e8c8/',0,'customize_changeset','',0),(115,1,'2018-01-30 16:30:30','2018-01-30 16:30:30','{\n    \"boldgrid-swifty::nav_menu_locations[social]\": {\n        \"value\": 3,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 16:30:30\"\n    },\n    \"boldgrid-swifty::nav_menu_locations[footer_center]\": {\n        \"value\": 2,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 16:30:02\"\n    },\n    \"boldgrid-swifty::boldgrid_contact_details_setting\": {\n        \"value\": \"%5B%7B%22contact_block%22:%22%C2%A9%202018%20A%20Better%20Way%20Credit%20Enhancement%22%7D,%7B%22contact_block%22:%221033%20Manor%20Rd.%20Coatesville,%20PA%2019320%22%7D,%7B%22contact_block%22:%22610-386-7626%22%7D,%7B%22contact_block%22:%22abwcreditenhancement@gmail.com%22%7D%5D\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-30 16:30:02\"\n    }\n}','','','trash','closed','closed','','a73d7738-9831-496a-8876-a2ca51821864','','','2018-01-30 16:30:30','2018-01-30 16:30:30','',0,'http://abwcreditenhancement.vqhosted.com/?p=115',0,'customize_changeset','',0),(121,1,'2018-01-30 16:36:04','2018-01-30 16:36:04','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 23px 0.1em;\">\r\n<div class=\"col-md-2 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 46px;\">\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 16:36:04','2018-01-30 16:36:04','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(124,1,'2018-01-30 16:41:07','2018-01-30 16:41:07','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 37px 0.1em;\">\r\n<div class=\"col-md-2 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 46px;\">\r\n<div class=\"col-md-4 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 16:41:07','2018-01-30 16:41:07','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(127,1,'2018-01-30 18:54:17','2018-01-30 18:54:17','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 37px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 46px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 18:54:17','2018-01-30 18:54:17','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(130,1,'2018-01-30 18:56:11','2018-01-30 18:56:11','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 200px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 37px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 46px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 18:56:11','2018-01-30 18:56:11','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(133,1,'2018-01-30 18:57:43','2018-01-30 18:57:43','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 205px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 37px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 46px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 18:57:43','2018-01-30 18:57:43','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(139,1,'2018-01-30 19:05:48','2018-01-30 19:05:48','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 205px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 19:05:48','2018-01-30 19:05:48','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(136,1,'2018-01-30 19:02:20','2018-01-30 19:02:20','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103717359.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 205px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"http://abwcreditenhancement.vqhosted.com/listings/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"#\">Button</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"#\">Button</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 19:02:20','2018-01-30 19:02:20','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(144,1,'2018-01-31 18:03:36','2018-01-31 18:03:36','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 158px; padding-bottom: 400px;\"></div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-bottom: 0px; padding-top: 0px;\">\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\n\n</div>\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\">\n<div class=\"container-fluid\">\n<div class=\"row\">\n<div class=\"col-md-5 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\n<div class=\"color-2-text-contrast color2-background-color\">\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\n<p class=\"\">We provide unlimited clean up of erroneous negative records:</p>\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\n\n<div class=\"row bg-editor-hr-wrap\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<div>\n\n<hr class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-md-1 col-sm-2 col-xs-2 color2-background-color color-2-text-contrast bg-background-color\"></div>\n<div class=\"col-md-6 col-sm-10 col-xs-10\">\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px; background-color: rgba(255, 255, 255, 0.89);\" class=\"bg-box-cover bg-background-color bg-box\">\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\n<div>\n\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\n\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\n\n</div>\n</div>\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\n<div>\n\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\n\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\n\n</div>\n</div>\n</div>\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\n<div>\n\n<i class=\"color2-color fa fa-shield\" style=\"font-size: 35px;\" aria-hidden=\"true\">\n<span style=\"display: none;\">&nbsp;</span></i>\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\n\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\n\n</div>\n</div>\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\n<div>\n\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\n\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>','Services','','inherit','closed','closed','','20-autosave-v1','','','2018-01-31 18:03:36','2018-01-31 18:03:36','',20,'http://abwcreditenhancement.vqhosted.com/20-autosave-v1/',0,'revision','',0),(145,1,'2018-01-30 19:15:31','2018-01-30 19:15:31','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8','','','2018-01-30 19:15:31','2018-01-30 19:15:31','',0,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8.jpg',0,'attachment','image/jpeg',0),(146,1,'2018-01-30 19:20:27','2018-01-30 19:20:27','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL3VvR2l0RnIwLXFjLzE5MjB4NDgw-imhwpb-n38s2qqcao6rxqw.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 50px; padding-top: 50px;\">\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Contact One of Our Real Estate Agents</h2>\r\n<p class=\"\" style=\"font-size: 5px;\">&nbsp;</p>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"button-primary\" href=\"contact-us\">Contact Us</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-position: 50% 50%; background-size: cover; background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8.jpg\');\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-2 col-xs-2 color2-background-color color-2-text-contrast bg-background-color\"></div>\r\n<div class=\"col-md-6 col-sm-10 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px;\" class=\"bg-box-cover color5-background-color color-5-text-contrast bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\"><i class=\"color2-color fa fa-bed\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">What Sets Us Apart</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn-color-2 btn btn-small-caps btn-pill btn-regular\" href=\"#\">Get Started</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\"><i class=\"color2-color fa fa-building\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">What We Offer</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn-color-2 btn btn-small-caps btn-pill btn-regular\" href=\"#\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\"><i class=\"color2-color fa fa-truck\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Dedicated to Quality</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn-color-2 btn btn-small-caps btn-pill btn-regular\" href=\"#\">Get Started</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\"><i class=\"color2-color fa fa-home\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We Go Beyond the Sale</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu dignissim tortor, sit amet bibendum lacus.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn-color-2 btn btn-small-caps btn-pill btn-regular\" href=\"#\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-30 19:20:27','2018-01-30 19:20:27','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(149,1,'2018-01-30 19:22:51','2018-01-30 19:22:51','','Happy people moving into a new house','Family moving into a new house - having fun among scattered cardboard boxes','inherit','open','closed','','happy-people-moving-into-a-new-house','','','2018-01-30 19:22:51','2018-01-30 19:22:51','',20,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg',0,'attachment','image/jpeg',0),(153,1,'2018-01-30 20:04:05','2018-01-30 20:04:05','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of erroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px;\" class=\"bg-box-cover color5-background-color color-5-text-contrast bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-certificate\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-30 20:04:05','2018-01-30 20:04:05','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(150,1,'2018-01-30 19:57:52','2018-01-30 19:57:52','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n<p class=\"\" style=\"text-align: center;\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-position: 50% 50%; background-size: cover; background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8.jpg\');\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of erroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-2 col-xs-2 color2-background-color color-2-text-contrast bg-background-color\"></div>\r\n<div class=\"col-md-6 col-sm-10 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px;\" class=\"bg-box-cover color5-background-color color-5-text-contrast bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-bolt\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-30 19:57:52','2018-01-30 19:57:52','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(156,1,'2018-01-30 20:05:52','2018-01-30 20:05:52','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of erroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px;\" class=\"bg-box-cover color5-background-color color-5-text-contrast bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-certificate\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-30 20:05:52','2018-01-30 20:05:52','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(159,1,'2018-01-30 20:08:45','2018-01-30 20:08:45','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of\r\nerroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px;\" class=\"bg-box-cover color5-background-color color-5-text-contrast bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-certificate\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-30 20:08:45','2018-01-30 20:08:45','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(162,1,'2018-01-30 20:11:54','2018-01-30 20:11:54','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-1 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of\r\nerroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px;\" class=\"bg-box-cover color5-background-color color-5-text-contrast bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-certificate\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-30 20:11:54','2018-01-30 20:11:54','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(173,1,'2018-01-30 20:14:44','2018-01-30 20:14:44','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of erroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-2 col-xs-2 color2-background-color color-2-text-contrast bg-background-color\"></div>\r\n<div class=\"col-md-6 col-sm-10 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px;\" class=\"bg-box-cover color5-background-color color-5-text-contrast bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-bolt\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-30 20:14:44','2018-01-30 20:14:44','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(170,1,'2018-01-30 20:14:05','2018-01-30 20:14:05','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n<p class=\"\" style=\"text-align: center;\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of erroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-2 col-xs-2 color2-background-color color-2-text-contrast bg-background-color\"></div>\r\n<div class=\"col-md-6 col-sm-10 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px;\" class=\"bg-box-cover color5-background-color color-5-text-contrast bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-bolt\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-30 20:14:05','2018-01-30 20:14:05','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(165,1,'2018-01-30 20:12:51','2018-01-30 20:12:51','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n<p class=\"\" style=\"text-align: center;\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-position: 50% 50%; background-size: cover; background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8.jpg\');\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcrops6cb61b08e46a3e3228806547f049ede8.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of erroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-2 col-xs-2 color2-background-color color-2-text-contrast bg-background-color\"></div>\r\n<div class=\"col-md-6 col-sm-10 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px;\" class=\"bg-box-cover color5-background-color color-5-text-contrast bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-bolt\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-30 20:12:51','2018-01-30 20:12:51','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(178,1,'2018-01-30 20:21:12','2018-01-30 20:21:12','','Happy couple holding box','658079','inherit','open','closed','','happy-couple-holding-box','','','2018-01-31 17:47:50','2018-01-31 17:47:50','',18,'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg',0,'attachment','image/jpeg',0),(179,1,'2018-01-30 20:22:15','2018-01-30 20:22:15','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 205px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down, Don\'t Make a Fuss - Call Us. We Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 20:22:15','2018-01-30 20:22:15','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(200,1,'2018-01-31 17:40:50','2018-01-31 17:40:50','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 508px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0);\">If You\'re Tired of Being Turned Down,\r\nDon\'t Make a Fuss - Call Us.\r\nWe Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-31 17:40:50','2018-01-31 17:40:50','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(185,1,'2018-01-30 20:27:30','2018-01-30 20:27:30','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0);\">If You\'re Tired of Being Turned Down,\r\nDon\'t Make a Fuss - Call Us.\r\nWe Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 20:27:30','2018-01-30 20:27:30','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(182,1,'2018-01-30 20:25:40','2018-01-30 20:25:40','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0.16);\">If You\'re Tired of Being Turned Down,\r\nDon\'t Make a Fuss - Call Us.\r\nWe Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-30 20:25:40','2018-01-30 20:25:40','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(272,1,'2018-01-31 21:47:21','2018-01-31 21:47:21','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-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\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Proven results. Simple pricing.</h2>\r\n<p class=\"\" style=\"text-align: center;\">We attack all of your negative items at once, getting you where you need to be&nbsp;<i>fast</i>&nbsp;.</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-pricing_tables-6 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 50px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 align-column-bottom text-center\">\r\n<h3 class=\"\" style=\"margin: 15px 0 30px;\">Starting at $89.00</h3>\r\n<h4 class=\"color2-color\">$79.00/Month\r\nPick Your Payment Date</h4>\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div class=\"bg-box color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 1.5em;\">\r\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\r\n 	<li>Unlimited Repair of Erroneous Negative Records</li>\r\n 	<li>Customized Action Plan</li>\r\n 	<li>Track Credit Repair Progress</li>\r\n 	<li>All 3 Bureaus&nbsp;</li>\r\n 	<li>Build or Enhance Business Credit\r\n\r\n[livesite-pay]</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Pricing','','inherit','closed','closed','','69-revision-v1','','','2018-01-31 21:47:21','2018-01-31 21:47:21','',69,'http://abwcreditenhancement.vqhosted.com/69-revision-v1/',0,'revision','',0),(240,1,'2018-01-31 18:20:42','2018-01-31 18:20:42','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-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\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Proven results. Simple pricing.</h2>\r\n<p class=\"\" style=\"text-align: center;\">We attack all of your negative items at once, getting you where you need to be&nbsp;<i>fast</i>&nbsp;.</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-pricing_tables-6 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 50px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 align-column-bottom text-center\">\r\n<h3 class=\"\" style=\"margin: 15px 0 30px;\">Starting at $89.00</h3>\r\n<h4 class=\"color2-color\">$79.00/Month\r\nPick Your Payment Date</h4>\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div class=\"bg-box color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 1.5em;\">\r\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\r\n 	<li>Unlimited Repair of Erroneous Negative Records</li>\r\n 	<li>Customized Action Plan</li>\r\n 	<li>Track Credit Repair Progress</li>\r\n 	<li>All 3 Bureaus&nbsp;</li>\r\n 	<li>Build or Enhance Business Credit</li>\r\n</ul>\r\n<p class=\"\"><a class=\"btn btn-3d btn-rounded btn-color-1\" style=\"font-weight: bold;\" href=\"http://abwcreditenhancement.vqhosted.com/contact-us/\">Learn More <i class=\"fa fa-caret-right\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Pricing','','inherit','closed','closed','','69-revision-v1','','','2018-01-31 18:20:42','2018-01-31 18:20:42','',69,'http://abwcreditenhancement.vqhosted.com/69-revision-v1/',0,'revision','',0),(237,1,'2018-01-31 18:20:00','2018-01-31 18:20:00','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\n<h2 class=\"\">&nbsp;</h2>\n<h2 class=\"\">&nbsp;</h2>\n<h2 class=\"\">&nbsp;</h2>\n<h2 class=\"\">&nbsp;</h2>\n<p class=\"\">&nbsp;</p>\n<p class=\"\">&nbsp;</p>\n<p class=\"\">&nbsp;</p>\n<p class=\"\">&nbsp;</p>\n<p class=\"\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-12 col-sm-11 col-xs-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-bottom: 0px; padding-top: 0px;\">\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\n<h2 class=\"\" style=\"text-align: center;\">Proven results. Simple pricing.</h2>\n<p class=\"\" style=\"text-align: center;\">We attack all of your negative items at once, getting you where you need to be&nbsp;<i>fast</i>&nbsp;.</p>\n\n</div>\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-pricing_tables-6 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 50px;\">\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\n\n&nbsp;\n\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12 align-column-bottom text-center\">\n<h3 class=\"\" style=\"margin: 15px 0 30px;\">Starting at $89.00</h3>\n<h4 class=\"color2-color\">$79.00/Month\nPick Your Payment Date</h4>\n<div class=\"row\" style=\"padding-top: 15px;\">\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\n<div class=\"bg-box color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 1.5em;\">\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\n 	<li>Unlimited Repair of Erroneous Negative Records</li>\n 	<li>Customized Action Plan</li>\n 	<li>Track Credit Repair Progress</li>\n 	<li>All 3 Bureaus&nbsp;</li>\n 	<li>Build or Enhance Business Credit</li>\n</ul>\n<p class=\"\"><a class=\"btn-color-2 btn btn-capitalize btn-regular\" style=\"font-weight: bold;\" href=\"http://abwcreditenhancement.vqhosted.com/contact-us/\">Learn More <i class=\"fa fa-caret-right\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\n\n&nbsp;\n\n</div>\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\n</div>\n</div>\n</div>','Pricing','','inherit','closed','closed','','69-revision-v1','','','2018-01-31 18:20:00','2018-01-31 18:20:00','',69,'http://abwcreditenhancement.vqhosted.com/69-revision-v1/',0,'revision','',0),(194,1,'2018-01-31 00:22:07','2018-01-31 00:22:07','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-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\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-pricing_tables-6 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 50px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 align-column-bottom\">\r\n<div class=\"row\" style=\"padding-bottom: 100px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<h2 style=\"text-align: left;\">We provide service for all levels</h2>\r\n<h3 class=\"color2-color\" style=\"text-align: left;\">and support as you grow.</h3>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-7 col-sm-12 col-xs-12 text-center\">\r\n<h3 style=\"margin: 15px 0 30px;\">Beginner</h3>\r\n<h4 class=\"color2-color\">Get up and running quickly!</h4>\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div class=\"bg-box color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 1.5em;\">\r\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\r\n 	<li>Lorem ipsum dolor sit</li>\r\n 	<li>Consectetur adiping elit</li>\r\n 	<li>Sed et turpis ullamcorper</li>\r\n 	<li>Molestie leo sodes metus</li>\r\n 	<li>Fusce luctus miet quis</li>\r\n</ul>\r\n<h4>$100</h4>\r\n<p class=\"\"><a class=\"btn-color-2 btn btn-capitalize btn-regular\" style=\"font-weight: bold;\" href=\"#\">Learn More <i class=\"fa fa-caret-right\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 align-column-bottom text-center\">\r\n<h3 style=\"margin: 15px 0 30px;\">Intermediate</h3>\r\n<h4 class=\"color2-color\">Growing business, growing needs.</h4>\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div class=\"bg-box color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 1.5em;\">\r\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\r\n 	<li>Lorem ipsum dolor sit</li>\r\n 	<li>Consectetur adiping elit</li>\r\n 	<li>Sed et turpis ullamcorper</li>\r\n 	<li>Molestie leo sodes metus</li>\r\n 	<li>Fusce luctus miet quis</li>\r\n 	<li>Nullam eu dignissim tortor</li>\r\n 	<li>Sit amet bibendum lacus</li>\r\n</ul>\r\n<h4>$150</h4>\r\n<p class=\"\"><a class=\"btn-color-2 btn btn-capitalize btn-regular\" style=\"font-weight: bold;\" href=\"#\">Learn More <i class=\"fa fa-caret-right\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 align-column-bottom text-center\">\r\n<h3 style=\"margin: 15px 0 30px;\">Advanced</h3>\r\n<h4 class=\"color2-color\">Need more? Don\'t worry, we\'re here.</h4>\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div class=\"bg-box color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 1.5em;\">\r\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\r\n 	<li>Lorem ipsum dolor sit</li>\r\n 	<li>Consectetur adiping elit</li>\r\n 	<li>Sed et turpis ullamcorper</li>\r\n 	<li>Molestie leo sodes metus</li>\r\n 	<li>Fusce luctus miet quis</li>\r\n 	<li>Nullam eu dignissim tortor</li>\r\n 	<li>Sit amet bibendum lacus</li>\r\n 	<li>Integer eu faucibus leo</li>\r\n 	<li>Non pharetra dui</li>\r\n</ul>\r\n<h4>$250</h4>\r\n<p class=\"\"><a class=\"btn-color-2 btn btn-capitalize btn-regular\" style=\"font-weight: bold;\" href=\"#\">Learn More <i class=\"fa fa-caret-right\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Pricing','','inherit','closed','closed','','69-revision-v1','','','2018-01-31 00:22:07','2018-01-31 00:22:07','',69,'http://abwcreditenhancement.vqhosted.com/69-revision-v1/',0,'revision','',0),(191,1,'2018-01-30 20:40:34','2018-01-30 20:40:34','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0);\">If You\'re Tired of Being Turned Down,\r\nDon\'t Make a Fuss - Call Us.\r\nWe Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-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\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-pricing_tables-6 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 50px;\">\r\n<div class=\"col-md-5 col-sm-6 col-xs-12 align-column-bottom\">\r\n<div class=\"row\" style=\"padding-bottom: 100px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<h2 style=\"text-align: left;\">We provide service for all levels</h2>\r\n<h3 class=\"color2-color\" style=\"text-align: left;\">and support as you grow.</h3>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-7 col-sm-12 col-xs-12 text-center\">\r\n<h3 style=\"margin: 15px 0 30px;\">Beginner</h3>\r\n<h4 class=\"color2-color\">Get up and running quickly!</h4>\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div class=\"bg-box color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 1.5em;\">\r\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\r\n 	<li>Lorem ipsum dolor sit</li>\r\n 	<li>Consectetur adiping elit</li>\r\n 	<li>Sed et turpis ullamcorper</li>\r\n 	<li>Molestie leo sodes metus</li>\r\n 	<li>Fusce luctus miet quis</li>\r\n</ul>\r\n<h4>$100</h4>\r\n<p class=\"\"><a class=\"btn-color-2 btn btn-capitalize btn-regular\" style=\"font-weight: bold;\" href=\"#\">Learn More <i class=\"fa fa-caret-right\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 align-column-bottom text-center\">\r\n<h3 style=\"margin: 15px 0 30px;\">Intermediate</h3>\r\n<h4 class=\"color2-color\">Growing business, growing needs.</h4>\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div class=\"bg-box color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 1.5em;\">\r\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\r\n 	<li>Lorem ipsum dolor sit</li>\r\n 	<li>Consectetur adiping elit</li>\r\n 	<li>Sed et turpis ullamcorper</li>\r\n 	<li>Molestie leo sodes metus</li>\r\n 	<li>Fusce luctus miet quis</li>\r\n 	<li>Nullam eu dignissim tortor</li>\r\n 	<li>Sit amet bibendum lacus</li>\r\n</ul>\r\n<h4>$150</h4>\r\n<p class=\"\"><a class=\"btn-color-2 btn btn-capitalize btn-regular\" style=\"font-weight: bold;\" href=\"#\">Learn More <i class=\"fa fa-caret-right\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 align-column-bottom text-center\">\r\n<h3 style=\"margin: 15px 0 30px;\">Advanced</h3>\r\n<h4 class=\"color2-color\">Need more? Don\'t worry, we\'re here.</h4>\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div class=\"bg-box color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 1.5em;\">\r\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\r\n 	<li>Lorem ipsum dolor sit</li>\r\n 	<li>Consectetur adiping elit</li>\r\n 	<li>Sed et turpis ullamcorper</li>\r\n 	<li>Molestie leo sodes metus</li>\r\n 	<li>Fusce luctus miet quis</li>\r\n 	<li>Nullam eu dignissim tortor</li>\r\n 	<li>Sit amet bibendum lacus</li>\r\n 	<li>Integer eu faucibus leo</li>\r\n 	<li>Non pharetra dui</li>\r\n</ul>\r\n<h4>$250</h4>\r\n<p class=\"\"><a class=\"btn-color-2 btn btn-capitalize btn-regular\" style=\"font-weight: bold;\" href=\"#\">Learn More <i class=\"fa fa-caret-right\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Pricing','','inherit','closed','closed','','69-revision-v1','','','2018-01-30 20:40:34','2018-01-30 20:40:34','',69,'http://abwcreditenhancement.vqhosted.com/69-revision-v1/',0,'revision','',0),(197,1,'2018-01-31 17:34:54','2018-01-31 17:34:54','{\n    \"boldgrid-swifty::boldgrid_contact_details_setting\": {\n        \"value\": \"%5B%7B%22contact_block%22:%22%C2%A9%202018%20A%20Better%20Way%20Credit%20Enhancement%22%7D,%7B%22contact_block%22:%221033%20Manor%20Rd.%20Coatesville,%20PA%2019320%22%7D,%7B%22contact_block%22:%22610-386-7626%22%7D,%7B%22contact_block%22:%22abwcreditenhancement@gmail.com%22%7D%5D\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-31 17:34:54\"\n    },\n    \"boldgrid-swifty::logo_font_size\": {\n        \"value\": \"36\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-01-31 17:34:54\"\n    }\n}','','','trash','closed','closed','','393306c6-3cad-4567-94e7-de30460e0b31','','','2018-01-31 17:34:54','2018-01-31 17:34:54','',0,'http://abwcreditenhancement.vqhosted.com/393306c6-3cad-4567-94e7-de30460e0b31/',0,'customize_changeset','',0),(211,1,'2018-01-31 17:50:39','2018-01-31 17:50:39','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773-e1517420864435.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773-e1517420864435.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 325px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0);\">If You\'re Tired of Being Turned Down,\r\nDon\'t Make a Fuss - Call Us.\r\nWe Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-31 17:50:39','2018-01-31 17:50:39','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(203,1,'2018-01-31 17:43:28','2018-01-31 17:43:28','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 325px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0);\">If You\'re Tired of Being Turned Down,\r\nDon\'t Make a Fuss - Call Us.\r\nWe Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-12\">\r\n&nbsp;\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</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=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-31 17:43:28','2018-01-31 17:43:28','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(206,1,'2018-01-31 17:44:42','2018-01-31 17:44:42','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 325px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0);\">If You\'re Tired of Being Turned Down,\r\nDon\'t Make a Fuss - Call Us.\r\nWe Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-12\">&nbsp;\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</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=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-31 17:44:42','2018-01-31 17:44:42','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(217,1,'2018-01-31 17:55:01','2018-01-31 17:55:01','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773-e1517420864435.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773-e1517420864435.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 476px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0);\">If You\'re Tired of Being Turned Down,\r\nDon\'t Make a Fuss - Call Us.\r\nWe Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div style=\"text-align: center;\">\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">33</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"489\" height=\"368\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"395\" height=\"296\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img  aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"597\" height=\"399\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-31 17:55:01','2018-01-31 17:55:01','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(214,1,'2018-01-31 17:52:06','2018-01-31 17:52:06','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773-e1517420864435.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_103715773-e1517420864435.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 476px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"h1 color5-color bg-text-fx bg-text-fx-closeheavy\" style=\"text-align: center; font-size: 30px; background-color: rgba(202, 82, 21, 0);\">If You\'re Tired of Being Turned Down,\r\nDon\'t Make a Fuss - Call Us.\r\nWe Can Help You Turn It Around.</h2>\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color5-background-color color-5-text-contrast bg-background-color tmpl-portfolio-7 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 22px 0px 19px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h2 class=\"\" style=\"margin: 10px 0px;\">Good Credit Makes for a Better Quality of Life</h2>\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 class=\"color3-color bg-hr\" width=\"40%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><span style=\"font-weight: bold;\">Hire</span> an industry <span style=\"font-weight: bold;\">professional</span> today.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-line-chart\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 35px; text-align: left;\">90</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">+ Point Average Increase in the first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-eraser\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<p class=\"\" style=\"font-size: 35px;\">33</p>\r\n\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">% Questionable Items Removed in first 90 Days</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color3-background-color color-3-text-contrast bg-background-color color-neutral-border-color bg-box\">\r\n<div class=\"row\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-7 col-xs-6 col-sm-7 align-column-center text-right bg-box-cover\">\r\n<div><i class=\"fa fa-laptop\" style=\"font-size: 30px; padding: 0.5em;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></div>\r\n</div>\r\n<div class=\"col-md-5 col-xs-6 col-sm-5 align-column-center bg-box-cover\">\r\n<div>\r\n<p class=\"\" style=\"font-size: 30px;\">24/7</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"\" style=\"margin-top: 5px; text-align: center;\">Online Access to Credit Progress Tracking</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row color-5-text-contrast color5-background-color\" style=\"padding-bottom: 22px;\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img wp-image-65 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_158_400_430.208333333_AdobeStock_101765883-768x1152.jpeg\" alt=\"\" width=\"387\" height=\"416\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-62 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/16.666666666666657_0_266.666666667_200_AdobeStock_72513573-300x200.jpeg\" alt=\"\" width=\"324\" height=\"244\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-64 \" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_7_300_225_AdobeStock_188101594-300x239.jpeg\" alt=\"\" width=\"337\" height=\"253\" data-height=\"300\" data-width=\"400\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 align-column-center\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img aligncenter wp-image-63 \" style=\"color: #333333;\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/0_0_1024_682.666666667_AdobeStock_107496546.jpeg\" alt=\"\" width=\"523\" height=\"350\" data-height=\"300\" data-width=\"400\"></p>\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-3 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://source.unsplash.com/02f3KC3zKPk/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"https://source.unsplash.com/02f3KC3zKPk/1920x1080\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 39px 0em 0px 0.1em;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center align-column-bottom\">\r\n<p class=\"\" style=\"border-radius: 0px;\"><i class=\"color1-color fa fa-home\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Buy your first home or refinance an existing one</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-11 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-automobile\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Purchase a new vehicle</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-percent\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">lower your interest rates</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-credit-card-alt\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; text-align: center;\">Get approved for credit cards</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-3 col-sm-1 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-check-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Accomplish your financial goals</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-3 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-handshake-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">Qualify for better employment</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-users\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">reduce stress in your relationships</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-3 col-sm-2 col-xs-12 text-center\">\r\n<p class=\"\"><i class=\"color1-color fa fa-money\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase;\">save thousands of dollars per year</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 30px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 align-column-center\">\r\n<p class=\"\" style=\"text-align: center;\"><a class=\"btn btn-3d btn-rounded btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/services/\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','18-revision-v1','','','2018-01-31 17:52:06','2018-01-31 17:52:06','',18,'http://abwcreditenhancement.vqhosted.com/18-revision-v1/',0,'revision','',0),(222,1,'2018-01-31 18:00:58','2018-01-31 18:00:58','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 158px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<div class=\"color-2-text-contrast color2-background-color\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of erroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-2 col-xs-2 color2-background-color color-2-text-contrast bg-background-color\"></div>\r\n<div class=\"col-md-6 col-sm-10 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px; background-color: rgba(255, 255, 255, 0.63);\" class=\"bg-box-cover bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-bolt\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-31 18:00:58','2018-01-31 18:00:58','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(225,1,'2018-01-31 18:02:26','2018-01-31 18:02:26','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 158px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<div class=\"color-2-text-contrast color2-background-color\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of erroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-2 col-xs-2 color2-background-color color-2-text-contrast bg-background-color\"></div>\r\n<div class=\"col-md-6 col-sm-10 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px; background-color: rgba(255, 255, 255, 0.89);\" class=\"bg-box-cover bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-bolt\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-31 18:02:26','2018-01-31 18:02:26','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(228,1,'2018-01-31 18:04:08','2018-01-31 18:04:08','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836813\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_55853428.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 158px; padding-bottom: 400px;\"></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-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center; line-height: 1.5em;\">Most of Life\'s Biggest Decisions Require Good Credit</h2>\r\n<p class=\"\" style=\"text-align: center;\">We Offer a Better Way to Credit Repair</p>\r\n<p class=\"\" style=\"text-align: center;\">Enhancing Your Life in the Process</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-8 boldgrid-section dynamic-gridblock background-scroll\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/swifty-realestate8-imhwpb-m3q1sx23xa7juv1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-5 col-sm-12 col-xs-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em;\">\r\n<div class=\"color-2-text-contrast color2-background-color\">\r\n<h2 class=\"h1 color5-color\" style=\"margin-top: 25px; margin-bottom: 50px;\">OUR SERVICES</h2>\r\n<p class=\"\">We provide unlimited clean up of erroneous negative records:</p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Collections</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Late Payments</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Judgements</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Tax Liens</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Foreclosures</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;Inquiries</i></p>\r\n<p class=\"\"><i class=\"fa fa-check-square-o\" aria-hidden=\"true\">&nbsp;And More!<span style=\"display: none;\">&nbsp;</span></i></p>\r\n\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 class=\"color5-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 50px;\" width=\"20%\">\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-2 col-xs-2 color2-background-color color-2-text-contrast bg-background-color\"></div>\r\n<div class=\"col-md-6 col-sm-10 col-xs-10\">\r\n<div style=\"padding: 2em; margin: 50px 25px 50px -75px; background-color: rgba(255, 255, 255, 0.89);\" class=\"bg-box-cover bg-background-color bg-box\">\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-edit\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Customized Action Plan</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We will create a customized action plan around your specific goals and budget.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-laptop\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Progress Tracking</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We offer 24/7 online access for you to monitor the progress of your credit repair.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row bg-editor-hr-wrap\" style=\"padding-top: 20px; padding-bottom: 20px;\">\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-certificate\" style=\"font-size: 35px;\" aria-hidden=\"true\">\r\n<span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">Quality Results</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">We have been able to get our clients, on average, a 90+ credit score increase and remove 33% of your questionable items within the first 90 days.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-6 col-xs-12\">\r\n<div>\r\n\r\n<i class=\"color2-color fa fa-briefcase\" style=\"font-size: 35px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i>\r\n<h3 style=\"text-transform: uppercase; margin-top: 15px; margin-bottom: 10px;\">We offer more</h3>\r\n\r\n<hr class=\"color2-color bg-hr\" style=\"border: 3px solid; margin-left: 0px; margin-top: 0px;\" width=\"10%\">\r\n<p class=\"\">Personal credit repair will help you get the best things in life for you and your family but that is not all we do. We will also help you build or enhance your Business Credit.</p>\r\n<p class=\"\" style=\"margin: 30px 0;\"><a class=\"btn btn-3d btn-pill btn-color-1\" href=\"http://abwcreditenhancement.vqhosted.com/pricing/\">Get Started</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','20-revision-v1','','','2018-01-31 18:04:08','2018-01-31 18:04:08','',20,'http://abwcreditenhancement.vqhosted.com/20-revision-v1/',0,'revision','',0),(245,1,'2018-01-31 18:29:53','2018-01-31 18:29:53','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_188101594.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836814\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_188101594.jpeg\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-bottom: 243px; padding-top: 466px;\"></div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 0px;\">\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\n<h3 class=\"\" style=\"font-size: 32px;\">Book A Consultation</h3>\n[wpforms id=\"11\"]\n\n</div>\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\n<h4 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> &nbsp; PHONE</h4>\n<p class=\"\">610-386-7626</p>\n\n<h4 class=\"\" data-font-class=\"bg-font-family-alt\"><i class=\"fa fa-1x fa-envelope\"><!-- icon --></i> &nbsp; EMAIL</h4>\n<p class=\"\"><a href=\"mailto:abwcreditenhancement@gmail.com\">abwcreditenhancement@gmail.com</a></p>\n\n<h4 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> &nbsp; ADDRESS</h4>\n<p class=\"\">1033 Manor Rd. Coatesville, PA 19320</p>\n<p class=\"\"><img class=\"alignnone size-medium wp-image-47 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/walk-by-faith-logo-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\"></p>\n\n</div>\n</div>\n</div>\n</div>','Contact Us','','inherit','closed','closed','','22-autosave-v1','','','2018-01-31 18:29:53','2018-01-31 18:29:53','',22,'http://abwcreditenhancement.vqhosted.com/22-autosave-v1/',0,'revision','',0),(249,1,'2018-01-31 18:27:45','2018-01-31 18:27:45','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_107496546.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836814\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_107496546.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 243px; padding-top: 466px;\"></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: 50px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<h3 class=\"\" style=\"font-size: 32px;\">Book A Consultation</h3>\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> &nbsp; PHONE</h4>\r\n<p class=\"\">610-386-7626</p>\r\n\r\n<h4 class=\"\" data-font-class=\"bg-font-family-alt\"><i class=\"fa fa-1x fa-envelope\"><!-- icon --></i> &nbsp; EMAIL</h4>\r\n<p class=\"\"><a href=\"mailto:abwcreditenhancement@gmail.com\">abwcreditenhancement@gmail.com</a></p>\r\n\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> &nbsp; ADDRESS</h4>\r\n<p class=\"\">1033 Manor Rd. Coatesville, PA 19320</p>\r\n<p class=\"\"><img class=\"alignnone size-medium wp-image-47 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/walk-by-faith-logo-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','22-revision-v1','','','2018-01-31 18:27:45','2018-01-31 18:27:45','',22,'http://abwcreditenhancement.vqhosted.com/22-revision-v1/',0,'revision','',0),(252,1,'2018-01-31 18:30:09','2018-01-31 18:30:09','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_188101594.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836814\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_188101594.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 384px; padding-top: 98px;\"></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: 50px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<h3 class=\"\" style=\"font-size: 32px;\">Book A Consultation</h3>\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> &nbsp; PHONE</h4>\r\n<p class=\"\">610-386-7626</p>\r\n\r\n<h4 class=\"\" data-font-class=\"bg-font-family-alt\"><i class=\"fa fa-1x fa-envelope\"><!-- icon --></i> &nbsp; EMAIL</h4>\r\n<p class=\"\"><a href=\"mailto:abwcreditenhancement@gmail.com\">abwcreditenhancement@gmail.com</a></p>\r\n\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> &nbsp; ADDRESS</h4>\r\n<p class=\"\">1033 Manor Rd. Coatesville, PA 19320</p>\r\n<p class=\"\"><img class=\"alignnone size-medium wp-image-47 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/walk-by-faith-logo-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','22-revision-v1','','','2018-01-31 18:30:09','2018-01-31 18:30:09','',22,'http://abwcreditenhancement.vqhosted.com/22-revision-v1/',0,'revision','',0),(255,1,'2018-01-31 20:28:04','2018-01-31 20:28:04','','Shop','','trash','closed','closed','','shop__trashed','','','2018-01-31 22:17:22','2018-01-31 22:17:22','',0,'http://abwcreditenhancement.vqhosted.com/shop/',0,'page','',0),(256,1,'2018-01-31 20:28:04','2018-01-31 20:28:04','[woocommerce_cart]','Cart','','trash','closed','closed','','cart__trashed','','','2018-01-31 22:17:02','2018-01-31 22:17:02','',0,'http://abwcreditenhancement.vqhosted.com/cart/',0,'page','',0),(257,1,'2018-01-31 20:28:04','2018-01-31 20:28:04','[woocommerce_checkout]','Checkout','','trash','closed','closed','','checkout__trashed','','','2018-01-31 22:17:07','2018-01-31 22:17:07','',0,'http://abwcreditenhancement.vqhosted.com/checkout/',0,'page','',0),(258,1,'2018-01-31 20:28:04','2018-01-31 20:28:04','[woocommerce_my_account]','My account','','trash','closed','closed','','my-account__trashed','','','2018-01-31 22:17:58','2018-01-31 22:17:58','',0,'http://abwcreditenhancement.vqhosted.com/my-account/',0,'page','',0),(259,1,'2018-01-31 20:33:10','2018-01-31 20:33:10','','Credit Repair','','publish','closed','closed','','credit-repair','','','2018-01-31 20:33:10','2018-01-31 20:33:10','',0,'http://abwcreditenhancement.vqhosted.com/?post_type=product&#038;p=259',0,'product','',0),(260,1,'2018-01-31 20:51:45','2018-01-31 20:51:45','<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\"><strong>You are invited to securely pay online using any Credit Card or PayPal. Simply fill in the form below.</strong> [livesite-pay]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Pay Online','','trash','closed','closed','','pay-online__trashed','','','2018-01-31 22:17:16','2018-01-31 22:17:16','',0,'http://abwcreditenhancement.vqhosted.com/pay-online/',0,'page','',0),(263,1,'2018-01-31 20:53:15','2018-01-31 20:53:15','<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\"><strong>You are invited to securely pay online using any Credit Card or PayPal. Simply fill in the form below.</strong> [livesite-pay]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Pay Online','','inherit','closed','closed','','260-revision-v1','','','2018-01-31 20:53:15','2018-01-31 20:53:15','',260,'http://abwcreditenhancement.vqhosted.com/260-revision-v1/',0,'revision','',0),(281,1,'2018-01-31 21:59:47','2018-01-31 21:59:47','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"819447\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_72513573.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 175px; padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-1 align-column-bottom\">\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<h2 class=\"\">&nbsp;</h2>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-12 col-sm-11 col-xs-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\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12\">\r\n<h2 class=\"\" style=\"text-align: center;\">Proven results. Simple pricing.</h2>\r\n<p class=\"\" style=\"text-align: center;\">We attack all of your negative items at once, getting you where you need to be&nbsp;<i>fast</i>&nbsp;.</p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"color-neutral-background-color color-neutral-text-contrast bg-background-color tmpl-pricing_tables-6 boldgrid-section dynamic-gridblock background-fixed\" style=\"color: #1d1d1d; background-position: 50% 50%; background-size: cover; background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\');\" data-bg-overlaycolor=\"rgba(255, 255, 255, 0.8)\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw1600h900fitcropsbdbd5beb356e660a5d3af7a642e3fe89.jpg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 50px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 align-column-bottom text-center\">\r\n<div style=\"border-width: 3px; border-style: solid;\" class=\"color-neutral-border-color color3-background-color color-3-text-contrast bg-background-color bg-box\">\r\n<h3 class=\"\" style=\"margin: 15px 0 30px;\">Starting at $89.00</h3>\r\n<h4 class=\"color5-color\">$79.00/Month\r\nPick Your Payment Date</h4>\r\n<div class=\"row color-3-text-contrast color3-background-color\" style=\"padding-top: 15px;\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div class=\"color-neutral-border-color color3-background-color color-3-text-contrast bg-background-color bg-box\" style=\"border-width: 3px; border-style: solid;\">\r\n<ul class=\"bg-list-checkmark bg-list\" style=\"margin-bottom: 20px; text-align: left;\">\r\n 	<li>Unlimited Repair of Erroneous Negative Records</li>\r\n 	<li>Customized Action Plan</li>\r\n 	<li>Track Credit Repair Progress</li>\r\n 	<li>All 3 Bureaus&nbsp;</li>\r\n 	<li>Build or Enhance Business Credit</li>\r\n</ul>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4 class=\"color2-color\" style=\"background-color: rgba(202, 82, 21, 0);\">\r\n[livesite-pay]</h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Pricing','','inherit','closed','closed','','69-revision-v1','','','2018-01-31 21:59:47','2018-01-31 21:59:47','',69,'http://abwcreditenhancement.vqhosted.com/69-revision-v1/',0,'revision','',0),(284,1,'2018-01-31 22:17:02','2018-01-31 22:17:02','[woocommerce_cart]','Cart','','inherit','closed','closed','','256-revision-v1','','','2018-01-31 22:17:02','2018-01-31 22:17:02','',256,'http://abwcreditenhancement.vqhosted.com/256-revision-v1/',0,'revision','',0),(285,1,'2018-01-31 22:17:07','2018-01-31 22:17:07','[woocommerce_checkout]','Checkout','','inherit','closed','closed','','257-revision-v1','','','2018-01-31 22:17:07','2018-01-31 22:17:07','',257,'http://abwcreditenhancement.vqhosted.com/257-revision-v1/',0,'revision','',0),(286,1,'2018-01-31 22:17:22','2018-01-31 22:17:22','','Shop','','inherit','closed','closed','','255-revision-v1','','','2018-01-31 22:17:22','2018-01-31 22:17:22','',255,'http://abwcreditenhancement.vqhosted.com/255-revision-v1/',0,'revision','',0),(289,1,'2018-01-31 22:17:58','2018-01-31 22:17:58','[woocommerce_my_account]','My account','','inherit','closed','closed','','258-revision-v1','','','2018-01-31 22:17:58','2018-01-31 22:17:58','',258,'http://abwcreditenhancement.vqhosted.com/258-revision-v1/',0,'revision','',0),(292,1,'2018-01-31 22:25:09','2018-01-31 22:25:09','<div class=\"boldgrid-section\" style=\"background-image: url(\'http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_188101594.jpeg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"836814\" data-image-url=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/AdobeStock_188101594.jpeg\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 384px; padding-top: 98px;\"></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: 50px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<h3 class=\"\" style=\"font-size: 32px;\">Contact Us</h3>\r\n[wpforms id=\"11\"]\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-phone\"><!-- icon --></i> &nbsp; PHONE</h4>\r\n<p class=\"\">610-386-7626</p>\r\n\r\n<h4 class=\"\" data-font-class=\"bg-font-family-alt\"><i class=\"fa fa-1x fa-envelope\"><!-- icon --></i> &nbsp; EMAIL</h4>\r\n<p class=\"\"><a href=\"mailto:abwcreditenhancement@gmail.com\">abwcreditenhancement@gmail.com</a></p>\r\n\r\n<h4 class=\"\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> &nbsp; ADDRESS</h4>\r\n<p class=\"\">1033 Manor Rd. Coatesville, PA 19320</p>\r\n<p class=\"\"><img class=\"alignnone size-medium wp-image-47 aligncenter\" src=\"http://abwcreditenhancement.vqhosted.com/wp-content/uploads/2018/01/walk-by-faith-logo-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','22-revision-v1','','','2018-01-31 22:25:09','2018-01-31 22:25:09','',22,'http://abwcreditenhancement.vqhosted.com/22-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wpki_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpki_term_relationships`
--

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

--
-- Dumping data for table `wpki_term_relationships`
--

LOCK TABLES `wpki_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpki_term_relationships` DISABLE KEYS */;
INSERT INTO `wpki_term_relationships` VALUES (1,1,0),(19,2,0),(21,2,0),(23,2,0),(46,3,0),(72,2,0),(259,4,0);
/*!40000 ALTER TABLE `wpki_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpki_term_taxonomy`
--

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

--
-- Dumping data for table `wpki_term_taxonomy`
--

LOCK TABLES `wpki_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpki_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpki_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,4),(3,3,'nav_menu','',0,1),(4,4,'product_type','',0,1),(5,5,'product_type','',0,0),(6,6,'product_type','',0,0),(7,7,'product_type','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_visibility','',0,0),(16,16,'product_visibility','',0,0);
/*!40000 ALTER TABLE `wpki_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpki_termmeta`
--

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

--
-- Dumping data for table `wpki_termmeta`
--

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

--
-- Table structure for table `wpki_terms`
--

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

--
-- Dumping data for table `wpki_terms`
--

LOCK TABLES `wpki_terms` WRITE;
/*!40000 ALTER TABLE `wpki_terms` DISABLE KEYS */;
INSERT INTO `wpki_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'primary','primary',0),(3,'Social Media','social-media',0),(4,'simple','simple',0),(5,'grouped','grouped',0),(6,'variable','variable',0),(7,'external','external',0),(8,'exclude-from-search','exclude-from-search',0),(9,'exclude-from-catalog','exclude-from-catalog',0),(10,'featured','featured',0),(11,'outofstock','outofstock',0),(12,'rated-1','rated-1',0),(13,'rated-2','rated-2',0),(14,'rated-3','rated-3',0),(15,'rated-4','rated-4',0),(16,'rated-5','rated-5',0);
/*!40000 ALTER TABLE `wpki_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpki_usermeta`
--

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

--
-- Dumping data for table `wpki_usermeta`
--

LOCK TABLES `wpki_usermeta` WRITE;
/*!40000 ALTER TABLE `wpki_usermeta` DISABLE KEYS */;
INSERT INTO `wpki_usermeta` VALUES (1,1,'nickname','abwcreditenhancement'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpki_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpki_user_level','10'),(14,1,'dismissed_wp_pointers',',wp410_dfw'),(15,1,'show_welcome_panel','1'),(17,1,'wpki_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"73.188.135.0\";}'),(19,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:10:\"title-attr\";}'),(20,1,'wpki_user-settings','libraryContent=browse'),(21,1,'wpki_user-settings-time','1517421034'),(23,1,'first_login','2018-01-30 15:11:47'),(24,1,'last_login','2018-01-31 20:19:44'),(26,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(27,1,'closedpostboxes_product','a:0:{}'),(28,1,'metaboxhidden_product','a:2:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";}');
/*!40000 ALTER TABLE `wpki_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpki_users`
--

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

--
-- Dumping data for table `wpki_users`
--

LOCK TABLES `wpki_users` WRITE;
/*!40000 ALTER TABLE `wpki_users` DISABLE KEYS */;
INSERT INTO `wpki_users` VALUES (1,'abwcreditenhancement','$P$BGloyh8cZhhPZN7vf/EYIXkkoZQbwl.','abwcreditenhancement','fcurtis@vqhosted.com','','2018-01-29 23:52:45','',0,'abwcreditenhancement');
/*!40000 ALTER TABLE `wpki_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpki_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wpki_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_api_keys`
--

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

--
-- Table structure for table `wpki_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wpki_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wpki_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wpki_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wpki_woocommerce_log`
--

DROP TABLE IF EXISTS `wpki_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_log`
--

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

--
-- Table structure for table `wpki_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wpki_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wpki_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wpki_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_order_items`
--

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

--
-- Table structure for table `wpki_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wpki_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wpki_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wpki_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wpki_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wpki_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_sessions`
--

LOCK TABLES `wpki_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wpki_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wpki_woocommerce_sessions` VALUES (2,'1','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:674:\"a:25:{s:2:\"id\";i:1;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"PA\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"PA\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:20:\"fcurtis@vqhosted.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1517603449);
/*!40000 ALTER TABLE `wpki_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpki_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wpki_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wpki_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wpki_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wpki_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wpki_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wpki_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wpki_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wpki_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wpki_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_woocommerce_tax_rates`
--

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

--
-- Table structure for table `wpki_wpforms_lite`
--

DROP TABLE IF EXISTS `wpki_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpki_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpki_wpforms_lite`
--

LOCK TABLES `wpki_wpforms_lite` WRITE;
/*!40000 ALTER TABLE `wpki_wpforms_lite` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpki_wpforms_lite` 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 2018-02-07  8:55:35
